diff --git a/grammar.js b/grammar.js index f03417f8..e95bf4b8 100644 --- a/grammar.js +++ b/grammar.js @@ -76,6 +76,9 @@ module.exports = grammar({ $._inner_block_doc_comment_marker, $._block_comment_content, $._line_doc_content, + $._frontmatter_start, + $.frontmatter_content, + $._frontmatter_end, $._error_sentinel, ], @@ -117,6 +120,7 @@ module.exports = grammar({ rules: { source_file: $ => seq( optional($.shebang), + optional($.frontmatter), repeat($._statement), ), @@ -1645,6 +1649,12 @@ module.exports = grammar({ shebang: _ => /#![\r\f\t\v ]*([^\[\n].*)?\n/, + frontmatter: $ => seq( + $._frontmatter_start, + $.frontmatter_content, + $._frontmatter_end, + ), + _reserved_identifier: $ => alias(choice( 'default', 'union', diff --git a/queries/injections.scm b/queries/injections.scm index 6035d418..f1df748f 100644 --- a/queries/injections.scm +++ b/queries/injections.scm @@ -7,3 +7,7 @@ (token_tree) @injection.content) (#set! injection.language "rust") (#set! injection.include-children)) + +((frontmatter + (frontmatter_content) @injection.content) + (#set! injection.languge "toml")) diff --git a/src/grammar.json b/src/grammar.json index 53e0fd72..1a26049a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -18,6 +18,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "frontmatter" + }, + { + "type": "BLANK" + } + ] + }, { "type": "REPEAT", "content": { @@ -9547,6 +9559,23 @@ "type": "PATTERN", "value": "#![\\r\\f\\t\\v ]*([^\\[\\n].*)?\\n" }, + "frontmatter": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_frontmatter_start" + }, + { + "type": "SYMBOL", + "name": "frontmatter_content" + }, + { + "type": "SYMBOL", + "name": "_frontmatter_end" + } + ] + }, "_reserved_identifier": { "type": "ALIAS", "content": { @@ -9689,6 +9718,18 @@ "type": "SYMBOL", "name": "_line_doc_content" }, + { + "type": "SYMBOL", + "name": "_frontmatter_start" + }, + { + "type": "SYMBOL", + "name": "frontmatter_content" + }, + { + "type": "SYMBOL", + "name": "_frontmatter_end" + }, { "type": "SYMBOL", "name": "_error_sentinel" diff --git a/src/node-types.json b/src/node-types.json index 0ef0838c..1f4f2db8 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2010,6 +2010,21 @@ "named": true, "fields": {} }, + { + "type": "frontmatter", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "frontmatter_content", + "named": true + } + ] + } + }, { "type": "function_item", "named": true, @@ -3685,6 +3700,10 @@ "type": "expression_statement", "named": true }, + { + "type": "frontmatter", + "named": true + }, { "type": "shebang", "named": true @@ -5327,6 +5346,10 @@ "type": "for", "named": false }, + { + "type": "frontmatter_content", + "named": true + }, { "type": "gen", "named": false diff --git a/src/parser.c b/src/parser.c index ba87a65c..a79126da 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,12 +7,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3785 -#define LARGE_STATE_COUNT 1054 -#define SYMBOL_COUNT 349 +#define STATE_COUNT 3791 +#define LARGE_STATE_COUNT 1058 +#define SYMBOL_COUNT 353 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 155 -#define EXTERNAL_TOKEN_COUNT 10 +#define TOKEN_COUNT 158 +#define EXTERNAL_TOKEN_COUNT 13 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -173,205 +173,209 @@ enum ts_symbol_identifiers { 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_type_parameter = 199, - sym_lifetime_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_use_bounds = 227, - sym_type_arguments = 228, - sym_type_binding = 229, - sym_reference_type = 230, - sym_pointer_type = 231, - sym_never_type = 232, - sym_abstract_type = 233, - sym_dynamic_type = 234, - sym__expression_except_range = 235, - sym__expression = 236, - sym_macro_invocation = 237, - sym_delim_token_tree = 238, - sym__delim_tokens = 239, - sym__non_delim_token = 240, - sym_scoped_identifier = 241, - sym_scoped_type_identifier_in_expression_position = 242, - sym_scoped_type_identifier = 243, - sym_range_expression = 244, - sym_unary_expression = 245, - sym_try_expression = 246, - sym_reference_expression = 247, - sym_binary_expression = 248, - sym_assignment_expression = 249, - sym_compound_assignment_expr = 250, - sym_type_cast_expression = 251, - sym_return_expression = 252, - sym_yield_expression = 253, - sym_call_expression = 254, - sym_arguments = 255, - sym_array_expression = 256, - sym_parenthesized_expression = 257, - sym_tuple_expression = 258, - sym_unit_expression = 259, - sym_struct_expression = 260, - sym_field_initializer_list = 261, - sym_shorthand_field_initializer = 262, - sym_field_initializer = 263, - sym_base_field_initializer = 264, - sym_if_expression = 265, - sym_let_condition = 266, - sym__let_chain = 267, - sym__condition = 268, - sym_else_clause = 269, - sym_match_expression = 270, - sym_match_block = 271, - sym_match_arm = 272, - sym_last_match_arm = 273, - sym_match_pattern = 274, - sym_while_expression = 275, - sym_loop_expression = 276, - sym_for_expression = 277, - sym_const_block = 278, - sym_closure_expression = 279, - sym_closure_parameters = 280, - sym_label = 281, - sym_break_expression = 282, - sym_continue_expression = 283, - sym_index_expression = 284, - sym_await_expression = 285, - sym_field_expression = 286, - sym_unsafe_block = 287, - sym_async_block = 288, - sym_gen_block = 289, - sym_try_block = 290, - sym_block = 291, - sym__pattern = 292, - sym_generic_pattern = 293, - sym_tuple_pattern = 294, - sym_slice_pattern = 295, - sym_tuple_struct_pattern = 296, - sym_struct_pattern = 297, - sym_field_pattern = 298, - sym_remaining_field_pattern = 299, - sym_mut_pattern = 300, - sym_range_pattern = 301, - sym_ref_pattern = 302, - sym_captured_pattern = 303, - sym_reference_pattern = 304, - sym_or_pattern = 305, - sym__literal = 306, - sym__literal_pattern = 307, - sym_negative_literal = 308, - sym_string_literal = 309, - sym_raw_string_literal = 310, - sym_boolean_literal = 311, - sym_line_comment = 312, - sym__line_doc_comment_marker = 313, - sym__inner_line_doc_comment_marker = 314, - sym__outer_line_doc_comment_marker = 315, - sym_block_comment = 316, - sym__block_doc_comment_marker = 317, - aux_sym_source_file_repeat1 = 318, - aux_sym_macro_definition_repeat1 = 319, - aux_sym_token_tree_pattern_repeat1 = 320, - aux_sym_token_tree_repeat1 = 321, - aux_sym__non_special_token_repeat1 = 322, - aux_sym_declaration_list_repeat1 = 323, - aux_sym_enum_variant_list_repeat1 = 324, - aux_sym_enum_variant_list_repeat2 = 325, - aux_sym_field_declaration_list_repeat1 = 326, - aux_sym_ordered_field_declaration_list_repeat1 = 327, - aux_sym_function_modifiers_repeat1 = 328, - aux_sym_where_clause_repeat1 = 329, - aux_sym_trait_bounds_repeat1 = 330, - aux_sym_type_parameters_repeat1 = 331, - aux_sym_use_list_repeat1 = 332, - aux_sym_parameters_repeat1 = 333, - aux_sym_for_lifetimes_repeat1 = 334, - aux_sym_tuple_type_repeat1 = 335, - aux_sym_use_bounds_repeat1 = 336, - aux_sym_type_arguments_repeat1 = 337, - aux_sym_delim_token_tree_repeat1 = 338, - aux_sym_arguments_repeat1 = 339, - aux_sym_tuple_expression_repeat1 = 340, - aux_sym_field_initializer_list_repeat1 = 341, - aux_sym_match_block_repeat1 = 342, - aux_sym_match_arm_repeat1 = 343, - aux_sym_closure_parameters_repeat1 = 344, - aux_sym_tuple_pattern_repeat1 = 345, - aux_sym_slice_pattern_repeat1 = 346, - aux_sym_struct_pattern_repeat1 = 347, - aux_sym_string_literal_repeat1 = 348, - alias_sym_field_identifier = 349, - alias_sym_let_chain = 350, - alias_sym_shorthand_field_identifier = 351, - alias_sym_type_identifier = 352, + sym__frontmatter_start = 154, + sym_frontmatter_content = 155, + sym__frontmatter_end = 156, + sym__error_sentinel = 157, + sym_source_file = 158, + sym__statement = 159, + sym_empty_statement = 160, + sym_expression_statement = 161, + sym_macro_definition = 162, + sym_macro_rule = 163, + sym__token_pattern = 164, + sym_token_tree_pattern = 165, + sym_token_binding_pattern = 166, + sym_token_repetition_pattern = 167, + sym_fragment_specifier = 168, + sym_token_tree = 169, + sym_token_repetition = 170, + sym_attribute_item = 171, + sym_inner_attribute_item = 172, + sym_attribute = 173, + sym_mod_item = 174, + sym_foreign_mod_item = 175, + sym_declaration_list = 176, + sym_struct_item = 177, + sym_union_item = 178, + sym_enum_item = 179, + sym_enum_variant_list = 180, + sym_enum_variant = 181, + sym_field_declaration_list = 182, + sym_field_declaration = 183, + sym_ordered_field_declaration_list = 184, + sym_extern_crate_declaration = 185, + sym_const_item = 186, + sym_static_item = 187, + sym_type_item = 188, + sym_function_item = 189, + sym_function_signature_item = 190, + sym_function_modifiers = 191, + sym_where_clause = 192, + sym_where_predicate = 193, + sym_impl_item = 194, + sym_trait_item = 195, + sym_associated_type = 196, + sym_trait_bounds = 197, + sym_higher_ranked_trait_bound = 198, + sym_removed_trait_bound = 199, + sym_type_parameters = 200, + sym_const_parameter = 201, + sym_type_parameter = 202, + sym_lifetime_parameter = 203, + sym_let_declaration = 204, + sym_use_declaration = 205, + sym__use_clause = 206, + sym_scoped_use_list = 207, + sym_use_list = 208, + sym_use_as_clause = 209, + sym_use_wildcard = 210, + sym_parameters = 211, + sym_self_parameter = 212, + sym_variadic_parameter = 213, + sym_parameter = 214, + sym_extern_modifier = 215, + sym_visibility_modifier = 216, + sym__type = 217, + sym_bracketed_type = 218, + sym_qualified_type = 219, + sym_lifetime = 220, + sym_array_type = 221, + sym_for_lifetimes = 222, + sym_function_type = 223, + sym_tuple_type = 224, + sym_unit_type = 225, + sym_generic_function = 226, + sym_generic_type = 227, + sym_generic_type_with_turbofish = 228, + sym_bounded_type = 229, + sym_use_bounds = 230, + sym_type_arguments = 231, + sym_type_binding = 232, + sym_reference_type = 233, + sym_pointer_type = 234, + sym_never_type = 235, + sym_abstract_type = 236, + sym_dynamic_type = 237, + sym__expression_except_range = 238, + sym__expression = 239, + sym_macro_invocation = 240, + sym_delim_token_tree = 241, + sym__delim_tokens = 242, + sym__non_delim_token = 243, + sym_scoped_identifier = 244, + sym_scoped_type_identifier_in_expression_position = 245, + sym_scoped_type_identifier = 246, + sym_range_expression = 247, + sym_unary_expression = 248, + sym_try_expression = 249, + sym_reference_expression = 250, + sym_binary_expression = 251, + sym_assignment_expression = 252, + sym_compound_assignment_expr = 253, + sym_type_cast_expression = 254, + sym_return_expression = 255, + sym_yield_expression = 256, + sym_call_expression = 257, + sym_arguments = 258, + sym_array_expression = 259, + sym_parenthesized_expression = 260, + sym_tuple_expression = 261, + sym_unit_expression = 262, + sym_struct_expression = 263, + sym_field_initializer_list = 264, + sym_shorthand_field_initializer = 265, + sym_field_initializer = 266, + sym_base_field_initializer = 267, + sym_if_expression = 268, + sym_let_condition = 269, + sym__let_chain = 270, + sym__condition = 271, + sym_else_clause = 272, + sym_match_expression = 273, + sym_match_block = 274, + sym_match_arm = 275, + sym_last_match_arm = 276, + sym_match_pattern = 277, + sym_while_expression = 278, + sym_loop_expression = 279, + sym_for_expression = 280, + sym_const_block = 281, + sym_closure_expression = 282, + sym_closure_parameters = 283, + sym_label = 284, + sym_break_expression = 285, + sym_continue_expression = 286, + sym_index_expression = 287, + sym_await_expression = 288, + sym_field_expression = 289, + sym_unsafe_block = 290, + sym_async_block = 291, + sym_gen_block = 292, + sym_try_block = 293, + sym_block = 294, + sym__pattern = 295, + sym_generic_pattern = 296, + sym_tuple_pattern = 297, + sym_slice_pattern = 298, + sym_tuple_struct_pattern = 299, + sym_struct_pattern = 300, + sym_field_pattern = 301, + sym_remaining_field_pattern = 302, + sym_mut_pattern = 303, + sym_range_pattern = 304, + sym_ref_pattern = 305, + sym_captured_pattern = 306, + sym_reference_pattern = 307, + sym_or_pattern = 308, + sym__literal = 309, + sym__literal_pattern = 310, + sym_negative_literal = 311, + sym_string_literal = 312, + sym_raw_string_literal = 313, + sym_boolean_literal = 314, + sym_line_comment = 315, + sym__line_doc_comment_marker = 316, + sym__inner_line_doc_comment_marker = 317, + sym__outer_line_doc_comment_marker = 318, + sym_block_comment = 319, + sym__block_doc_comment_marker = 320, + sym_frontmatter = 321, + aux_sym_source_file_repeat1 = 322, + aux_sym_macro_definition_repeat1 = 323, + aux_sym_token_tree_pattern_repeat1 = 324, + aux_sym_token_tree_repeat1 = 325, + aux_sym__non_special_token_repeat1 = 326, + aux_sym_declaration_list_repeat1 = 327, + aux_sym_enum_variant_list_repeat1 = 328, + aux_sym_enum_variant_list_repeat2 = 329, + aux_sym_field_declaration_list_repeat1 = 330, + aux_sym_ordered_field_declaration_list_repeat1 = 331, + aux_sym_function_modifiers_repeat1 = 332, + aux_sym_where_clause_repeat1 = 333, + aux_sym_trait_bounds_repeat1 = 334, + aux_sym_type_parameters_repeat1 = 335, + aux_sym_use_list_repeat1 = 336, + aux_sym_parameters_repeat1 = 337, + aux_sym_for_lifetimes_repeat1 = 338, + aux_sym_tuple_type_repeat1 = 339, + aux_sym_use_bounds_repeat1 = 340, + aux_sym_type_arguments_repeat1 = 341, + aux_sym_delim_token_tree_repeat1 = 342, + aux_sym_arguments_repeat1 = 343, + aux_sym_tuple_expression_repeat1 = 344, + aux_sym_field_initializer_list_repeat1 = 345, + aux_sym_match_block_repeat1 = 346, + aux_sym_match_arm_repeat1 = 347, + aux_sym_closure_parameters_repeat1 = 348, + aux_sym_tuple_pattern_repeat1 = 349, + aux_sym_slice_pattern_repeat1 = 350, + aux_sym_struct_pattern_repeat1 = 351, + aux_sym_string_literal_repeat1 = 352, + alias_sym_field_identifier = 353, + alias_sym_let_chain = 354, + alias_sym_shorthand_field_identifier = 355, + alias_sym_type_identifier = 356, }; static const char * const ts_symbol_names[] = { @@ -529,6 +533,9 @@ static const char * const ts_symbol_names[] = { [sym__inner_block_doc_comment_marker] = "inner_doc_comment_marker", [sym__block_comment_content] = "_block_comment_content", [sym__line_doc_content] = "doc_comment", + [sym__frontmatter_start] = "_frontmatter_start", + [sym_frontmatter_content] = "frontmatter_content", + [sym__frontmatter_end] = "_frontmatter_end", [sym__error_sentinel] = "_error_sentinel", [sym_source_file] = "source_file", [sym__statement] = "_statement", @@ -693,6 +700,7 @@ static const char * const ts_symbol_names[] = { [sym__outer_line_doc_comment_marker] = "outer_doc_comment_marker", [sym_block_comment] = "block_comment", [sym__block_doc_comment_marker] = "_block_doc_comment_marker", + [sym_frontmatter] = "frontmatter", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_macro_definition_repeat1] = "macro_definition_repeat1", [aux_sym_token_tree_pattern_repeat1] = "token_tree_pattern_repeat1", @@ -885,6 +893,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__inner_block_doc_comment_marker] = sym__inner_block_doc_comment_marker, [sym__block_comment_content] = sym__block_comment_content, [sym__line_doc_content] = sym__line_doc_content, + [sym__frontmatter_start] = sym__frontmatter_start, + [sym_frontmatter_content] = sym_frontmatter_content, + [sym__frontmatter_end] = sym__frontmatter_end, [sym__error_sentinel] = sym__error_sentinel, [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, @@ -1049,6 +1060,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__outer_line_doc_comment_marker] = sym__outer_block_doc_comment_marker, [sym_block_comment] = sym_block_comment, [sym__block_doc_comment_marker] = sym__block_doc_comment_marker, + [sym_frontmatter] = sym_frontmatter, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_macro_definition_repeat1] = aux_sym_macro_definition_repeat1, [aux_sym_token_tree_pattern_repeat1] = aux_sym_token_tree_pattern_repeat1, @@ -1703,6 +1715,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__frontmatter_start] = { + .visible = false, + .named = true, + }, + [sym_frontmatter_content] = { + .visible = true, + .named = true, + }, + [sym__frontmatter_end] = { + .visible = false, + .named = true, + }, [sym__error_sentinel] = { .visible = false, .named = true, @@ -2364,6 +2388,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_frontmatter] = { + .visible = true, + .named = true, + }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -3995,145 +4023,145 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 3, - [10] = 5, + [9] = 9, + [10] = 10, [11] = 11, - [12] = 11, - [13] = 6, - [14] = 8, - [15] = 5, + [12] = 4, + [13] = 5, + [14] = 6, + [15] = 9, [16] = 11, - [17] = 6, - [18] = 3, - [19] = 5, + [17] = 4, + [18] = 5, + [19] = 6, [20] = 11, - [21] = 6, - [22] = 3, - [23] = 5, + [21] = 4, + [22] = 5, + [23] = 6, [24] = 11, - [25] = 6, - [26] = 3, - [27] = 5, + [25] = 4, + [26] = 5, + [27] = 6, [28] = 11, - [29] = 6, - [30] = 3, - [31] = 5, + [29] = 4, + [30] = 5, + [31] = 6, [32] = 11, - [33] = 6, - [34] = 3, - [35] = 35, - [36] = 36, + [33] = 4, + [34] = 5, + [35] = 6, + [36] = 11, [37] = 37, [38] = 38, [39] = 39, - [40] = 39, + [40] = 40, [41] = 41, - [42] = 41, - [43] = 35, + [42] = 42, + [43] = 42, [44] = 41, - [45] = 39, - [46] = 35, + [45] = 45, + [46] = 38, [47] = 38, - [48] = 36, - [49] = 37, - [50] = 35, - [51] = 39, - [52] = 41, + [48] = 39, + [49] = 45, + [50] = 40, + [51] = 41, + [52] = 42, [53] = 41, - [54] = 39, - [55] = 38, - [56] = 36, - [57] = 41, - [58] = 39, - [59] = 41, - [60] = 39, - [61] = 41, - [62] = 39, - [63] = 37, - [64] = 37, - [65] = 38, - [66] = 36, - [67] = 67, - [68] = 68, - [69] = 69, + [54] = 38, + [55] = 42, + [56] = 45, + [57] = 45, + [58] = 42, + [59] = 42, + [60] = 41, + [61] = 42, + [62] = 41, + [63] = 39, + [64] = 41, + [65] = 41, + [66] = 40, + [67] = 42, + [68] = 40, + [69] = 39, [70] = 70, - [71] = 68, - [72] = 69, - [73] = 73, - [74] = 74, - [75] = 73, + [71] = 71, + [72] = 72, + [73] = 71, + [74] = 72, + [75] = 75, [76] = 76, - [77] = 74, + [77] = 77, [78] = 78, - [79] = 79, - [80] = 76, - [81] = 81, - [82] = 82, - [83] = 70, + [79] = 78, + [80] = 75, + [81] = 76, + [82] = 77, + [83] = 83, [84] = 84, [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 84, + [90] = 90, [91] = 91, - [92] = 91, + [92] = 92, [93] = 93, [94] = 94, - [95] = 95, - [96] = 95, - [97] = 97, - [98] = 84, - [99] = 97, - [100] = 95, - [101] = 97, - [102] = 91, - [103] = 93, - [104] = 94, + [95] = 87, + [96] = 89, + [97] = 91, + [98] = 92, + [99] = 93, + [100] = 94, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, [105] = 105, - [106] = 95, - [107] = 97, - [108] = 105, - [109] = 85, - [110] = 86, - [111] = 84, - [112] = 91, - [113] = 93, - [114] = 94, - [115] = 87, - [116] = 95, - [117] = 97, - [118] = 84, - [119] = 88, - [120] = 89, - [121] = 121, + [106] = 106, + [107] = 89, + [108] = 91, + [109] = 92, + [110] = 93, + [111] = 94, + [112] = 87, + [113] = 89, + [114] = 91, + [115] = 101, + [116] = 92, + [117] = 93, + [118] = 94, + [119] = 102, + [120] = 103, + [121] = 89, [122] = 91, - [123] = 93, - [124] = 94, - [125] = 93, - [126] = 95, - [127] = 97, - [128] = 91, - [129] = 129, - [130] = 94, + [123] = 92, + [124] = 93, + [125] = 94, + [126] = 87, + [127] = 87, + [128] = 89, + [129] = 91, + [130] = 92, [131] = 93, [132] = 94, - [133] = 84, - [134] = 134, - [135] = 135, - [136] = 136, + [133] = 104, + [134] = 105, + [135] = 106, + [136] = 87, [137] = 137, - [138] = 135, + [138] = 138, [139] = 139, - [140] = 134, + [140] = 140, [141] = 141, - [142] = 141, - [143] = 143, - [144] = 139, + [142] = 142, + [143] = 138, + [144] = 137, [145] = 145, - [146] = 146, - [147] = 147, + [146] = 141, + [147] = 142, [148] = 148, [149] = 149, [150] = 150, @@ -4143,114 +4171,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 156, - [157] = 145, + [157] = 157, [158] = 158, [159] = 159, [160] = 160, - [161] = 158, + [161] = 152, [162] = 162, - [163] = 163, + [163] = 162, [164] = 164, [165] = 165, - [166] = 160, + [166] = 166, [167] = 167, [168] = 168, [169] = 169, [170] = 170, [171] = 171, - [172] = 143, - [173] = 173, - [174] = 174, + [172] = 140, + [173] = 158, + [174] = 149, [175] = 175, - [176] = 173, + [176] = 176, [177] = 177, - [178] = 178, - [179] = 162, - [180] = 164, - [181] = 181, - [182] = 182, + [178] = 164, + [179] = 179, + [180] = 168, + [181] = 156, + [182] = 159, [183] = 183, - [184] = 184, - [185] = 171, - [186] = 175, - [187] = 153, - [188] = 168, + [184] = 169, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, [189] = 189, - [190] = 189, - [191] = 153, - [192] = 168, - [193] = 189, - [194] = 153, - [195] = 168, - [196] = 189, - [197] = 197, - [198] = 198, - [199] = 199, + [190] = 190, + [191] = 191, + [192] = 177, + [193] = 176, + [194] = 149, + [195] = 177, + [196] = 176, + [197] = 149, + [198] = 177, + [199] = 176, [200] = 200, [201] = 201, - [202] = 170, - [203] = 203, - [204] = 177, - [205] = 147, - [206] = 149, - [207] = 151, - [208] = 152, + [202] = 179, + [203] = 183, + [204] = 186, + [205] = 188, + [206] = 190, + [207] = 207, + [208] = 160, [209] = 209, [210] = 210, [211] = 211, - [212] = 199, + [212] = 212, [213] = 213, - [214] = 213, + [214] = 212, [215] = 215, [216] = 216, - [217] = 217, + [217] = 201, [218] = 218, [219] = 219, - [220] = 219, + [220] = 220, [221] = 221, [222] = 222, - [223] = 216, - [224] = 215, - [225] = 221, + [223] = 223, + [224] = 219, + [225] = 225, [226] = 226, - [227] = 226, - [228] = 216, - [229] = 229, - [230] = 216, - [231] = 231, - [232] = 217, - [233] = 218, - [234] = 234, - [235] = 231, - [236] = 231, - [237] = 229, - [238] = 229, - [239] = 239, - [240] = 240, - [241] = 239, - [242] = 240, - [243] = 231, - [244] = 234, - [245] = 216, - [246] = 219, - [247] = 234, - [248] = 229, - [249] = 219, - [250] = 231, - [251] = 226, - [252] = 229, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 253, - [257] = 255, - [258] = 253, - [259] = 254, - [260] = 254, - [261] = 255, - [262] = 262, - [263] = 263, - [264] = 264, + [227] = 227, + [228] = 228, + [229] = 225, + [230] = 230, + [231] = 230, + [232] = 221, + [233] = 233, + [234] = 220, + [235] = 221, + [236] = 227, + [237] = 221, + [238] = 238, + [239] = 230, + [240] = 233, + [241] = 226, + [242] = 225, + [243] = 238, + [244] = 238, + [245] = 225, + [246] = 218, + [247] = 222, + [248] = 218, + [249] = 225, + [250] = 219, + [251] = 230, + [252] = 218, + [253] = 221, + [254] = 218, + [255] = 223, + [256] = 256, + [257] = 256, + [258] = 258, + [259] = 258, + [260] = 260, + [261] = 260, + [262] = 260, + [263] = 256, + [264] = 258, [265] = 265, [266] = 266, [267] = 267, @@ -4261,7 +4289,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [272] = 272, [273] = 273, [274] = 274, - [275] = 263, + [275] = 275, [276] = 276, [277] = 277, [278] = 278, @@ -4270,114 +4298,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [281] = 281, [282] = 282, [283] = 283, - [284] = 284, + [284] = 266, [285] = 285, [286] = 286, [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, + [288] = 265, + [289] = 272, + [290] = 282, + [291] = 282, + [292] = 273, [293] = 293, - [294] = 294, + [294] = 282, [295] = 295, [296] = 296, - [297] = 297, + [297] = 282, [298] = 298, - [299] = 290, + [299] = 299, [300] = 300, - [301] = 265, - [302] = 266, - [303] = 270, - [304] = 274, - [305] = 276, - [306] = 277, - [307] = 278, - [308] = 279, - [309] = 280, - [310] = 281, - [311] = 282, - [312] = 289, - [313] = 296, + [301] = 301, + [302] = 274, + [303] = 275, + [304] = 276, + [305] = 277, + [306] = 278, + [307] = 279, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, [314] = 314, - [315] = 315, + [315] = 311, [316] = 316, - [317] = 300, - [318] = 300, + [317] = 317, + [318] = 318, [319] = 319, - [320] = 265, - [321] = 266, - [322] = 270, - [323] = 274, - [324] = 276, - [325] = 277, - [326] = 278, - [327] = 279, - [328] = 280, - [329] = 281, - [330] = 282, - [331] = 296, - [332] = 332, - [333] = 300, - [334] = 265, - [335] = 266, - [336] = 270, - [337] = 274, - [338] = 276, - [339] = 277, - [340] = 278, - [341] = 279, - [342] = 280, - [343] = 281, - [344] = 282, - [345] = 289, - [346] = 296, - [347] = 289, + [320] = 280, + [321] = 281, + [322] = 268, + [323] = 300, + [324] = 282, + [325] = 325, + [326] = 326, + [327] = 268, + [328] = 328, + [329] = 329, + [330] = 300, + [331] = 272, + [332] = 273, + [333] = 274, + [334] = 275, + [335] = 276, + [336] = 277, + [337] = 278, + [338] = 311, + [339] = 279, + [340] = 280, + [341] = 281, + [342] = 282, + [343] = 283, + [344] = 344, + [345] = 345, + [346] = 326, + [347] = 283, [348] = 348, - [349] = 289, - [350] = 289, - [351] = 289, - [352] = 290, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 354, - [357] = 357, - [358] = 358, - [359] = 290, - [360] = 354, - [361] = 314, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 315, - [366] = 262, - [367] = 291, - [368] = 316, - [369] = 332, - [370] = 353, - [371] = 355, - [372] = 362, - [373] = 264, - [374] = 268, - [375] = 271, - [376] = 263, - [377] = 285, - [378] = 287, - [379] = 288, - [380] = 295, - [381] = 298, - [382] = 315, - [383] = 316, - [384] = 355, - [385] = 263, - [386] = 315, - [387] = 316, - [388] = 289, + [349] = 268, + [350] = 300, + [351] = 265, + [352] = 272, + [353] = 273, + [354] = 274, + [355] = 275, + [356] = 276, + [357] = 277, + [358] = 278, + [359] = 279, + [360] = 280, + [361] = 286, + [362] = 281, + [363] = 287, + [364] = 325, + [365] = 365, + [366] = 348, + [367] = 367, + [368] = 282, + [369] = 369, + [370] = 308, + [371] = 309, + [372] = 328, + [373] = 369, + [374] = 329, + [375] = 269, + [376] = 266, + [377] = 296, + [378] = 299, + [379] = 301, + [380] = 314, + [381] = 317, + [382] = 283, + [383] = 286, + [384] = 367, + [385] = 348, + [386] = 309, + [387] = 266, + [388] = 286, [389] = 389, - [390] = 390, - [391] = 391, + [390] = 348, + [391] = 265, [392] = 392, [393] = 393, [394] = 394, @@ -4387,17 +4415,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [398] = 398, [399] = 399, [400] = 400, - [401] = 200, + [401] = 401, [402] = 402, [403] = 403, [404] = 404, [405] = 405, [406] = 406, - [407] = 394, - [408] = 198, + [407] = 407, + [408] = 215, [409] = 409, [410] = 410, - [411] = 411, + [411] = 402, [412] = 412, [413] = 413, [414] = 414, @@ -4405,84 +4433,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [416] = 416, [417] = 417, [418] = 418, - [419] = 394, - [420] = 420, + [419] = 216, + [420] = 402, [421] = 421, [422] = 422, - [423] = 416, + [423] = 423, [424] = 424, [425] = 425, - [426] = 426, + [426] = 418, [427] = 427, - [428] = 425, + [428] = 428, [429] = 429, - [430] = 429, + [430] = 430, [431] = 429, - [432] = 426, - [433] = 427, - [434] = 426, - [435] = 435, - [436] = 435, - [437] = 437, + [432] = 432, + [433] = 432, + [434] = 428, + [435] = 430, + [436] = 432, + [437] = 430, [438] = 438, - [439] = 439, + [439] = 438, [440] = 440, - [441] = 439, + [441] = 441, [442] = 442, - [443] = 442, - [444] = 439, - [445] = 440, - [446] = 440, - [447] = 442, - [448] = 440, - [449] = 442, - [450] = 439, - [451] = 451, - [452] = 451, - [453] = 453, - [454] = 451, - [455] = 451, - [456] = 456, - [457] = 456, - [458] = 456, - [459] = 319, - [460] = 456, - [461] = 392, - [462] = 462, - [463] = 389, - [464] = 390, - [465] = 391, - [466] = 462, + [443] = 443, + [444] = 444, + [445] = 442, + [446] = 443, + [447] = 444, + [448] = 442, + [449] = 443, + [450] = 442, + [451] = 444, + [452] = 444, + [453] = 443, + [454] = 454, + [455] = 455, + [456] = 454, + [457] = 454, + [458] = 454, + [459] = 365, + [460] = 460, + [461] = 460, + [462] = 460, + [463] = 460, + [464] = 464, + [465] = 394, + [466] = 392, [467] = 393, - [468] = 462, - [469] = 462, - [470] = 421, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 399, - [475] = 405, - [476] = 397, - [477] = 420, - [478] = 400, - [479] = 414, - [480] = 415, - [481] = 410, - [482] = 413, - [483] = 418, - [484] = 412, - [485] = 409, - [486] = 406, - [487] = 395, - [488] = 411, - [489] = 403, - [490] = 398, - [491] = 422, + [468] = 395, + [469] = 396, + [470] = 464, + [471] = 464, + [472] = 464, + [473] = 410, + [474] = 398, + [475] = 475, + [476] = 421, + [477] = 405, + [478] = 401, + [479] = 425, + [480] = 417, + [481] = 422, + [482] = 423, + [483] = 397, + [484] = 409, + [485] = 403, + [486] = 400, + [487] = 415, + [488] = 412, + [489] = 414, + [490] = 424, + [491] = 406, [492] = 492, - [493] = 492, - [494] = 494, + [493] = 493, + [494] = 399, [495] = 495, - [496] = 496, + [496] = 495, [497] = 497, [498] = 498, [499] = 499, @@ -4617,7 +4645,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [628] = 628, [629] = 629, [630] = 630, - [631] = 391, + [631] = 631, [632] = 632, [633] = 633, [634] = 634, @@ -4630,13 +4658,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 641, [642] = 642, [643] = 643, - [644] = 393, + [644] = 644, [645] = 645, [646] = 646, - [647] = 392, + [647] = 647, [648] = 648, - [649] = 389, - [650] = 390, + [649] = 649, + [650] = 650, [651] = 651, [652] = 652, [653] = 653, @@ -4651,34 +4679,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [662] = 662, [663] = 663, [664] = 664, - [665] = 665, + [665] = 394, [666] = 666, [667] = 667, [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 584, + [672] = 672, [673] = 673, [674] = 674, - [675] = 675, - [676] = 664, + [675] = 392, + [676] = 393, [677] = 677, - [678] = 678, - [679] = 679, - [680] = 679, + [678] = 395, + [679] = 396, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, [685] = 685, - [686] = 589, + [686] = 686, [687] = 687, [688] = 688, [689] = 689, [690] = 690, [691] = 691, - [692] = 692, + [692] = 672, [693] = 693, [694] = 694, [695] = 695, @@ -4689,14 +4717,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [700] = 700, [701] = 701, [702] = 702, - [703] = 703, + [703] = 498, [704] = 704, [705] = 705, [706] = 706, [707] = 707, [708] = 708, [709] = 709, - [710] = 710, + [710] = 674, [711] = 711, [712] = 712, [713] = 713, @@ -4737,7 +4765,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [748] = 748, [749] = 749, [750] = 750, - [751] = 751, + [751] = 697, [752] = 752, [753] = 753, [754] = 754, @@ -4779,33 +4807,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [790] = 790, [791] = 791, [792] = 792, - [793] = 792, + [793] = 793, [794] = 794, [795] = 795, [796] = 796, [797] = 797, - [798] = 796, - [799] = 795, - [800] = 800, + [798] = 797, + [799] = 796, + [800] = 795, [801] = 801, [802] = 802, - [803] = 800, + [803] = 803, [804] = 804, [805] = 805, - [806] = 802, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 801, - [812] = 812, - [813] = 805, - [814] = 807, - [815] = 809, + [811] = 805, + [812] = 804, + [813] = 806, + [814] = 814, + [815] = 815, [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, + [817] = 810, + [818] = 814, + [819] = 815, [820] = 820, [821] = 821, [822] = 822, @@ -4814,74 +4842,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [825] = 825, [826] = 826, [827] = 827, - [828] = 828, - [829] = 822, - [830] = 830, + [828] = 827, + [829] = 829, + [830] = 826, [831] = 831, [832] = 832, - [833] = 819, - [834] = 817, - [835] = 818, - [836] = 826, - [837] = 816, - [838] = 820, - [839] = 824, - [840] = 825, - [841] = 841, - [842] = 831, - [843] = 823, - [844] = 819, - [845] = 823, - [846] = 819, - [847] = 823, - [848] = 841, - [849] = 849, - [850] = 849, - [851] = 849, - [852] = 849, + [833] = 820, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 821, + [839] = 832, + [840] = 831, + [841] = 823, + [842] = 829, + [843] = 837, + [844] = 844, + [845] = 844, + [846] = 824, + [847] = 825, + [848] = 820, + [849] = 825, + [850] = 820, + [851] = 825, + [852] = 852, [853] = 853, - [854] = 849, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, + [854] = 854, + [855] = 853, + [856] = 853, + [857] = 853, + [858] = 853, [859] = 859, - [860] = 859, - [861] = 861, - [862] = 857, + [860] = 860, + [861] = 859, + [862] = 859, [863] = 863, - [864] = 863, - [865] = 859, - [866] = 855, - [867] = 867, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 866, [868] = 868, - [869] = 867, - [870] = 859, - [871] = 871, - [872] = 867, - [873] = 856, - [874] = 874, - [875] = 863, - [876] = 859, - [877] = 877, - [878] = 863, - [879] = 856, - [880] = 863, + [869] = 869, + [870] = 866, + [871] = 860, + [872] = 872, + [873] = 859, + [874] = 869, + [875] = 865, + [876] = 860, + [877] = 864, + [878] = 864, + [879] = 859, + [880] = 866, [881] = 881, [882] = 882, [883] = 883, - [884] = 884, - [885] = 882, + [884] = 866, + [885] = 885, [886] = 886, [887] = 887, [888] = 888, - [889] = 884, + [889] = 889, [890] = 890, [891] = 891, [892] = 892, - [893] = 893, + [893] = 885, [894] = 894, - [895] = 891, + [895] = 895, [896] = 896, [897] = 897, [898] = 898, @@ -4896,189 +4924,189 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [907] = 907, [908] = 908, [909] = 909, - [910] = 910, + [910] = 889, [911] = 911, [912] = 912, - [913] = 888, - [914] = 883, + [913] = 913, + [914] = 914, [915] = 915, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 882, - [920] = 920, + [917] = 894, + [918] = 887, + [919] = 886, + [920] = 897, [921] = 921, [922] = 922, - [923] = 923, - [924] = 906, + [923] = 895, + [924] = 924, [925] = 925, - [926] = 888, + [926] = 926, [927] = 927, [928] = 928, [929] = 929, - [930] = 907, + [930] = 921, [931] = 931, [932] = 932, - [933] = 933, + [933] = 886, [934] = 934, - [935] = 882, - [936] = 887, - [937] = 884, - [938] = 894, - [939] = 891, + [935] = 935, + [936] = 888, + [937] = 937, + [938] = 938, + [939] = 939, [940] = 940, [941] = 941, - [942] = 908, - [943] = 911, - [944] = 944, - [945] = 928, - [946] = 946, + [942] = 887, + [943] = 943, + [944] = 911, + [945] = 911, + [946] = 912, [947] = 947, [948] = 948, [949] = 949, [950] = 950, [951] = 951, - [952] = 952, - [953] = 899, - [954] = 887, - [955] = 955, - [956] = 908, + [952] = 951, + [953] = 889, + [954] = 894, + [955] = 895, + [956] = 915, [957] = 957, - [958] = 911, - [959] = 941, - [960] = 922, - [961] = 923, - [962] = 901, - [963] = 957, - [964] = 922, - [965] = 923, - [966] = 888, + [958] = 958, + [959] = 940, + [960] = 960, + [961] = 926, + [962] = 897, + [963] = 963, + [964] = 932, + [965] = 951, + [966] = 966, [967] = 967, - [968] = 900, - [969] = 881, - [970] = 952, + [968] = 897, + [969] = 921, + [970] = 970, [971] = 971, - [972] = 971, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 922, - [978] = 973, - [979] = 906, - [980] = 882, - [981] = 884, - [982] = 887, - [983] = 883, - [984] = 884, - [985] = 894, - [986] = 891, - [987] = 910, - [988] = 917, - [989] = 918, - [990] = 921, - [991] = 925, - [992] = 929, - [993] = 923, - [994] = 994, - [995] = 932, - [996] = 933, - [997] = 944, - [998] = 946, - [999] = 976, - [1000] = 1000, - [1001] = 908, - [1002] = 911, - [1003] = 928, - [1004] = 1004, - [1005] = 904, - [1006] = 912, - [1007] = 886, - [1008] = 907, - [1009] = 950, - [1010] = 949, - [1011] = 897, - [1012] = 898, - [1013] = 902, - [1014] = 903, - [1015] = 909, - [1016] = 1016, - [1017] = 931, - [1018] = 1018, - [1019] = 949, - [1020] = 1020, - [1021] = 1016, - [1022] = 994, - [1023] = 1004, - [1024] = 1024, - [1025] = 1025, - [1026] = 1026, - [1027] = 890, - [1028] = 896, - [1029] = 916, - [1030] = 1024, - [1031] = 928, - [1032] = 1032, - [1033] = 967, - [1034] = 957, - [1035] = 1026, - [1036] = 1036, - [1037] = 974, - [1038] = 922, - [1039] = 1000, - [1040] = 923, - [1041] = 949, - [1042] = 975, - [1043] = 906, - [1044] = 1044, - [1045] = 907, - [1046] = 894, - [1047] = 1018, - [1048] = 883, + [972] = 897, + [973] = 967, + [974] = 902, + [975] = 909, + [976] = 921, + [977] = 890, + [978] = 892, + [979] = 935, + [980] = 938, + [981] = 981, + [982] = 925, + [983] = 886, + [984] = 934, + [985] = 887, + [986] = 888, + [987] = 937, + [988] = 885, + [989] = 927, + [990] = 931, + [991] = 939, + [992] = 992, + [993] = 993, + [994] = 896, + [995] = 925, + [996] = 996, + [997] = 960, + [998] = 998, + [999] = 899, + [1000] = 903, + [1001] = 916, + [1002] = 981, + [1003] = 889, + [1004] = 894, + [1005] = 895, + [1006] = 924, + [1007] = 1007, + [1008] = 1008, + [1009] = 998, + [1010] = 891, + [1011] = 971, + [1012] = 905, + [1013] = 906, + [1014] = 907, + [1015] = 908, + [1016] = 913, + [1017] = 922, + [1018] = 928, + [1019] = 929, + [1020] = 951, + [1021] = 966, + [1022] = 1022, + [1023] = 901, + [1024] = 925, + [1025] = 941, + [1026] = 963, + [1027] = 1027, + [1028] = 1028, + [1029] = 949, + [1030] = 992, + [1031] = 912, + [1032] = 940, + [1033] = 1033, + [1034] = 934, + [1035] = 1007, + [1036] = 1008, + [1037] = 886, + [1038] = 1038, + [1039] = 993, + [1040] = 934, + [1041] = 888, + [1042] = 1042, + [1043] = 1022, + [1044] = 937, + [1045] = 888, + [1046] = 911, + [1047] = 885, + [1048] = 912, [1049] = 1049, - [1050] = 1050, - [1051] = 691, - [1052] = 1052, + [1050] = 937, + [1051] = 1027, + [1052] = 921, [1053] = 1053, - [1054] = 1054, - [1055] = 691, + [1054] = 609, + [1055] = 1055, [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 1059, + [1059] = 609, [1060] = 1060, [1061] = 1061, [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 390, - [1066] = 200, - [1067] = 393, - [1068] = 404, - [1069] = 389, - [1070] = 402, - [1071] = 392, - [1072] = 1072, - [1073] = 391, - [1074] = 198, - [1075] = 753, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 215, + [1070] = 394, + [1071] = 396, + [1072] = 413, + [1073] = 395, + [1074] = 393, + [1075] = 392, [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1049, + [1077] = 416, + [1078] = 216, + [1079] = 778, [1080] = 1080, - [1081] = 694, - [1082] = 1082, - [1083] = 514, + [1081] = 563, + [1082] = 1053, + [1083] = 1083, [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1088, - [1089] = 634, - [1090] = 1090, - [1091] = 724, - [1092] = 1092, + [1088] = 711, + [1089] = 1089, + [1090] = 624, + [1091] = 1091, + [1092] = 523, [1093] = 1093, [1094] = 1094, [1095] = 1095, @@ -5090,419 +5118,419 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 1060, + [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1108, + [1108] = 763, [1109] = 1109, - [1110] = 1110, + [1110] = 1064, [1111] = 1111, - [1112] = 435, + [1112] = 1112, [1113] = 1113, - [1114] = 685, - [1115] = 1050, - [1116] = 1057, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, [1117] = 1117, - [1118] = 1118, + [1118] = 438, [1119] = 1119, - [1120] = 583, - [1121] = 585, - [1122] = 1059, + [1120] = 610, + [1121] = 1055, + [1122] = 1063, [1123] = 1123, - [1124] = 1058, + [1124] = 1124, [1125] = 1125, - [1126] = 1126, - [1127] = 1056, - [1128] = 1128, + [1126] = 669, + [1127] = 673, + [1128] = 1062, [1129] = 1129, - [1130] = 1130, + [1130] = 1061, [1131] = 1131, [1132] = 1132, - [1133] = 588, - [1134] = 319, - [1135] = 607, - [1136] = 609, - [1137] = 616, - [1138] = 629, - [1139] = 630, - [1140] = 633, - [1141] = 643, - [1142] = 646, - [1143] = 648, - [1144] = 651, - [1145] = 653, - [1146] = 663, - [1147] = 666, - [1148] = 667, - [1149] = 673, - [1150] = 674, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 699, - [1157] = 700, - [1158] = 701, - [1159] = 702, - [1160] = 704, - [1161] = 711, - [1162] = 712, - [1163] = 713, - [1164] = 714, - [1165] = 715, - [1166] = 725, - [1167] = 726, - [1168] = 727, - [1169] = 728, - [1170] = 729, - [1171] = 730, - [1172] = 731, - [1173] = 732, - [1174] = 733, - [1175] = 734, - [1176] = 735, - [1177] = 736, - [1178] = 737, - [1179] = 738, - [1180] = 739, - [1181] = 740, - [1182] = 744, - [1183] = 751, - [1184] = 763, - [1185] = 765, - [1186] = 768, - [1187] = 773, - [1188] = 777, - [1189] = 780, - [1190] = 597, - [1191] = 687, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 569, - [1197] = 570, - [1198] = 587, - [1199] = 591, - [1200] = 592, - [1201] = 593, - [1202] = 595, - [1203] = 596, - [1204] = 598, - [1205] = 599, - [1206] = 601, - [1207] = 622, - [1208] = 625, - [1209] = 626, - [1210] = 628, - [1211] = 661, - [1212] = 684, - [1213] = 689, - [1214] = 697, - [1215] = 746, - [1216] = 748, - [1217] = 750, - [1218] = 499, - [1219] = 500, - [1220] = 501, - [1221] = 512, - [1222] = 534, - [1223] = 556, - [1224] = 561, - [1225] = 562, - [1226] = 563, - [1227] = 564, - [1228] = 565, - [1229] = 566, - [1230] = 567, - [1231] = 568, - [1232] = 571, - [1233] = 572, - [1234] = 573, - [1235] = 574, - [1236] = 575, - [1237] = 576, - [1238] = 577, - [1239] = 578, - [1240] = 579, - [1241] = 580, - [1242] = 581, - [1243] = 582, - [1244] = 590, - [1245] = 594, - [1246] = 1246, - [1247] = 1247, - [1248] = 600, - [1249] = 602, - [1250] = 603, - [1251] = 604, - [1252] = 605, - [1253] = 606, - [1254] = 608, - [1255] = 610, - [1256] = 611, - [1257] = 612, - [1258] = 613, - [1259] = 614, - [1260] = 615, - [1261] = 617, - [1262] = 618, - [1263] = 619, - [1264] = 620, - [1265] = 621, - [1266] = 623, - [1267] = 624, - [1268] = 632, - [1269] = 635, - [1270] = 636, - [1271] = 637, - [1272] = 781, - [1273] = 639, - [1274] = 640, - [1275] = 641, - [1276] = 1276, - [1277] = 645, - [1278] = 652, - [1279] = 654, - [1280] = 494, - [1281] = 656, - [1282] = 657, - [1283] = 658, - [1284] = 659, - [1285] = 660, - [1286] = 662, - [1287] = 665, - [1288] = 668, - [1289] = 669, - [1290] = 670, - [1291] = 675, - [1292] = 677, - [1293] = 678, - [1294] = 681, - [1295] = 682, - [1296] = 683, - [1297] = 690, - [1298] = 692, - [1299] = 1299, - [1300] = 1300, - [1301] = 695, - [1302] = 696, - [1303] = 698, - [1304] = 703, - [1305] = 705, - [1306] = 706, - [1307] = 707, - [1308] = 708, - [1309] = 709, - [1310] = 710, - [1311] = 716, - [1312] = 717, - [1313] = 718, - [1314] = 719, - [1315] = 721, - [1316] = 722, - [1317] = 723, - [1318] = 741, - [1319] = 742, - [1320] = 743, - [1321] = 745, - [1322] = 749, - [1323] = 752, - [1324] = 754, - [1325] = 755, - [1326] = 756, - [1327] = 757, - [1328] = 758, - [1329] = 759, - [1330] = 760, - [1331] = 761, - [1332] = 762, - [1333] = 764, - [1334] = 766, - [1335] = 767, - [1336] = 769, - [1337] = 770, - [1338] = 771, - [1339] = 772, - [1340] = 774, - [1341] = 775, - [1342] = 776, - [1343] = 778, - [1344] = 779, - [1345] = 655, - [1346] = 638, - [1347] = 671, - [1348] = 495, - [1349] = 496, - [1350] = 497, - [1351] = 498, - [1352] = 1352, - [1353] = 1353, - [1354] = 502, - [1355] = 503, - [1356] = 504, - [1357] = 505, - [1358] = 506, - [1359] = 507, - [1360] = 508, - [1361] = 509, - [1362] = 510, - [1363] = 511, - [1364] = 513, - [1365] = 515, - [1366] = 516, - [1367] = 517, - [1368] = 518, - [1369] = 519, - [1370] = 520, - [1371] = 521, - [1372] = 522, - [1373] = 523, - [1374] = 524, - [1375] = 525, - [1376] = 526, - [1377] = 527, - [1378] = 528, - [1379] = 529, - [1380] = 530, - [1381] = 531, - [1382] = 532, - [1383] = 533, - [1384] = 535, - [1385] = 536, - [1386] = 537, - [1387] = 538, - [1388] = 539, - [1389] = 540, - [1390] = 541, - [1391] = 542, - [1392] = 543, - [1393] = 544, - [1394] = 545, - [1395] = 546, - [1396] = 547, - [1397] = 548, - [1398] = 549, - [1399] = 550, - [1400] = 551, - [1401] = 552, - [1402] = 553, - [1403] = 554, - [1404] = 555, - [1405] = 557, - [1406] = 558, - [1407] = 559, - [1408] = 560, - [1409] = 1409, - [1410] = 691, - [1411] = 569, - [1412] = 1412, - [1413] = 1413, - [1414] = 691, - [1415] = 691, + [1133] = 1060, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 671, + [1140] = 365, + [1141] = 681, + [1142] = 685, + [1143] = 686, + [1144] = 704, + [1145] = 707, + [1146] = 730, + [1147] = 743, + [1148] = 744, + [1149] = 745, + [1150] = 746, + [1151] = 748, + [1152] = 750, + [1153] = 753, + [1154] = 771, + [1155] = 696, + [1156] = 708, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 611, + [1163] = 612, + [1164] = 613, + [1165] = 614, + [1166] = 615, + [1167] = 617, + [1168] = 618, + [1169] = 619, + [1170] = 620, + [1171] = 621, + [1172] = 625, + [1173] = 626, + [1174] = 627, + [1175] = 628, + [1176] = 629, + [1177] = 630, + [1178] = 631, + [1179] = 633, + [1180] = 637, + [1181] = 638, + [1182] = 639, + [1183] = 640, + [1184] = 641, + [1185] = 642, + [1186] = 643, + [1187] = 644, + [1188] = 645, + [1189] = 647, + [1190] = 648, + [1191] = 653, + [1192] = 654, + [1193] = 662, + [1194] = 663, + [1195] = 664, + [1196] = 668, + [1197] = 670, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 683, + [1203] = 684, + [1204] = 687, + [1205] = 688, + [1206] = 689, + [1207] = 690, + [1208] = 691, + [1209] = 693, + [1210] = 694, + [1211] = 695, + [1212] = 698, + [1213] = 699, + [1214] = 700, + [1215] = 701, + [1216] = 702, + [1217] = 705, + [1218] = 706, + [1219] = 709, + [1220] = 712, + [1221] = 713, + [1222] = 714, + [1223] = 715, + [1224] = 716, + [1225] = 717, + [1226] = 718, + [1227] = 719, + [1228] = 720, + [1229] = 721, + [1230] = 722, + [1231] = 723, + [1232] = 724, + [1233] = 725, + [1234] = 726, + [1235] = 727, + [1236] = 728, + [1237] = 729, + [1238] = 731, + [1239] = 732, + [1240] = 733, + [1241] = 734, + [1242] = 735, + [1243] = 736, + [1244] = 737, + [1245] = 738, + [1246] = 739, + [1247] = 740, + [1248] = 741, + [1249] = 742, + [1250] = 747, + [1251] = 749, + [1252] = 1252, + [1253] = 1253, + [1254] = 752, + [1255] = 754, + [1256] = 755, + [1257] = 756, + [1258] = 757, + [1259] = 758, + [1260] = 759, + [1261] = 760, + [1262] = 761, + [1263] = 762, + [1264] = 765, + [1265] = 766, + [1266] = 767, + [1267] = 768, + [1268] = 769, + [1269] = 770, + [1270] = 772, + [1271] = 773, + [1272] = 776, + [1273] = 779, + [1274] = 780, + [1275] = 781, + [1276] = 782, + [1277] = 783, + [1278] = 657, + [1279] = 520, + [1280] = 497, + [1281] = 622, + [1282] = 632, + [1283] = 634, + [1284] = 635, + [1285] = 636, + [1286] = 649, + [1287] = 650, + [1288] = 651, + [1289] = 652, + [1290] = 655, + [1291] = 656, + [1292] = 784, + [1293] = 658, + [1294] = 659, + [1295] = 660, + [1296] = 661, + [1297] = 666, + [1298] = 667, + [1299] = 680, + [1300] = 682, + [1301] = 774, + [1302] = 777, + [1303] = 1303, + [1304] = 1304, + [1305] = 499, + [1306] = 500, + [1307] = 501, + [1308] = 502, + [1309] = 503, + [1310] = 504, + [1311] = 505, + [1312] = 506, + [1313] = 507, + [1314] = 508, + [1315] = 509, + [1316] = 510, + [1317] = 511, + [1318] = 512, + [1319] = 513, + [1320] = 514, + [1321] = 515, + [1322] = 516, + [1323] = 517, + [1324] = 518, + [1325] = 519, + [1326] = 521, + [1327] = 522, + [1328] = 524, + [1329] = 525, + [1330] = 526, + [1331] = 527, + [1332] = 528, + [1333] = 529, + [1334] = 530, + [1335] = 531, + [1336] = 532, + [1337] = 533, + [1338] = 534, + [1339] = 535, + [1340] = 536, + [1341] = 537, + [1342] = 538, + [1343] = 539, + [1344] = 540, + [1345] = 541, + [1346] = 542, + [1347] = 543, + [1348] = 544, + [1349] = 545, + [1350] = 546, + [1351] = 547, + [1352] = 548, + [1353] = 549, + [1354] = 550, + [1355] = 551, + [1356] = 1356, + [1357] = 1357, + [1358] = 552, + [1359] = 553, + [1360] = 554, + [1361] = 555, + [1362] = 556, + [1363] = 557, + [1364] = 558, + [1365] = 559, + [1366] = 560, + [1367] = 561, + [1368] = 562, + [1369] = 564, + [1370] = 565, + [1371] = 566, + [1372] = 567, + [1373] = 568, + [1374] = 569, + [1375] = 570, + [1376] = 571, + [1377] = 572, + [1378] = 573, + [1379] = 574, + [1380] = 575, + [1381] = 576, + [1382] = 577, + [1383] = 578, + [1384] = 579, + [1385] = 580, + [1386] = 581, + [1387] = 582, + [1388] = 583, + [1389] = 584, + [1390] = 585, + [1391] = 586, + [1392] = 587, + [1393] = 588, + [1394] = 589, + [1395] = 590, + [1396] = 591, + [1397] = 592, + [1398] = 593, + [1399] = 594, + [1400] = 595, + [1401] = 596, + [1402] = 597, + [1403] = 598, + [1404] = 599, + [1405] = 600, + [1406] = 601, + [1407] = 602, + [1408] = 603, + [1409] = 604, + [1410] = 605, + [1411] = 606, + [1412] = 607, + [1413] = 609, + [1414] = 683, + [1415] = 1415, [1416] = 1416, - [1417] = 1060, - [1418] = 1418, - [1419] = 642, - [1420] = 1060, + [1417] = 609, + [1418] = 609, + [1419] = 1419, + [1420] = 1064, [1421] = 1421, [1422] = 1422, - [1423] = 1423, - [1424] = 147, + [1423] = 764, + [1424] = 412, [1425] = 1425, - [1426] = 1426, + [1426] = 410, [1427] = 1427, [1428] = 1428, - [1429] = 198, + [1429] = 413, [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, - [1434] = 1434, + [1434] = 183, [1435] = 1435, - [1436] = 415, - [1437] = 1437, + [1436] = 1436, + [1437] = 398, [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 390, - [1442] = 1442, - [1443] = 1443, + [1441] = 1441, + [1442] = 421, + [1443] = 417, [1444] = 1444, [1445] = 1445, - [1446] = 391, + [1446] = 1446, [1447] = 1447, [1448] = 1448, - [1449] = 1449, + [1449] = 400, [1450] = 1450, - [1451] = 421, - [1452] = 410, - [1453] = 411, - [1454] = 412, - [1455] = 1455, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 403, [1456] = 1456, - [1457] = 409, + [1457] = 1457, [1458] = 1458, [1459] = 1459, - [1460] = 397, + [1460] = 1460, [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 398, + [1462] = 216, + [1463] = 405, + [1464] = 416, [1465] = 1465, [1466] = 1466, - [1467] = 200, - [1468] = 393, - [1469] = 1469, - [1470] = 418, - [1471] = 406, + [1467] = 394, + [1468] = 422, + [1469] = 423, + [1470] = 1470, + [1471] = 393, [1472] = 1472, [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, [1477] = 1477, - [1478] = 395, - [1479] = 413, + [1478] = 1478, + [1479] = 397, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 152, - [1485] = 1485, - [1486] = 399, - [1487] = 404, - [1488] = 1488, - [1489] = 405, + [1484] = 396, + [1485] = 215, + [1486] = 1486, + [1487] = 415, + [1488] = 424, + [1489] = 1489, [1490] = 1490, - [1491] = 170, - [1492] = 1492, - [1493] = 420, + [1491] = 1491, + [1492] = 406, + [1493] = 1493, [1494] = 1494, - [1495] = 1495, - [1496] = 400, - [1497] = 402, - [1498] = 389, - [1499] = 403, + [1495] = 401, + [1496] = 399, + [1497] = 1497, + [1498] = 1498, + [1499] = 392, [1500] = 1500, - [1501] = 1501, - [1502] = 1502, + [1501] = 425, + [1502] = 190, [1503] = 1503, [1504] = 1504, [1505] = 1505, - [1506] = 1506, + [1506] = 179, [1507] = 1507, [1508] = 1508, - [1509] = 392, - [1510] = 1510, + [1509] = 1509, + [1510] = 1064, [1511] = 1511, [1512] = 1512, - [1513] = 149, + [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1516, + [1516] = 186, [1517] = 1517, [1518] = 1518, [1519] = 1519, @@ -5516,644 +5544,644 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1527] = 1527, [1528] = 1528, [1529] = 1529, - [1530] = 1530, + [1530] = 395, [1531] = 1531, [1532] = 1532, - [1533] = 151, + [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 422, - [1537] = 1537, + [1536] = 1536, + [1537] = 188, [1538] = 1538, - [1539] = 414, - [1540] = 1540, - [1541] = 1540, - [1542] = 1060, - [1543] = 1060, + [1539] = 1539, + [1540] = 409, + [1541] = 1541, + [1542] = 1542, + [1543] = 414, [1544] = 1544, - [1545] = 1545, - [1546] = 1540, - [1547] = 1540, + [1545] = 1544, + [1546] = 1544, + [1547] = 1547, [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1062, - [1553] = 1063, - [1554] = 1061, + [1549] = 1544, + [1550] = 1064, + [1551] = 1064, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, - [1558] = 1558, - [1559] = 1559, + [1558] = 1555, + [1559] = 1552, [1560] = 1560, [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 1100, + [1564] = 1564, [1565] = 1565, [1566] = 1566, [1567] = 1567, [1568] = 1568, - [1569] = 1566, + [1569] = 1569, [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, [1574] = 1574, - [1575] = 1565, - [1576] = 1576, - [1577] = 1570, - [1578] = 1578, - [1579] = 1579, + [1575] = 1099, + [1576] = 1065, + [1577] = 1557, + [1578] = 1066, + [1579] = 1067, [1580] = 1580, [1581] = 1581, - [1582] = 1100, - [1583] = 1100, - [1584] = 1072, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, [1585] = 1585, - [1586] = 1080, - [1587] = 1105, - [1588] = 1107, - [1589] = 1531, - [1590] = 1276, - [1591] = 1084, - [1592] = 1105, - [1593] = 1276, - [1594] = 1078, - [1595] = 1508, - [1596] = 1082, - [1597] = 1087, - [1598] = 1085, - [1599] = 1110, - [1600] = 1086, - [1601] = 1531, - [1602] = 1110, - [1603] = 1090, - [1604] = 1107, - [1605] = 1605, - [1606] = 1409, - [1607] = 1605, - [1608] = 1409, - [1609] = 1430, - [1610] = 1610, - [1611] = 1246, - [1612] = 1299, - [1613] = 1352, - [1614] = 1614, - [1615] = 319, - [1616] = 1488, - [1617] = 1092, - [1618] = 1094, + [1586] = 1099, + [1587] = 1587, + [1588] = 1068, + [1589] = 1099, + [1590] = 1083, + [1591] = 1093, + [1592] = 1111, + [1593] = 1113, + [1594] = 1113, + [1595] = 1086, + [1596] = 1085, + [1597] = 1117, + [1598] = 1109, + [1599] = 1109, + [1600] = 1094, + [1601] = 1084, + [1602] = 1535, + [1603] = 1087, + [1604] = 1117, + [1605] = 1535, + [1606] = 1091, + [1607] = 1504, + [1608] = 1111, + [1609] = 1505, + [1610] = 1535, + [1611] = 1107, + [1612] = 1421, + [1613] = 1613, + [1614] = 1252, + [1615] = 1303, + [1616] = 1356, + [1617] = 365, + [1618] = 1618, [1619] = 1619, - [1620] = 1531, - [1621] = 1192, - [1622] = 1610, - [1623] = 1508, - [1624] = 1614, - [1625] = 1619, - [1626] = 1610, - [1627] = 1614, - [1628] = 1610, - [1629] = 1614, - [1630] = 1545, - [1631] = 1544, - [1632] = 1093, - [1633] = 1488, - [1634] = 1605, - [1635] = 1097, - [1636] = 1430, - [1637] = 1637, - [1638] = 1605, - [1639] = 1637, - [1640] = 1418, - [1641] = 1300, - [1642] = 1109, - [1643] = 1123, - [1644] = 1193, - [1645] = 1416, - [1646] = 1125, - [1647] = 1571, - [1648] = 1573, - [1649] = 1555, - [1650] = 1563, - [1651] = 1353, - [1652] = 1108, - [1653] = 1545, - [1654] = 1654, - [1655] = 1655, - [1656] = 1656, - [1657] = 1117, - [1658] = 1658, - [1659] = 1126, - [1660] = 1194, - [1661] = 1247, - [1662] = 1128, - [1663] = 1580, - [1664] = 1658, - [1665] = 1568, - [1666] = 1129, - [1667] = 1549, - [1668] = 1579, - [1669] = 1130, - [1670] = 1548, - [1671] = 1131, - [1672] = 1560, - [1673] = 1132, - [1674] = 1655, - [1675] = 1574, - [1676] = 1118, - [1677] = 1677, - [1678] = 1678, - [1679] = 1119, - [1680] = 1551, - [1681] = 1654, - [1682] = 1576, - [1683] = 391, - [1684] = 1557, - [1685] = 393, - [1686] = 392, - [1687] = 1558, - [1688] = 1572, - [1689] = 1544, - [1690] = 389, - [1691] = 390, - [1692] = 1151, - [1693] = 1578, - [1694] = 1152, - [1695] = 1195, - [1696] = 1153, - [1697] = 1154, - [1698] = 1155, - [1699] = 1567, - [1700] = 1550, - [1701] = 1701, - [1702] = 1448, - [1703] = 1524, - [1704] = 1449, - [1705] = 1705, - [1706] = 1473, - [1707] = 1707, - [1708] = 1574, - [1709] = 1485, - [1710] = 1537, - [1711] = 1515, - [1712] = 1480, - [1713] = 1474, - [1714] = 1475, - [1715] = 1056, - [1716] = 1490, - [1717] = 1481, - [1718] = 1422, - [1719] = 1434, - [1720] = 1483, - [1721] = 1492, - [1722] = 1447, - [1723] = 1568, - [1724] = 1572, - [1725] = 1495, - [1726] = 1726, - [1727] = 1576, - [1728] = 1578, - [1729] = 1579, - [1730] = 1580, - [1731] = 1549, - [1732] = 1550, - [1733] = 1548, - [1734] = 1551, - [1735] = 1557, - [1736] = 1558, - [1737] = 1567, - [1738] = 1738, - [1739] = 1739, - [1740] = 1516, - [1741] = 1520, - [1742] = 1571, - [1743] = 1423, - [1744] = 1744, - [1745] = 1426, - [1746] = 1512, - [1747] = 1433, - [1748] = 1560, - [1749] = 1455, - [1750] = 1573, - [1751] = 1458, - [1752] = 1427, - [1753] = 1459, - [1754] = 1431, - [1755] = 1461, - [1756] = 1462, - [1757] = 1428, - [1758] = 1463, - [1759] = 1759, - [1760] = 1432, - [1761] = 1465, - [1762] = 1435, - [1763] = 1763, - [1764] = 1438, - [1765] = 1500, - [1766] = 1501, - [1767] = 1502, - [1768] = 1503, - [1769] = 1504, - [1770] = 1505, - [1771] = 1506, - [1772] = 1772, - [1773] = 1442, - [1774] = 1443, - [1775] = 1444, - [1776] = 1555, - [1777] = 435, - [1778] = 410, - [1779] = 412, - [1780] = 409, - [1781] = 397, - [1782] = 398, - [1783] = 1563, - [1784] = 1574, - [1785] = 1785, - [1786] = 1476, - [1787] = 399, - [1788] = 1568, - [1789] = 405, - [1790] = 1425, - [1791] = 420, - [1792] = 1572, - [1793] = 400, - [1794] = 1576, - [1795] = 1578, - [1796] = 1579, - [1797] = 1580, - [1798] = 1549, - [1799] = 1550, - [1800] = 1548, - [1801] = 1551, - [1802] = 1557, - [1803] = 1558, - [1804] = 1567, - [1805] = 1526, - [1806] = 1421, - [1807] = 414, - [1808] = 415, - [1809] = 1560, - [1810] = 421, - [1811] = 1456, - [1812] = 1507, - [1813] = 418, - [1814] = 406, - [1815] = 395, - [1816] = 403, - [1817] = 422, - [1818] = 413, - [1819] = 170, - [1820] = 147, - [1821] = 411, - [1822] = 149, - [1823] = 1514, - [1824] = 1574, - [1825] = 151, - [1826] = 404, - [1827] = 1827, - [1828] = 1572, - [1829] = 152, - [1830] = 402, - [1831] = 1560, - [1832] = 1518, - [1833] = 1523, - [1834] = 1525, - [1835] = 198, - [1836] = 200, - [1837] = 1530, - [1838] = 1437, - [1839] = 1494, - [1840] = 1532, - [1841] = 1534, - [1842] = 1535, - [1843] = 1827, - [1844] = 1439, - [1845] = 1772, - [1846] = 1440, - [1847] = 1445, - [1848] = 1848, - [1849] = 1744, - [1850] = 1538, + [1620] = 1504, + [1621] = 1621, + [1622] = 1096, + [1623] = 1623, + [1624] = 1101, + [1625] = 1421, + [1626] = 1623, + [1627] = 1613, + [1628] = 1621, + [1629] = 1441, + [1630] = 1106, + [1631] = 1613, + [1632] = 1621, + [1633] = 1613, + [1634] = 1621, + [1635] = 1548, + [1636] = 1547, + [1637] = 1441, + [1638] = 1619, + [1639] = 1619, + [1640] = 1505, + [1641] = 1198, + [1642] = 1619, + [1643] = 1618, + [1644] = 1644, + [1645] = 1304, + [1646] = 1136, + [1647] = 1357, + [1648] = 1563, + [1649] = 1649, + [1650] = 1124, + [1651] = 1564, + [1652] = 1565, + [1653] = 1566, + [1654] = 1137, + [1655] = 1585, + [1656] = 394, + [1657] = 1138, + [1658] = 392, + [1659] = 393, + [1660] = 1568, + [1661] = 395, + [1662] = 396, + [1663] = 1125, + [1664] = 1547, + [1665] = 1665, + [1666] = 1573, + [1667] = 1422, + [1668] = 1419, + [1669] = 1569, + [1670] = 1570, + [1671] = 1584, + [1672] = 1548, + [1673] = 1580, + [1674] = 1583, + [1675] = 1571, + [1676] = 1572, + [1677] = 1556, + [1678] = 1665, + [1679] = 1679, + [1680] = 1157, + [1681] = 1681, + [1682] = 1114, + [1683] = 1158, + [1684] = 1115, + [1685] = 1574, + [1686] = 1681, + [1687] = 1159, + [1688] = 1160, + [1689] = 1161, + [1690] = 1129, + [1691] = 1131, + [1692] = 1199, + [1693] = 1679, + [1694] = 1132, + [1695] = 1200, + [1696] = 1134, + [1697] = 1201, + [1698] = 1581, + [1699] = 1135, + [1700] = 1700, + [1701] = 1123, + [1702] = 1253, + [1703] = 1553, + [1704] = 1560, + [1705] = 1512, + [1706] = 1531, + [1707] = 1532, + [1708] = 1533, + [1709] = 1583, + [1710] = 1710, + [1711] = 1507, + [1712] = 1509, + [1713] = 1060, + [1714] = 1517, + [1715] = 1515, + [1716] = 1716, + [1717] = 1717, + [1718] = 1523, + [1719] = 1521, + [1720] = 1527, + [1721] = 1529, + [1722] = 1534, + [1723] = 1573, + [1724] = 1556, + [1725] = 1513, + [1726] = 1536, + [1727] = 1538, + [1728] = 1539, + [1729] = 1563, + [1730] = 1564, + [1731] = 1565, + [1732] = 1566, + [1733] = 1585, + [1734] = 1568, + [1735] = 1569, + [1736] = 1570, + [1737] = 1571, + [1738] = 1572, + [1739] = 1574, + [1740] = 1497, + [1741] = 1541, + [1742] = 1473, + [1743] = 1474, + [1744] = 1478, + [1745] = 1486, + [1746] = 1481, + [1747] = 1498, + [1748] = 1748, + [1749] = 1581, + [1750] = 1750, + [1751] = 1447, + [1752] = 1752, + [1753] = 1451, + [1754] = 1452, + [1755] = 1755, + [1756] = 1454, + [1757] = 1456, + [1758] = 1457, + [1759] = 1514, + [1760] = 1459, + [1761] = 1526, + [1762] = 1427, + [1763] = 1428, + [1764] = 1430, + [1765] = 1431, + [1766] = 1432, + [1767] = 1433, + [1768] = 1435, + [1769] = 1769, + [1770] = 1770, + [1771] = 1542, + [1772] = 1489, + [1773] = 1490, + [1774] = 1491, + [1775] = 1775, + [1776] = 1493, + [1777] = 438, + [1778] = 414, + [1779] = 424, + [1780] = 406, + [1781] = 412, + [1782] = 399, + [1783] = 1553, + [1784] = 1784, + [1785] = 1511, + [1786] = 410, + [1787] = 1573, + [1788] = 398, + [1789] = 421, + [1790] = 1556, + [1791] = 405, + [1792] = 1425, + [1793] = 1793, + [1794] = 1563, + [1795] = 1564, + [1796] = 1565, + [1797] = 1566, + [1798] = 1585, + [1799] = 1568, + [1800] = 1569, + [1801] = 1570, + [1802] = 1571, + [1803] = 1572, + [1804] = 1574, + [1805] = 1475, + [1806] = 1476, + [1807] = 401, + [1808] = 425, + [1809] = 1581, + [1810] = 417, + [1811] = 1448, + [1812] = 1508, + [1813] = 422, + [1814] = 423, + [1815] = 397, + [1816] = 409, + [1817] = 403, + [1818] = 400, + [1819] = 179, + [1820] = 183, + [1821] = 1553, + [1822] = 186, + [1823] = 1553, + [1824] = 188, + [1825] = 413, + [1826] = 1556, + [1827] = 190, + [1828] = 416, + [1829] = 1581, + [1830] = 1830, + [1831] = 1518, + [1832] = 1519, + [1833] = 215, + [1834] = 216, + [1835] = 1461, + [1836] = 1465, + [1837] = 1837, + [1838] = 1838, + [1839] = 1528, + [1840] = 1483, + [1841] = 1438, + [1842] = 1717, + [1843] = 1843, + [1844] = 1472, + [1845] = 1843, + [1846] = 1480, + [1847] = 1748, + [1848] = 1584, + [1849] = 1849, + [1850] = 1520, [1851] = 1851, - [1852] = 1852, + [1852] = 1436, [1853] = 1853, [1854] = 1854, - [1855] = 1855, - [1856] = 1510, - [1857] = 1785, - [1858] = 1511, + [1855] = 1439, + [1856] = 1784, + [1857] = 1503, + [1858] = 1858, [1859] = 1859, [1860] = 1860, [1861] = 1861, - [1862] = 1862, - [1863] = 1738, - [1864] = 1862, - [1865] = 1865, - [1866] = 1772, - [1867] = 1853, - [1868] = 1571, - [1869] = 1573, - [1870] = 1744, - [1871] = 1555, - [1872] = 1563, - [1873] = 1852, - [1874] = 1859, - [1875] = 1701, - [1876] = 1876, - [1877] = 1859, - [1878] = 1862, - [1879] = 1772, - [1880] = 1744, - [1881] = 1852, - [1882] = 1517, - [1883] = 1860, - [1884] = 1859, - [1885] = 1862, - [1886] = 1450, - [1887] = 1772, - [1888] = 1852, - [1889] = 1859, - [1890] = 1862, - [1891] = 1772, - [1892] = 1852, - [1893] = 1859, - [1894] = 1862, - [1895] = 1772, - [1896] = 1852, - [1897] = 1859, - [1898] = 1862, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1519, - [1903] = 1521, - [1904] = 1522, - [1905] = 1466, - [1906] = 1527, - [1907] = 1907, - [1908] = 1528, - [1909] = 1529, - [1910] = 1852, - [1911] = 1469, - [1912] = 1865, - [1913] = 1472, - [1914] = 1914, - [1915] = 1861, - [1916] = 1477, + [1862] = 1775, + [1863] = 1863, + [1864] = 1752, + [1865] = 1860, + [1866] = 1750, + [1867] = 1843, + [1868] = 1446, + [1869] = 1440, + [1870] = 1450, + [1871] = 1458, + [1872] = 1584, + [1873] = 1560, + [1874] = 1748, + [1875] = 1580, + [1876] = 1583, + [1877] = 1851, + [1878] = 1444, + [1879] = 1879, + [1880] = 1858, + [1881] = 1853, + [1882] = 1445, + [1883] = 1453, + [1884] = 1560, + [1885] = 1858, + [1886] = 1460, + [1887] = 1863, + [1888] = 1863, + [1889] = 1843, + [1890] = 1748, + [1891] = 1851, + [1892] = 1466, + [1893] = 1893, + [1894] = 1858, + [1895] = 1861, + [1896] = 1863, + [1897] = 1494, + [1898] = 1843, + [1899] = 1851, + [1900] = 1858, + [1901] = 1863, + [1902] = 1843, + [1903] = 1851, + [1904] = 1858, + [1905] = 1863, + [1906] = 1843, + [1907] = 1851, + [1908] = 1858, + [1909] = 1863, + [1910] = 1477, + [1911] = 1522, + [1912] = 1482, + [1913] = 1524, + [1914] = 1525, + [1915] = 1915, + [1916] = 1580, [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1917, + [1918] = 1851, + [1919] = 1470, + [1920] = 415, [1921] = 1921, [1922] = 1922, - [1923] = 1763, - [1924] = 1924, + [1923] = 1769, + [1924] = 1922, [1925] = 1925, [1926] = 1926, - [1927] = 1707, + [1927] = 1927, [1928] = 1928, [1929] = 1929, - [1930] = 1919, - [1931] = 1931, + [1930] = 1930, + [1931] = 1927, [1932] = 1932, - [1933] = 1928, - [1934] = 1907, + [1933] = 1933, + [1934] = 1930, [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1931, + [1936] = 1915, + [1937] = 1933, + [1938] = 1926, [1939] = 1939, [1940] = 1940, - [1941] = 1931, - [1942] = 1937, + [1941] = 1925, + [1942] = 1942, [1943] = 1943, - [1944] = 1924, - [1945] = 1945, - [1946] = 1922, - [1947] = 1932, - [1948] = 1925, - [1949] = 1949, - [1950] = 1926, - [1951] = 1921, - [1952] = 1918, - [1953] = 1936, + [1944] = 1917, + [1945] = 1940, + [1946] = 1935, + [1947] = 1921, + [1948] = 1948, + [1949] = 1927, + [1950] = 1950, + [1951] = 1951, + [1952] = 1928, + [1953] = 1943, [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1955, + [1955] = 1939, + [1956] = 1942, + [1957] = 1957, [1958] = 1958, - [1959] = 1954, - [1960] = 1958, - [1961] = 1956, + [1959] = 1959, + [1960] = 1960, + [1961] = 1959, [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 1965, + [1963] = 1962, + [1964] = 1960, + [1965] = 1958, [1966] = 1966, - [1967] = 1965, - [1968] = 1966, - [1969] = 1966, - [1970] = 1965, - [1971] = 1965, - [1972] = 1965, - [1973] = 1965, - [1974] = 1974, - [1975] = 1974, - [1976] = 149, - [1977] = 152, - [1978] = 1078, - [1979] = 1082, - [1980] = 1084, - [1981] = 1080, - [1982] = 1982, - [1983] = 1063, - [1984] = 1192, - [1985] = 1352, - [1986] = 1246, - [1987] = 1080, - [1988] = 1084, - [1989] = 1082, - [1990] = 1078, - [1991] = 1061, - [1992] = 1299, - [1993] = 1062, - [1994] = 1994, - [1995] = 1093, - [1996] = 1097, - [1997] = 1092, - [1998] = 1151, - [1999] = 1072, - [2000] = 1094, - [2001] = 2001, - [2002] = 2002, - [2003] = 1123, + [1967] = 1967, + [1968] = 1968, + [1969] = 1969, + [1970] = 1969, + [1971] = 1971, + [1972] = 1971, + [1973] = 1971, + [1974] = 1971, + [1975] = 1969, + [1976] = 1971, + [1977] = 1971, + [1978] = 1978, + [1979] = 1978, + [1980] = 186, + [1981] = 190, + [1982] = 1084, + [1983] = 1094, + [1984] = 1087, + [1985] = 1985, + [1986] = 1083, + [1987] = 1065, + [1988] = 1356, + [1989] = 1094, + [1990] = 1087, + [1991] = 1198, + [1992] = 1083, + [1993] = 1303, + [1994] = 1067, + [1995] = 1084, + [1996] = 1252, + [1997] = 1066, + [1998] = 1157, + [1999] = 1096, + [2000] = 1101, + [2001] = 1106, + [2002] = 1107, + [2003] = 1068, [2004] = 2004, - [2005] = 2002, - [2006] = 1125, - [2007] = 1085, - [2008] = 1126, - [2009] = 1087, - [2010] = 1086, - [2011] = 1090, - [2012] = 1247, - [2013] = 1562, + [2005] = 2005, + [2006] = 2005, + [2007] = 1132, + [2008] = 2008, + [2009] = 1086, + [2010] = 1091, + [2011] = 1085, + [2012] = 1093, + [2013] = 1129, [2014] = 2014, - [2015] = 1130, - [2016] = 1300, - [2017] = 2014, - [2018] = 200, - [2019] = 1194, - [2020] = 404, - [2021] = 1117, - [2022] = 402, - [2023] = 1353, - [2024] = 1119, - [2025] = 1193, - [2026] = 1129, - [2027] = 1152, - [2028] = 2004, - [2029] = 2014, - [2030] = 198, - [2031] = 1118, - [2032] = 2032, - [2033] = 1462, - [2034] = 1442, - [2035] = 1443, - [2036] = 1444, - [2037] = 1500, - [2038] = 1501, - [2039] = 1559, - [2040] = 1556, - [2041] = 2041, - [2042] = 1516, - [2043] = 1561, - [2044] = 1502, - [2045] = 1503, - [2046] = 1504, - [2047] = 1505, - [2048] = 1449, - [2049] = 2004, - [2050] = 1474, - [2051] = 1423, - [2052] = 1475, - [2053] = 1476, - [2054] = 1426, - [2055] = 2055, - [2056] = 1481, - [2057] = 1520, - [2058] = 1526, - [2059] = 1421, - [2060] = 1483, - [2061] = 1455, + [2015] = 1131, + [2016] = 1567, + [2017] = 1158, + [2018] = 1135, + [2019] = 2019, + [2020] = 1136, + [2021] = 1123, + [2022] = 1304, + [2023] = 2023, + [2024] = 1124, + [2025] = 1253, + [2026] = 1357, + [2027] = 413, + [2028] = 416, + [2029] = 1125, + [2030] = 2023, + [2031] = 1199, + [2032] = 215, + [2033] = 1200, + [2034] = 2023, + [2035] = 2014, + [2036] = 216, + [2037] = 1482, + [2038] = 1554, + [2039] = 1489, + [2040] = 1490, + [2041] = 1491, + [2042] = 1478, + [2043] = 2043, + [2044] = 1427, + [2045] = 1428, + [2046] = 1481, + [2047] = 1561, + [2048] = 2048, + [2049] = 1430, + [2050] = 1431, + [2051] = 1432, + [2052] = 1433, + [2053] = 1435, + [2054] = 1562, + [2055] = 1447, + [2056] = 1448, + [2057] = 1507, + [2058] = 1515, + [2059] = 1451, + [2060] = 1452, + [2061] = 1454, [2062] = 1456, - [2063] = 1458, - [2064] = 1459, - [2065] = 1461, - [2066] = 1507, - [2067] = 1463, - [2068] = 1465, - [2069] = 1448, - [2070] = 1506, - [2071] = 1132, - [2072] = 147, - [2073] = 2073, - [2074] = 2074, - [2075] = 151, - [2076] = 1155, - [2077] = 1153, + [2063] = 1508, + [2064] = 1457, + [2065] = 1459, + [2066] = 1473, + [2067] = 1509, + [2068] = 1477, + [2069] = 1511, + [2070] = 1474, + [2071] = 1475, + [2072] = 1476, + [2073] = 2014, + [2074] = 1521, + [2075] = 188, + [2076] = 183, + [2077] = 1201, [2078] = 2078, - [2079] = 1131, - [2080] = 1128, - [2081] = 1154, - [2082] = 1195, - [2083] = 1080, - [2084] = 2084, - [2085] = 1082, - [2086] = 1078, - [2087] = 2087, + [2079] = 2079, + [2080] = 2080, + [2081] = 1134, + [2082] = 1137, + [2083] = 1138, + [2084] = 1159, + [2085] = 1160, + [2086] = 1161, + [2087] = 1083, [2088] = 1084, - [2089] = 1082, - [2090] = 1084, - [2091] = 1080, - [2092] = 1082, - [2093] = 1080, - [2094] = 1078, - [2095] = 1084, - [2096] = 2096, - [2097] = 1982, - [2098] = 1078, - [2099] = 2099, - [2100] = 2100, - [2101] = 2101, - [2102] = 2102, + [2089] = 1084, + [2090] = 1094, + [2091] = 1087, + [2092] = 1084, + [2093] = 1083, + [2094] = 2094, + [2095] = 2095, + [2096] = 1094, + [2097] = 2097, + [2098] = 1087, + [2099] = 1985, + [2100] = 1083, + [2101] = 1087, + [2102] = 1094, [2103] = 2103, - [2104] = 2100, + [2104] = 2104, [2105] = 2105, - [2106] = 2105, - [2107] = 2103, - [2108] = 2108, + [2106] = 2106, + [2107] = 2105, + [2108] = 2106, [2109] = 2109, - [2110] = 392, - [2111] = 2111, + [2110] = 2110, + [2111] = 2104, [2112] = 2112, [2113] = 2113, [2114] = 2114, - [2115] = 1062, - [2116] = 2116, - [2117] = 2117, - [2118] = 2118, + [2115] = 2115, + [2116] = 1066, + [2117] = 1065, + [2118] = 2112, [2119] = 2119, - [2120] = 2120, + [2120] = 392, [2121] = 2121, - [2122] = 2117, - [2123] = 391, + [2122] = 2122, + [2123] = 2123, [2124] = 2124, - [2125] = 1061, - [2126] = 2126, - [2127] = 1078, - [2128] = 2128, - [2129] = 2121, - [2130] = 2130, - [2131] = 2131, - [2132] = 1082, - [2133] = 389, - [2134] = 2134, - [2135] = 2001, - [2136] = 2136, - [2137] = 1084, + [2125] = 2125, + [2126] = 393, + [2127] = 1094, + [2128] = 1084, + [2129] = 1083, + [2130] = 1087, + [2131] = 2125, + [2132] = 2132, + [2133] = 2133, + [2134] = 1067, + [2135] = 2135, + [2136] = 2133, + [2137] = 2137, [2138] = 2138, - [2139] = 2139, - [2140] = 390, + [2139] = 2008, + [2140] = 2140, [2141] = 2141, - [2142] = 2141, - [2143] = 2143, + [2142] = 2142, + [2143] = 2140, [2144] = 2144, - [2145] = 2145, - [2146] = 1080, - [2147] = 2144, - [2148] = 2128, - [2149] = 2118, - [2150] = 2143, + [2145] = 396, + [2146] = 2113, + [2147] = 2147, + [2148] = 394, + [2149] = 2115, + [2150] = 2121, [2151] = 2151, - [2152] = 393, - [2153] = 2120, - [2154] = 1063, - [2155] = 2114, + [2152] = 2138, + [2153] = 2153, + [2154] = 395, + [2155] = 2155, [2156] = 2156, [2157] = 2157, - [2158] = 2158, + [2158] = 2132, [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 2158, + [2162] = 2162, [2163] = 2163, [2164] = 2164, - [2165] = 411, - [2166] = 2164, - [2167] = 2167, + [2165] = 2165, + [2166] = 2166, + [2167] = 2163, [2168] = 2168, [2169] = 2169, [2170] = 2170, @@ -6164,227 +6192,227 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2175] = 2175, [2176] = 2176, [2177] = 2177, - [2178] = 2178, - [2179] = 2179, + [2178] = 2163, + [2179] = 2163, [2180] = 2180, [2181] = 2181, - [2182] = 2182, - [2183] = 2183, + [2182] = 2019, + [2183] = 415, [2184] = 2184, [2185] = 2185, - [2186] = 1072, + [2186] = 2186, [2187] = 2187, - [2188] = 2188, + [2188] = 2174, [2189] = 2189, - [2190] = 2190, + [2190] = 2008, [2191] = 2191, [2192] = 2192, - [2193] = 2001, + [2193] = 2193, [2194] = 2194, - [2195] = 2160, - [2196] = 2196, - [2197] = 2172, - [2198] = 2172, - [2199] = 2199, - [2200] = 2032, - [2201] = 2168, - [2202] = 2001, - [2203] = 2172, + [2195] = 2195, + [2196] = 2163, + [2197] = 2175, + [2198] = 2198, + [2199] = 2187, + [2200] = 2200, + [2201] = 2201, + [2202] = 2202, + [2203] = 2203, [2204] = 2204, - [2205] = 2205, + [2205] = 2170, [2206] = 2206, [2207] = 2207, [2208] = 2208, [2209] = 2209, - [2210] = 2172, + [2210] = 2008, [2211] = 2211, - [2212] = 2001, + [2212] = 2212, [2213] = 2213, - [2214] = 2214, + [2214] = 1068, [2215] = 2215, - [2216] = 1085, + [2216] = 2216, [2217] = 2217, - [2218] = 1093, - [2219] = 1097, + [2218] = 2218, + [2219] = 2219, [2220] = 2220, - [2221] = 2213, + [2221] = 2221, [2222] = 2222, - [2223] = 2220, + [2223] = 2223, [2224] = 2224, [2225] = 2225, [2226] = 2226, - [2227] = 2225, - [2228] = 2225, - [2229] = 1086, - [2230] = 2230, - [2231] = 2220, + [2227] = 2227, + [2228] = 2216, + [2229] = 2229, + [2230] = 1093, + [2231] = 1107, [2232] = 2232, - [2233] = 1094, - [2234] = 2217, - [2235] = 1090, + [2233] = 2233, + [2234] = 2220, + [2235] = 2235, [2236] = 2236, - [2237] = 1087, - [2238] = 2214, - [2239] = 2032, + [2237] = 2225, + [2238] = 2238, + [2239] = 2222, [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2241, - [2244] = 2215, + [2241] = 1086, + [2242] = 2008, + [2243] = 2227, + [2244] = 2218, [2245] = 2245, - [2246] = 2246, - [2247] = 2245, - [2248] = 2248, - [2249] = 2032, - [2250] = 2250, - [2251] = 2236, - [2252] = 2252, - [2253] = 2226, - [2254] = 2254, - [2255] = 2255, - [2256] = 2232, - [2257] = 2255, - [2258] = 2252, - [2259] = 2246, - [2260] = 1092, - [2261] = 2250, - [2262] = 2254, + [2246] = 2245, + [2247] = 2219, + [2248] = 2019, + [2249] = 2216, + [2250] = 1085, + [2251] = 2227, + [2252] = 2217, + [2253] = 2253, + [2254] = 2223, + [2255] = 1096, + [2256] = 1106, + [2257] = 2019, + [2258] = 1101, + [2259] = 2221, + [2260] = 2224, + [2261] = 2229, + [2262] = 1091, [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, + [2264] = 2238, + [2265] = 2253, + [2266] = 2263, [2267] = 2267, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 2269, + [2271] = 2268, [2272] = 2272, - [2273] = 2266, + [2273] = 2273, [2274] = 2274, [2275] = 2275, [2276] = 2276, [2277] = 2277, - [2278] = 2278, + [2278] = 2267, [2279] = 2279, [2280] = 2280, - [2281] = 2277, + [2281] = 2281, [2282] = 2282, [2283] = 2283, - [2284] = 2282, - [2285] = 2264, + [2284] = 2284, + [2285] = 2276, [2286] = 2286, [2287] = 2287, [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2289, - [2294] = 2280, + [2289] = 2269, + [2290] = 2019, + [2291] = 2284, + [2292] = 2287, + [2293] = 2293, + [2294] = 2282, [2295] = 2295, - [2296] = 2283, - [2297] = 2297, - [2298] = 2291, - [2299] = 2299, - [2300] = 2263, - [2301] = 2286, - [2302] = 2302, - [2303] = 2290, - [2304] = 2292, - [2305] = 2305, - [2306] = 2272, - [2307] = 2295, + [2296] = 2296, + [2297] = 2281, + [2298] = 2270, + [2299] = 2283, + [2300] = 2273, + [2301] = 2301, + [2302] = 2293, + [2303] = 2303, + [2304] = 2288, + [2305] = 2296, + [2306] = 2306, + [2307] = 2286, [2308] = 2308, - [2309] = 2032, - [2310] = 2305, - [2311] = 2268, - [2312] = 2275, - [2313] = 2313, - [2314] = 2302, - [2315] = 2267, - [2316] = 2316, - [2317] = 2317, + [2309] = 2309, + [2310] = 2310, + [2311] = 2311, + [2312] = 2312, + [2313] = 2306, + [2314] = 2303, + [2315] = 2315, + [2316] = 2272, + [2317] = 2310, [2318] = 2318, [2319] = 2319, - [2320] = 2320, + [2320] = 2301, [2321] = 2321, - [2322] = 2322, - [2323] = 2322, + [2322] = 2079, + [2323] = 2323, [2324] = 2324, [2325] = 2325, [2326] = 2326, [2327] = 2327, - [2328] = 2317, + [2328] = 2328, [2329] = 2329, [2330] = 2330, [2331] = 2331, - [2332] = 2318, + [2332] = 2332, [2333] = 2333, - [2334] = 2320, - [2335] = 2321, - [2336] = 2336, + [2334] = 2334, + [2335] = 2335, + [2336] = 2335, [2337] = 2337, - [2338] = 2338, + [2338] = 2337, [2339] = 2339, [2340] = 2340, - [2341] = 2324, + [2341] = 2341, [2342] = 2342, - [2343] = 2078, + [2343] = 2343, [2344] = 2344, - [2345] = 2331, - [2346] = 2346, - [2347] = 2347, - [2348] = 2348, + [2345] = 2345, + [2346] = 2323, + [2347] = 2324, + [2348] = 2327, [2349] = 2349, - [2350] = 2329, + [2350] = 2350, [2351] = 2351, - [2352] = 2337, - [2353] = 2353, - [2354] = 2324, - [2355] = 2355, - [2356] = 2346, - [2357] = 2357, - [2358] = 2319, - [2359] = 2359, + [2352] = 2328, + [2353] = 2326, + [2354] = 2351, + [2355] = 2339, + [2356] = 2340, + [2357] = 2321, + [2358] = 2341, + [2359] = 2342, [2360] = 2360, - [2361] = 2361, - [2362] = 2340, - [2363] = 2349, - [2364] = 2336, - [2365] = 2342, - [2366] = 2347, - [2367] = 2351, - [2368] = 2368, - [2369] = 2326, - [2370] = 2353, + [2361] = 2344, + [2362] = 2362, + [2363] = 2363, + [2364] = 2362, + [2365] = 2365, + [2366] = 2328, + [2367] = 2330, + [2368] = 2325, + [2369] = 2331, + [2370] = 2370, [2371] = 2371, - [2372] = 2333, - [2373] = 2357, - [2374] = 2359, - [2375] = 2375, + [2372] = 2349, + [2373] = 2373, + [2374] = 2374, + [2375] = 2333, [2376] = 2376, - [2377] = 2377, - [2378] = 2378, - [2379] = 2379, + [2377] = 2373, + [2378] = 2329, + [2379] = 183, [2380] = 2380, - [2381] = 147, - [2382] = 2378, + [2381] = 1138, + [2382] = 2097, [2383] = 2383, - [2384] = 149, - [2385] = 2377, - [2386] = 151, + [2384] = 1160, + [2385] = 1161, + [2386] = 2386, [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 1195, + [2390] = 2390, [2391] = 2391, - [2392] = 2380, - [2393] = 2379, - [2394] = 2087, - [2395] = 2395, + [2392] = 2392, + [2393] = 2094, + [2394] = 2394, + [2395] = 1201, [2396] = 2396, - [2397] = 1128, - [2398] = 2383, + [2397] = 2397, + [2398] = 2398, [2399] = 2399, [2400] = 2400, [2401] = 2401, @@ -6392,188 +6420,188 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2403] = 2403, [2404] = 2404, [2405] = 2405, - [2406] = 2406, + [2406] = 2387, [2407] = 2407, [2408] = 2408, - [2409] = 2376, + [2409] = 2409, [2410] = 2410, - [2411] = 2411, + [2411] = 2389, [2412] = 2412, - [2413] = 2410, - [2414] = 2411, - [2415] = 152, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, [2416] = 2416, [2417] = 2417, - [2418] = 2379, - [2419] = 2419, + [2418] = 2418, + [2419] = 2380, [2420] = 2420, [2421] = 2421, [2422] = 2422, - [2423] = 2423, + [2423] = 2391, [2424] = 2424, [2425] = 2425, - [2426] = 2383, - [2427] = 2375, - [2428] = 2420, - [2429] = 2404, - [2430] = 2074, - [2431] = 2431, - [2432] = 2416, - [2433] = 2433, - [2434] = 2399, - [2435] = 2433, - [2436] = 2407, - [2437] = 2417, - [2438] = 2423, - [2439] = 2439, - [2440] = 2440, - [2441] = 1132, + [2426] = 2408, + [2427] = 2421, + [2428] = 190, + [2429] = 2429, + [2430] = 2394, + [2431] = 2403, + [2432] = 2432, + [2433] = 2397, + [2434] = 2410, + [2435] = 2435, + [2436] = 2408, + [2437] = 2437, + [2438] = 2438, + [2439] = 2407, + [2440] = 2388, + [2441] = 2401, [2442] = 2442, - [2443] = 2443, - [2444] = 2444, - [2445] = 2431, - [2446] = 2446, - [2447] = 2388, - [2448] = 2439, - [2449] = 1153, - [2450] = 2425, - [2451] = 2380, - [2452] = 2433, - [2453] = 2402, - [2454] = 2444, - [2455] = 2387, - [2456] = 2395, - [2457] = 2412, - [2458] = 2443, - [2459] = 2459, - [2460] = 2422, - [2461] = 2396, - [2462] = 1131, - [2463] = 2389, - [2464] = 2383, - [2465] = 2096, - [2466] = 2421, - [2467] = 2424, - [2468] = 1154, - [2469] = 2469, - [2470] = 1155, - [2471] = 2401, - [2472] = 2419, - [2473] = 2406, - [2474] = 2380, - [2475] = 2442, + [2443] = 2408, + [2444] = 2400, + [2445] = 2383, + [2446] = 1137, + [2447] = 2078, + [2448] = 2448, + [2449] = 2429, + [2450] = 2383, + [2451] = 2425, + [2452] = 2404, + [2453] = 2412, + [2454] = 2437, + [2455] = 2386, + [2456] = 2420, + [2457] = 2448, + [2458] = 2435, + [2459] = 2392, + [2460] = 2438, + [2461] = 2398, + [2462] = 2462, + [2463] = 2418, + [2464] = 2402, + [2465] = 186, + [2466] = 1159, + [2467] = 2422, + [2468] = 2388, + [2469] = 2424, + [2470] = 2414, + [2471] = 2389, + [2472] = 1134, + [2473] = 188, + [2474] = 2462, + [2475] = 2415, [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2479, + [2477] = 2476, + [2478] = 2383, + [2479] = 2413, [2480] = 2480, [2481] = 2481, [2482] = 2482, - [2483] = 1056, + [2483] = 2483, [2484] = 2484, [2485] = 2485, [2486] = 2486, [2487] = 2487, - [2488] = 1102, + [2488] = 2488, [2489] = 2489, [2490] = 2490, - [2491] = 1192, - [2492] = 1246, - [2493] = 1299, + [2491] = 1060, + [2492] = 2492, + [2493] = 2493, [2494] = 2494, - [2495] = 1352, + [2495] = 2495, [2496] = 2496, - [2497] = 2497, - [2498] = 2498, + [2497] = 1102, + [2498] = 1198, [2499] = 2499, [2500] = 2500, - [2501] = 2501, - [2502] = 2502, - [2503] = 2503, + [2501] = 1252, + [2502] = 1303, + [2503] = 1356, [2504] = 2504, [2505] = 2505, [2506] = 2506, [2507] = 2507, - [2508] = 1099, + [2508] = 2508, [2509] = 2509, [2510] = 2510, [2511] = 2511, [2512] = 2512, - [2513] = 2498, + [2513] = 2513, [2514] = 2514, [2515] = 2515, [2516] = 2516, - [2517] = 2512, + [2517] = 1103, [2518] = 2518, - [2519] = 2487, - [2520] = 2516, - [2521] = 2478, + [2519] = 2519, + [2520] = 2519, + [2521] = 2521, [2522] = 2522, - [2523] = 2499, + [2523] = 2522, [2524] = 2524, - [2525] = 1103, + [2525] = 2496, [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2514, - [2530] = 2515, - [2531] = 2531, + [2527] = 2526, + [2528] = 2487, + [2529] = 2481, + [2530] = 2530, + [2531] = 2505, [2532] = 2532, - [2533] = 2518, - [2534] = 2528, + [2533] = 2533, + [2534] = 1105, [2535] = 2535, [2536] = 2536, - [2537] = 2532, - [2538] = 2489, - [2539] = 2494, - [2540] = 2503, - [2541] = 2507, - [2542] = 2498, - [2543] = 2515, - [2544] = 2516, - [2545] = 2478, - [2546] = 2546, - [2547] = 2526, - [2548] = 2548, - [2549] = 2516, - [2550] = 2535, - [2551] = 2551, - [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 2479, - [2556] = 2556, - [2557] = 2557, - [2558] = 2526, - [2559] = 2509, - [2560] = 2560, - [2561] = 2099, - [2562] = 2562, - [2563] = 2102, - [2564] = 2564, + [2537] = 2537, + [2538] = 2538, + [2539] = 2539, + [2540] = 2483, + [2541] = 2530, + [2542] = 2539, + [2543] = 2543, + [2544] = 2544, + [2545] = 2482, + [2546] = 2499, + [2547] = 2504, + [2548] = 2509, + [2549] = 2513, + [2550] = 2519, + [2551] = 2521, + [2552] = 2521, + [2553] = 2526, + [2554] = 2487, + [2555] = 2532, + [2556] = 2526, + [2557] = 2543, + [2558] = 2558, + [2559] = 2559, + [2560] = 2486, + [2561] = 2561, + [2562] = 2532, + [2563] = 2563, + [2564] = 2516, [2565] = 2565, - [2566] = 2566, + [2566] = 2109, [2567] = 2567, - [2568] = 2527, - [2569] = 2531, - [2570] = 2478, - [2571] = 2510, - [2572] = 2572, + [2568] = 2568, + [2569] = 2569, + [2570] = 2110, + [2571] = 2571, + [2572] = 2533, [2573] = 2573, - [2574] = 2507, - [2575] = 2510, - [2576] = 1098, - [2577] = 2577, - [2578] = 2536, - [2579] = 2579, - [2580] = 2579, - [2581] = 2479, - [2582] = 2522, - [2583] = 2515, - [2584] = 2477, - [2585] = 2585, - [2586] = 2586, - [2587] = 2587, + [2574] = 2574, + [2575] = 2487, + [2576] = 2538, + [2577] = 2535, + [2578] = 2578, + [2579] = 2537, + [2580] = 2538, + [2581] = 1100, + [2582] = 2582, + [2583] = 2486, + [2584] = 2513, + [2585] = 2544, + [2586] = 2521, + [2587] = 2582, [2588] = 2588, [2589] = 2589, [2590] = 2590, @@ -6589,264 +6617,264 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2600] = 2600, [2601] = 2601, [2602] = 2602, - [2603] = 2601, - [2604] = 2604, - [2605] = 2605, + [2603] = 2603, + [2604] = 2590, + [2605] = 2592, [2606] = 2606, [2607] = 2607, [2608] = 2608, [2609] = 2609, [2610] = 2610, - [2611] = 2593, + [2611] = 2611, [2612] = 2612, [2613] = 2613, [2614] = 2614, [2615] = 2615, [2616] = 2616, - [2617] = 2617, - [2618] = 2592, - [2619] = 2597, - [2620] = 2607, - [2621] = 2608, + [2617] = 2601, + [2618] = 2607, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, [2622] = 2622, [2623] = 2623, [2624] = 2624, [2625] = 2625, - [2626] = 2589, + [2626] = 2626, [2627] = 2627, [2628] = 2628, [2629] = 2629, - [2630] = 2605, + [2630] = 2630, [2631] = 2631, [2632] = 2632, [2633] = 2633, [2634] = 2634, [2635] = 2635, - [2636] = 2636, + [2636] = 2614, [2637] = 2637, - [2638] = 2599, + [2638] = 2638, [2639] = 2639, - [2640] = 2631, - [2641] = 2641, + [2640] = 2640, + [2641] = 171, [2642] = 2642, [2643] = 2643, - [2644] = 2627, - [2645] = 2610, - [2646] = 2616, + [2644] = 2619, + [2645] = 2645, + [2646] = 2646, [2647] = 2647, - [2648] = 2642, + [2648] = 2648, [2649] = 2649, - [2650] = 2635, - [2651] = 2595, + [2650] = 2637, + [2651] = 2651, [2652] = 2652, [2653] = 2653, - [2654] = 2654, - [2655] = 2604, - [2656] = 2606, - [2657] = 2643, - [2658] = 2658, - [2659] = 2659, + [2654] = 2593, + [2655] = 170, + [2656] = 2656, + [2657] = 2625, + [2658] = 2626, + [2659] = 2645, [2660] = 2660, - [2661] = 2661, - [2662] = 2662, + [2661] = 2620, + [2662] = 2122, [2663] = 2663, - [2664] = 2659, - [2665] = 2665, - [2666] = 2666, + [2664] = 2123, + [2665] = 2135, + [2666] = 2137, [2667] = 2667, - [2668] = 2668, - [2669] = 2669, - [2670] = 2670, + [2668] = 2609, + [2669] = 2600, + [2670] = 2589, [2671] = 2671, - [2672] = 2671, - [2673] = 2673, + [2672] = 2672, + [2673] = 2642, [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2637, - [2679] = 182, - [2680] = 2680, + [2675] = 2660, + [2676] = 2663, + [2677] = 2667, + [2678] = 2678, + [2679] = 2671, + [2680] = 2672, [2681] = 2681, - [2682] = 2112, - [2683] = 2622, - [2684] = 2124, - [2685] = 2108, - [2686] = 2136, - [2687] = 2660, - [2688] = 2662, - [2689] = 2665, - [2690] = 2690, - [2691] = 2661, - [2692] = 2674, - [2693] = 2653, - [2694] = 2639, - [2695] = 2695, + [2682] = 2682, + [2683] = 2656, + [2684] = 2638, + [2685] = 2647, + [2686] = 2686, + [2687] = 2687, + [2688] = 2639, + [2689] = 2595, + [2690] = 2678, + [2691] = 2691, + [2692] = 2692, + [2693] = 2693, + [2694] = 2694, + [2695] = 2589, [2696] = 2696, - [2697] = 2649, - [2698] = 2632, - [2699] = 2699, - [2700] = 2633, - [2701] = 2598, - [2702] = 2599, - [2703] = 2600, - [2704] = 2704, - [2705] = 2601, - [2706] = 2602, - [2707] = 2609, - [2708] = 2625, - [2709] = 2593, + [2697] = 2598, + [2698] = 2608, + [2699] = 2623, + [2700] = 2615, + [2701] = 2701, + [2702] = 2702, + [2703] = 2703, + [2704] = 2600, + [2705] = 2616, + [2706] = 2681, + [2707] = 2621, + [2708] = 2691, + [2709] = 2610, [2710] = 2710, - [2711] = 2612, - [2712] = 2613, - [2713] = 2614, - [2714] = 2592, - [2715] = 2597, - [2716] = 2607, - [2717] = 2608, - [2718] = 2623, - [2719] = 2719, - [2720] = 2589, - [2721] = 2627, - [2722] = 2628, - [2723] = 2676, - [2724] = 2631, - [2725] = 2632, - [2726] = 2633, - [2727] = 2663, - [2728] = 2641, - [2729] = 2729, - [2730] = 2595, - [2731] = 2600, + [2711] = 2621, + [2712] = 2712, + [2713] = 2628, + [2714] = 2629, + [2715] = 2630, + [2716] = 2648, + [2717] = 2649, + [2718] = 2718, + [2719] = 2701, + [2720] = 2660, + [2721] = 2663, + [2722] = 2667, + [2723] = 2671, + [2724] = 2656, + [2725] = 2647, + [2726] = 2686, + [2727] = 2687, + [2728] = 2639, + [2729] = 2678, + [2730] = 2691, + [2731] = 2694, [2732] = 2732, - [2733] = 2663, - [2734] = 2734, - [2735] = 2666, - [2736] = 2667, - [2737] = 2668, - [2738] = 2738, - [2739] = 2680, - [2740] = 2681, - [2741] = 2598, - [2742] = 2599, - [2743] = 2600, - [2744] = 2601, - [2745] = 2593, - [2746] = 2612, - [2747] = 2613, - [2748] = 2614, - [2749] = 2592, - [2750] = 2597, - [2751] = 2607, - [2752] = 2589, - [2753] = 2627, - [2754] = 2631, - [2755] = 2633, - [2756] = 2641, - [2757] = 183, - [2758] = 2663, - [2759] = 2600, - [2760] = 2601, - [2761] = 2641, - [2762] = 2612, - [2763] = 2597, - [2764] = 2607, - [2765] = 2589, - [2766] = 2627, - [2767] = 2631, - [2768] = 2633, + [2733] = 2632, + [2734] = 2702, + [2735] = 2600, + [2736] = 2736, + [2737] = 2656, + [2738] = 2702, + [2739] = 2621, + [2740] = 2667, + [2741] = 2671, + [2742] = 2647, + [2743] = 2678, + [2744] = 2691, + [2745] = 2745, + [2746] = 2694, + [2747] = 2589, + [2748] = 2623, + [2749] = 2702, + [2750] = 2647, + [2751] = 2667, + [2752] = 2678, + [2753] = 2623, + [2754] = 2702, + [2755] = 2755, + [2756] = 2756, + [2757] = 2757, + [2758] = 2758, + [2759] = 2623, + [2760] = 2702, + [2761] = 2761, + [2762] = 2686, + [2763] = 2693, + [2764] = 2686, + [2765] = 2598, + [2766] = 2606, + [2767] = 2767, + [2768] = 2768, [2769] = 2769, - [2770] = 2600, - [2771] = 2597, - [2772] = 2631, - [2773] = 2633, - [2774] = 2774, + [2770] = 2770, + [2771] = 2687, + [2772] = 2687, + [2773] = 2770, + [2774] = 2603, [2775] = 2775, - [2776] = 2623, + [2776] = 2776, [2777] = 2777, - [2778] = 2613, - [2779] = 2779, - [2780] = 2631, - [2781] = 2633, - [2782] = 2680, - [2783] = 2609, - [2784] = 2784, - [2785] = 2605, - [2786] = 2786, - [2787] = 2704, - [2788] = 2681, - [2789] = 2789, - [2790] = 2628, - [2791] = 2791, - [2792] = 2614, - [2793] = 2791, - [2794] = 2131, - [2795] = 2634, - [2796] = 2139, - [2797] = 2151, + [2778] = 2648, + [2779] = 2142, + [2780] = 2780, + [2781] = 2628, + [2782] = 2153, + [2783] = 2156, + [2784] = 2157, + [2785] = 2681, + [2786] = 2672, + [2787] = 2613, + [2788] = 2745, + [2789] = 2629, + [2790] = 2590, + [2791] = 2630, + [2792] = 2592, + [2793] = 2674, + [2794] = 2151, + [2795] = 2155, + [2796] = 2159, + [2797] = 2703, [2798] = 2798, - [2799] = 2799, - [2800] = 2800, - [2801] = 2109, - [2802] = 2666, - [2803] = 2610, - [2804] = 2616, - [2805] = 2156, - [2806] = 2667, - [2807] = 2690, - [2808] = 2668, - [2809] = 2126, - [2810] = 2145, - [2811] = 2116, - [2812] = 2699, - [2813] = 2799, - [2814] = 2729, - [2815] = 2585, - [2816] = 2816, - [2817] = 2817, - [2818] = 2800, - [2819] = 2817, - [2820] = 2784, - [2821] = 2654, - [2822] = 2609, - [2823] = 2609, - [2824] = 2824, - [2825] = 2605, - [2826] = 2791, - [2827] = 2598, - [2828] = 2612, - [2829] = 2605, - [2830] = 2791, - [2831] = 2673, - [2832] = 2732, - [2833] = 2833, - [2834] = 2586, - [2835] = 2789, - [2836] = 2636, - [2837] = 2629, - [2838] = 2838, - [2839] = 2615, - [2840] = 2670, - [2841] = 2696, - [2842] = 2602, - [2843] = 2632, - [2844] = 2624, - [2845] = 2675, - [2846] = 2846, - [2847] = 2847, - [2848] = 2848, - [2849] = 2849, + [2799] = 2114, + [2800] = 2643, + [2801] = 2639, + [2802] = 2802, + [2803] = 2678, + [2804] = 2780, + [2805] = 2591, + [2806] = 2691, + [2807] = 2692, + [2808] = 2692, + [2809] = 2693, + [2810] = 2769, + [2811] = 2811, + [2812] = 2812, + [2813] = 2681, + [2814] = 2681, + [2815] = 2798, + [2816] = 2649, + [2817] = 2598, + [2818] = 2694, + [2819] = 2663, + [2820] = 2633, + [2821] = 2770, + [2822] = 2758, + [2823] = 2775, + [2824] = 2598, + [2825] = 2694, + [2826] = 2770, + [2827] = 2671, + [2828] = 2597, + [2829] = 2589, + [2830] = 2667, + [2831] = 2610, + [2832] = 2696, + [2833] = 2611, + [2834] = 2696, + [2835] = 2835, + [2836] = 2836, + [2837] = 2812, + [2838] = 2612, + [2839] = 2836, + [2840] = 2623, + [2841] = 2594, + [2842] = 2660, + [2843] = 2701, + [2844] = 2702, + [2845] = 2701, + [2846] = 2768, + [2847] = 2653, + [2848] = 2634, + [2849] = 2623, [2850] = 2850, [2851] = 2851, - [2852] = 2176, + [2852] = 2852, [2853] = 2853, [2854] = 2854, [2855] = 2855, [2856] = 2856, [2857] = 2857, - [2858] = 2194, + [2858] = 2858, [2859] = 2859, - [2860] = 2199, + [2860] = 2860, [2861] = 2861, [2862] = 2862, [2863] = 2863, @@ -6855,303 +6883,303 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2866] = 2866, [2867] = 2867, [2868] = 2868, - [2869] = 2209, - [2870] = 2157, + [2869] = 2869, + [2870] = 2206, [2871] = 2871, [2872] = 2872, - [2873] = 2190, + [2873] = 2873, [2874] = 2874, - [2875] = 2187, - [2876] = 2876, + [2875] = 2875, + [2876] = 2184, [2877] = 2877, - [2878] = 2850, + [2878] = 2878, [2879] = 2879, - [2880] = 2880, + [2880] = 2207, [2881] = 2881, - [2882] = 2882, + [2882] = 2186, [2883] = 2883, - [2884] = 2884, - [2885] = 2885, - [2886] = 170, + [2884] = 2201, + [2885] = 2204, + [2886] = 2886, [2887] = 2887, [2888] = 2888, [2889] = 2889, - [2890] = 2879, + [2890] = 2890, [2891] = 2891, - [2892] = 2884, - [2893] = 2893, + [2892] = 2892, + [2893] = 2886, [2894] = 2894, [2895] = 2895, [2896] = 2896, - [2897] = 2851, + [2897] = 2897, [2898] = 2898, [2899] = 2899, [2900] = 2900, [2901] = 2901, [2902] = 2902, [2903] = 2903, - [2904] = 2904, + [2904] = 2877, [2905] = 2905, [2906] = 2906, - [2907] = 2874, + [2907] = 2907, [2908] = 2908, [2909] = 2909, - [2910] = 2910, + [2910] = 415, [2911] = 2911, [2912] = 2912, [2913] = 2913, [2914] = 2914, [2915] = 2915, [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2868, + [2917] = 2854, + [2918] = 2850, + [2919] = 2919, [2920] = 2920, - [2921] = 2921, + [2921] = 2871, [2922] = 2922, [2923] = 2923, [2924] = 2924, [2925] = 2925, [2926] = 2926, [2927] = 2927, - [2928] = 2928, + [2928] = 2874, [2929] = 2929, - [2930] = 2885, - [2931] = 2889, - [2932] = 2182, - [2933] = 2204, + [2930] = 2929, + [2931] = 2888, + [2932] = 2932, + [2933] = 2933, [2934] = 2934, - [2935] = 2846, + [2935] = 2935, [2936] = 2936, - [2937] = 2181, + [2937] = 2937, [2938] = 2938, [2939] = 2939, - [2940] = 2940, + [2940] = 2891, [2941] = 2941, - [2942] = 2903, + [2942] = 2942, [2943] = 2943, - [2944] = 2173, - [2945] = 2945, - [2946] = 2180, + [2944] = 2916, + [2945] = 2195, + [2946] = 2208, [2947] = 2947, - [2948] = 2948, - [2949] = 2949, - [2950] = 2208, - [2951] = 2948, - [2952] = 2952, - [2953] = 2953, + [2948] = 2173, + [2949] = 2878, + [2950] = 2185, + [2951] = 2169, + [2952] = 2164, + [2953] = 2211, [2954] = 2954, - [2955] = 2171, - [2956] = 2956, + [2955] = 2172, + [2956] = 2176, [2957] = 2957, [2958] = 2958, - [2959] = 2959, + [2959] = 2177, [2960] = 2960, - [2961] = 2945, + [2961] = 2961, [2962] = 2962, - [2963] = 2963, - [2964] = 2943, + [2963] = 2202, + [2964] = 2964, [2965] = 2965, - [2966] = 2920, - [2967] = 2967, + [2966] = 2966, + [2967] = 2180, [2968] = 2968, - [2969] = 2969, - [2970] = 2939, + [2969] = 2852, + [2970] = 2970, [2971] = 2971, [2972] = 2972, [2973] = 2973, - [2974] = 2936, - [2975] = 2888, + [2974] = 2879, + [2975] = 2975, [2976] = 2976, - [2977] = 2977, + [2977] = 2933, [2978] = 2978, - [2979] = 2929, + [2979] = 2890, [2980] = 2980, - [2981] = 2183, - [2982] = 2853, + [2981] = 2981, + [2982] = 2982, [2983] = 2983, - [2984] = 2871, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2978, + [2984] = 2933, + [2985] = 2853, + [2986] = 179, + [2987] = 2926, + [2988] = 2988, [2989] = 2989, - [2990] = 2167, - [2991] = 2877, + [2990] = 2990, + [2991] = 2991, [2992] = 2992, - [2993] = 2855, - [2994] = 2994, - [2995] = 2859, + [2993] = 2993, + [2994] = 2857, + [2995] = 2860, [2996] = 2862, [2997] = 2863, [2998] = 2998, [2999] = 2999, [3000] = 3000, - [3001] = 2936, - [3002] = 2898, - [3003] = 2899, - [3004] = 3004, - [3005] = 2906, - [3006] = 2908, - [3007] = 2910, - [3008] = 2911, - [3009] = 2889, - [3010] = 3010, - [3011] = 2855, - [3012] = 2179, - [3013] = 3013, + [3001] = 2209, + [3002] = 2896, + [3003] = 2897, + [3004] = 2903, + [3005] = 2905, + [3006] = 3006, + [3007] = 2906, + [3008] = 2907, + [3009] = 2855, + [3010] = 2929, + [3011] = 2934, + [3012] = 2942, + [3013] = 2933, [3014] = 3014, - [3015] = 2846, - [3016] = 2881, + [3015] = 3015, + [3016] = 3016, [3017] = 3017, - [3018] = 3018, - [3019] = 3019, - [3020] = 3020, - [3021] = 2978, - [3022] = 3022, + [3018] = 2927, + [3019] = 2947, + [3020] = 2990, + [3021] = 3021, + [3022] = 2943, [3023] = 3023, - [3024] = 2898, - [3025] = 2899, - [3026] = 3026, + [3024] = 2939, + [3025] = 3025, + [3026] = 2919, [3027] = 3027, - [3028] = 2889, - [3029] = 3029, - [3030] = 2927, - [3031] = 2872, - [3032] = 2936, - [3033] = 3033, - [3034] = 3034, - [3035] = 411, - [3036] = 2918, - [3037] = 2211, - [3038] = 3010, - [3039] = 2896, - [3040] = 3040, + [3028] = 2896, + [3029] = 2897, + [3030] = 2929, + [3031] = 3031, + [3032] = 3032, + [3033] = 2933, + [3034] = 2934, + [3035] = 3035, + [3036] = 3036, + [3037] = 2894, + [3038] = 3038, + [3039] = 3039, + [3040] = 3035, [3041] = 3041, - [3042] = 2956, - [3043] = 2987, - [3044] = 2957, - [3045] = 3045, - [3046] = 2188, - [3047] = 2189, - [3048] = 2898, - [3049] = 2862, - [3050] = 2899, + [3042] = 3042, + [3043] = 3043, + [3044] = 3044, + [3045] = 2990, + [3046] = 3046, + [3047] = 2896, + [3048] = 2897, + [3049] = 3031, + [3050] = 2862, [3051] = 2863, - [3052] = 2978, - [3053] = 3053, - [3054] = 2900, - [3055] = 3055, + [3052] = 2957, + [3053] = 2898, + [3054] = 3054, + [3055] = 2958, [3056] = 3056, - [3057] = 2901, - [3058] = 2927, + [3057] = 2983, + [3058] = 3058, [3059] = 3059, [3060] = 3060, - [3061] = 3061, + [3061] = 2881, [3062] = 3062, - [3063] = 3063, - [3064] = 3064, - [3065] = 2170, - [3066] = 3066, + [3063] = 2892, + [3064] = 2899, + [3065] = 2972, + [3066] = 2901, [3067] = 2902, - [3068] = 2859, - [3069] = 2904, + [3068] = 3068, + [3069] = 3069, [3070] = 3070, - [3071] = 2847, - [3072] = 3072, - [3073] = 3073, - [3074] = 2865, - [3075] = 3075, - [3076] = 2174, - [3077] = 2175, - [3078] = 3034, - [3079] = 2906, - [3080] = 3018, - [3081] = 2926, - [3082] = 3082, - [3083] = 3083, - [3084] = 2908, - [3085] = 2905, - [3086] = 2177, - [3087] = 2987, - [3088] = 2967, - [3089] = 2178, - [3090] = 3090, - [3091] = 3091, - [3092] = 2196, - [3093] = 2205, - [3094] = 2191, - [3095] = 2922, - [3096] = 2910, - [3097] = 2953, - [3098] = 2911, + [3071] = 3071, + [3072] = 2865, + [3073] = 2973, + [3074] = 3074, + [3075] = 2903, + [3076] = 3076, + [3077] = 2988, + [3078] = 2161, + [3079] = 2191, + [3080] = 2905, + [3081] = 3081, + [3082] = 2990, + [3083] = 2213, + [3084] = 3084, + [3085] = 3085, + [3086] = 2165, + [3087] = 3087, + [3088] = 2906, + [3089] = 3089, + [3090] = 2907, + [3091] = 2215, + [3092] = 2162, + [3093] = 2203, + [3094] = 2181, + [3095] = 3095, + [3096] = 2193, + [3097] = 2989, + [3098] = 3098, [3099] = 3099, - [3100] = 2163, - [3101] = 3101, - [3102] = 2206, - [3103] = 2161, - [3104] = 2940, - [3105] = 2866, - [3106] = 2968, - [3107] = 2169, - [3108] = 2184, - [3109] = 3109, - [3110] = 2912, - [3111] = 2913, - [3112] = 3062, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 3017, + [3100] = 2171, + [3101] = 2908, + [3102] = 2868, + [3103] = 2909, + [3104] = 2192, + [3105] = 3105, + [3106] = 2932, + [3107] = 2872, + [3108] = 2189, + [3109] = 2212, + [3110] = 2168, + [3111] = 3111, + [3112] = 2976, + [3113] = 3044, + [3114] = 2924, + [3115] = 2198, + [3116] = 3098, + [3117] = 3117, [3118] = 3118, - [3119] = 2925, - [3120] = 3060, - [3121] = 3121, + [3119] = 2857, + [3120] = 3076, + [3121] = 2915, [3122] = 3122, - [3123] = 3064, - [3124] = 3061, + [3123] = 2911, + [3124] = 3058, [3125] = 3125, - [3126] = 2959, - [3127] = 2882, - [3128] = 3128, - [3129] = 2914, - [3130] = 2915, - [3131] = 2960, - [3132] = 2207, - [3133] = 2849, + [3126] = 3126, + [3127] = 3127, + [3128] = 2912, + [3129] = 3059, + [3130] = 2200, + [3131] = 2961, + [3132] = 3132, + [3133] = 3133, [3134] = 3134, [3135] = 2962, - [3136] = 3020, - [3137] = 2916, - [3138] = 3138, + [3136] = 2922, + [3137] = 2983, + [3138] = 2923, [3139] = 3139, - [3140] = 2159, - [3141] = 2963, - [3142] = 3142, - [3143] = 2938, - [3144] = 2947, - [3145] = 3116, - [3146] = 2985, - [3147] = 2867, - [3148] = 3045, - [3149] = 2965, - [3150] = 2934, - [3151] = 3013, - [3152] = 3152, - [3153] = 2891, - [3154] = 2986, - [3155] = 2936, - [3156] = 3156, - [3157] = 3157, - [3158] = 3158, - [3159] = 3159, + [3140] = 3016, + [3141] = 2964, + [3142] = 2883, + [3143] = 2920, + [3144] = 3144, + [3145] = 3087, + [3146] = 2988, + [3147] = 2954, + [3148] = 2965, + [3149] = 3149, + [3150] = 3144, + [3151] = 3151, + [3152] = 2900, + [3153] = 3126, + [3154] = 3154, + [3155] = 2968, + [3156] = 2938, + [3157] = 2913, + [3158] = 2873, + [3159] = 2860, [3160] = 3160, [3161] = 3161, - [3162] = 3072, + [3162] = 3162, [3163] = 3163, [3164] = 3164, - [3165] = 3073, + [3165] = 3165, [3166] = 3166, [3167] = 3167, [3168] = 3168, @@ -7160,295 +7188,295 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3171] = 3171, [3172] = 3172, [3173] = 3173, - [3174] = 3161, + [3174] = 3174, [3175] = 3175, - [3176] = 3164, + [3176] = 3176, [3177] = 3177, [3178] = 3178, [3179] = 3179, [3180] = 3180, - [3181] = 3181, - [3182] = 3182, + [3181] = 3176, + [3182] = 3175, [3183] = 3183, [3184] = 3184, [3185] = 3185, [3186] = 3186, [3187] = 3187, [3188] = 3188, - [3189] = 3189, - [3190] = 3190, + [3189] = 3183, + [3190] = 1508, [3191] = 3191, [3192] = 3192, [3193] = 3193, [3194] = 3194, [3195] = 3195, - [3196] = 3169, + [3196] = 3162, [3197] = 3197, - [3198] = 3160, - [3199] = 3170, - [3200] = 3200, + [3198] = 3198, + [3199] = 3199, + [3200] = 3165, [3201] = 3171, - [3202] = 3166, + [3202] = 3202, [3203] = 3203, [3204] = 3204, - [3205] = 3169, - [3206] = 3206, + [3205] = 3184, + [3206] = 3191, [3207] = 3207, - [3208] = 3173, - [3209] = 3209, - [3210] = 3160, - [3211] = 3211, - [3212] = 3179, + [3208] = 3208, + [3209] = 3203, + [3210] = 3210, + [3211] = 3187, + [3212] = 3212, [3213] = 3213, [3214] = 3214, [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, + [3216] = 3177, + [3217] = 3069, + [3218] = 3071, [3219] = 3219, [3220] = 3220, - [3221] = 3164, + [3221] = 3221, [3222] = 3222, - [3223] = 3223, - [3224] = 3170, + [3223] = 3175, + [3224] = 3183, [3225] = 3225, - [3226] = 3173, - [3227] = 3161, - [3228] = 3175, - [3229] = 3229, + [3226] = 3170, + [3227] = 3170, + [3228] = 3170, + [3229] = 3173, [3230] = 3230, - [3231] = 3231, + [3231] = 3177, [3232] = 3232, - [3233] = 3173, - [3234] = 3234, - [3235] = 3173, - [3236] = 3192, - [3237] = 3156, + [3233] = 3179, + [3234] = 3180, + [3235] = 3235, + [3236] = 3236, + [3237] = 3237, [3238] = 3238, [3239] = 3239, [3240] = 3240, [3241] = 3241, - [3242] = 3187, - [3243] = 3160, + [3242] = 3242, + [3243] = 3243, [3244] = 3244, - [3245] = 3217, - [3246] = 3161, - [3247] = 3164, - [3248] = 3186, - [3249] = 3158, - [3250] = 3173, - [3251] = 3175, - [3252] = 3161, - [3253] = 3175, - [3254] = 3241, - [3255] = 3255, - [3256] = 3203, - [3257] = 3184, + [3245] = 3198, + [3246] = 3246, + [3247] = 3247, + [3248] = 3248, + [3249] = 3172, + [3250] = 3243, + [3251] = 3251, + [3252] = 3252, + [3253] = 3253, + [3254] = 3188, + [3255] = 3219, + [3256] = 3256, + [3257] = 3257, [3258] = 3258, - [3259] = 3170, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3217, - [3264] = 3264, - [3265] = 3173, - [3266] = 3161, - [3267] = 3175, + [3259] = 3183, + [3260] = 3173, + [3261] = 3170, + [3262] = 3174, + [3263] = 3263, + [3264] = 3177, + [3265] = 3179, + [3266] = 3180, + [3267] = 3267, [3268] = 3268, - [3269] = 3269, - [3270] = 3270, - [3271] = 3178, - [3272] = 3272, - [3273] = 3217, - [3274] = 3173, - [3275] = 3161, - [3276] = 3175, - [3277] = 3180, + [3269] = 3185, + [3270] = 3183, + [3271] = 3271, + [3272] = 3177, + [3273] = 3179, + [3274] = 3180, + [3275] = 3220, + [3276] = 3195, + [3277] = 3277, [3278] = 3278, - [3279] = 3229, - [3280] = 3217, - [3281] = 3173, - [3282] = 3161, - [3283] = 3175, - [3284] = 3217, - [3285] = 3161, - [3286] = 3175, - [3287] = 3217, - [3288] = 3161, - [3289] = 3175, - [3290] = 3217, - [3291] = 3161, - [3292] = 3175, - [3293] = 3217, - [3294] = 3161, - [3295] = 3175, - [3296] = 3173, - [3297] = 3297, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3301, - [3302] = 3209, - [3303] = 3303, - [3304] = 3270, - [3305] = 1117, - [3306] = 1118, - [3307] = 3232, - [3308] = 3308, - [3309] = 3190, - [3310] = 3310, - [3311] = 3238, - [3312] = 3178, + [3279] = 3279, + [3280] = 3183, + [3281] = 3177, + [3282] = 3179, + [3283] = 3180, + [3284] = 3284, + [3285] = 3183, + [3286] = 3177, + [3287] = 3179, + [3288] = 3180, + [3289] = 3183, + [3290] = 3179, + [3291] = 3180, + [3292] = 3183, + [3293] = 3179, + [3294] = 3180, + [3295] = 3183, + [3296] = 3179, + [3297] = 3180, + [3298] = 3183, + [3299] = 3179, + [3300] = 3180, + [3301] = 3277, + [3302] = 3177, + [3303] = 3177, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3194, + [3308] = 3180, + [3309] = 3221, + [3310] = 3162, + [3311] = 3311, + [3312] = 3312, [3313] = 3313, [3314] = 3314, - [3315] = 3225, - [3316] = 3316, - [3317] = 3317, - [3318] = 3193, - [3319] = 3317, - [3320] = 3211, - [3321] = 3200, + [3315] = 3315, + [3316] = 3195, + [3317] = 1123, + [3318] = 1124, + [3319] = 3319, + [3320] = 3179, + [3321] = 3321, [3322] = 3322, - [3323] = 3190, - [3324] = 3314, - [3325] = 3325, + [3323] = 3172, + [3324] = 3324, + [3325] = 3271, [3326] = 3326, - [3327] = 3327, - [3328] = 3328, - [3329] = 3240, - [3330] = 3330, - [3331] = 3331, + [3327] = 3180, + [3328] = 3163, + [3329] = 3237, + [3330] = 3326, + [3331] = 3267, [3332] = 3332, - [3333] = 3216, + [3333] = 3333, [3334] = 3334, - [3335] = 3171, + [3335] = 3335, [3336] = 3336, - [3337] = 3173, - [3338] = 3168, + [3337] = 3236, + [3338] = 3338, [3339] = 3339, - [3340] = 3255, - [3341] = 3300, - [3342] = 3239, - [3343] = 3159, - [3344] = 3261, - [3345] = 1476, - [3346] = 3346, - [3347] = 3310, - [3348] = 3316, - [3349] = 3299, - [3350] = 3298, - [3351] = 3217, - [3352] = 3346, - [3353] = 3331, - [3354] = 3204, - [3355] = 3207, - [3356] = 3230, - [3357] = 3231, - [3358] = 3262, - [3359] = 3327, - [3360] = 3360, - [3361] = 3184, - [3362] = 3268, - [3363] = 3363, - [3364] = 3189, - [3365] = 3365, - [3366] = 3360, - [3367] = 3330, - [3368] = 3301, - [3369] = 3369, - [3370] = 3238, - [3371] = 3371, - [3372] = 3372, - [3373] = 3332, - [3374] = 3175, - [3375] = 3157, - [3376] = 1507, - [3377] = 3217, - [3378] = 3308, + [3340] = 3177, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 3344, + [3345] = 3345, + [3346] = 3177, + [3347] = 3185, + [3348] = 3348, + [3349] = 3349, + [3350] = 3188, + [3351] = 3247, + [3352] = 3252, + [3353] = 1511, + [3354] = 3251, + [3355] = 3271, + [3356] = 3257, + [3357] = 3238, + [3358] = 3358, + [3359] = 3338, + [3360] = 3215, + [3361] = 3222, + [3362] = 3240, + [3363] = 3241, + [3364] = 3244, + [3365] = 3214, + [3366] = 3366, + [3367] = 3367, + [3368] = 3173, + [3369] = 3306, + [3370] = 3305, + [3371] = 3232, + [3372] = 3342, + [3373] = 3284, + [3374] = 3339, + [3375] = 3335, + [3376] = 3167, + [3377] = 3377, + [3378] = 3358, [3379] = 3379, - [3380] = 3301, - [3381] = 3381, - [3382] = 3270, - [3383] = 1117, - [3384] = 1118, - [3385] = 3328, - [3386] = 3308, - [3387] = 3223, - [3388] = 3193, - [3389] = 3389, - [3390] = 3390, + [3380] = 3219, + [3381] = 3366, + [3382] = 3169, + [3383] = 3313, + [3384] = 3313, + [3385] = 1123, + [3386] = 1124, + [3387] = 3319, + [3388] = 3194, + [3389] = 3311, + [3390] = 3326, [3391] = 3391, [3392] = 3392, - [3393] = 3393, - [3394] = 3394, - [3395] = 3395, - [3396] = 3173, - [3397] = 3397, - [3398] = 3301, - [3399] = 3218, - [3400] = 3308, - [3401] = 1526, - [3402] = 1421, - [3403] = 3301, - [3404] = 3308, - [3405] = 3405, - [3406] = 3406, - [3407] = 3195, + [3393] = 3178, + [3394] = 3341, + [3395] = 3313, + [3396] = 3396, + [3397] = 3319, + [3398] = 3398, + [3399] = 3313, + [3400] = 3319, + [3401] = 3319, + [3402] = 3402, + [3403] = 3239, + [3404] = 1475, + [3405] = 1476, + [3406] = 3195, + [3407] = 3278, [3408] = 3408, - [3409] = 3191, - [3410] = 3157, - [3411] = 3216, - [3412] = 3270, - [3413] = 3260, - [3414] = 3300, - [3415] = 3160, - [3416] = 3219, - [3417] = 3158, - [3418] = 3193, - [3419] = 3178, - [3420] = 3420, - [3421] = 3395, - [3422] = 3185, - [3423] = 3393, - [3424] = 3424, - [3425] = 3334, - [3426] = 3214, - [3427] = 3336, - [3428] = 3428, - [3429] = 3164, - [3430] = 3389, - [3431] = 3167, - [3432] = 3264, - [3433] = 3240, - [3434] = 1456, - [3435] = 3216, - [3436] = 3182, - [3437] = 3180, - [3438] = 3172, - [3439] = 3217, - [3440] = 3408, - [3441] = 3260, - [3442] = 3182, - [3443] = 3260, - [3444] = 3182, - [3445] = 3158, - [3446] = 3446, - [3447] = 3428, - [3448] = 3270, - [3449] = 3371, - [3450] = 3180, + [3409] = 3345, + [3410] = 3336, + [3411] = 3402, + [3412] = 3412, + [3413] = 3204, + [3414] = 3326, + [3415] = 3185, + [3416] = 3379, + [3417] = 3417, + [3418] = 3210, + [3419] = 3177, + [3420] = 3174, + [3421] = 3421, + [3422] = 3312, + [3423] = 3423, + [3424] = 3207, + [3425] = 3344, + [3426] = 3344, + [3427] = 3315, + [3428] = 3199, + [3429] = 3343, + [3430] = 3219, + [3431] = 3431, + [3432] = 1448, + [3433] = 3193, + [3434] = 3417, + [3435] = 3435, + [3436] = 3219, + [3437] = 3396, + [3438] = 3402, + [3439] = 3278, + [3440] = 3193, + [3441] = 3195, + [3442] = 3278, + [3443] = 3193, + [3444] = 3162, + [3445] = 3279, + [3446] = 3242, + [3447] = 3161, + [3448] = 3263, + [3449] = 3449, + [3450] = 3176, [3451] = 3451, - [3452] = 3408, - [3453] = 3446, - [3454] = 3424, - [3455] = 3190, - [3456] = 3197, - [3457] = 3313, - [3458] = 3458, - [3459] = 3459, - [3460] = 3460, - [3461] = 3461, - [3462] = 3462, + [3452] = 3188, + [3453] = 3179, + [3454] = 3256, + [3455] = 3175, + [3456] = 3451, + [3457] = 3183, + [3458] = 3198, + [3459] = 3225, + [3460] = 3324, + [3461] = 3305, + [3462] = 3198, [3463] = 3463, [3464] = 3464, [3465] = 3465, @@ -7475,302 +7503,308 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3486] = 3486, [3487] = 3487, [3488] = 3488, - [3489] = 3488, + [3489] = 3489, [3490] = 3490, [3491] = 3491, [3492] = 3492, - [3493] = 3493, + [3493] = 3470, [3494] = 3494, [3495] = 3495, [3496] = 3496, [3497] = 3497, [3498] = 3498, - [3499] = 3469, + [3499] = 3499, [3500] = 3500, [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 3471, - [3505] = 3505, - [3506] = 3506, + [3504] = 3504, + [3505] = 167, + [3506] = 3498, [3507] = 3507, [3508] = 3508, - [3509] = 3509, - [3510] = 3510, + [3509] = 3481, + [3510] = 165, [3511] = 3511, - [3512] = 3492, + [3512] = 3512, [3513] = 3513, [3514] = 3514, [3515] = 3515, - [3516] = 3516, + [3516] = 3482, [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 178, - [3521] = 3490, + [3520] = 3497, + [3521] = 3521, [3522] = 3522, - [3523] = 3500, + [3523] = 3523, [3524] = 3524, - [3525] = 3525, + [3525] = 3490, [3526] = 3526, - [3527] = 3459, - [3528] = 3459, + [3527] = 3527, + [3528] = 3528, [3529] = 3529, [3530] = 3530, - [3531] = 3503, + [3531] = 3531, [3532] = 3532, [3533] = 3533, [3534] = 3534, [3535] = 3535, - [3536] = 3500, - [3537] = 3488, - [3538] = 3538, + [3536] = 3536, + [3537] = 3517, + [3538] = 3533, [3539] = 3539, - [3540] = 3540, - [3541] = 3541, - [3542] = 3478, - [3543] = 3543, + [3540] = 3489, + [3541] = 3496, + [3542] = 3542, + [3543] = 3488, [3544] = 3544, [3545] = 3545, [3546] = 3546, - [3547] = 3505, - [3548] = 3473, - [3549] = 3488, + [3547] = 3488, + [3548] = 3548, + [3549] = 3549, [3550] = 3550, - [3551] = 3551, - [3552] = 3552, - [3553] = 3553, - [3554] = 3492, + [3551] = 3469, + [3552] = 3530, + [3553] = 3467, + [3554] = 3554, [3555] = 3555, [3556] = 3556, - [3557] = 3557, - [3558] = 3492, - [3559] = 3559, - [3560] = 3468, + [3557] = 3529, + [3558] = 3558, + [3559] = 3480, + [3560] = 3560, [3561] = 3561, - [3562] = 3562, - [3563] = 3476, - [3564] = 3564, - [3565] = 3562, + [3562] = 3522, + [3563] = 3563, + [3564] = 3517, + [3565] = 3565, [3566] = 3566, - [3567] = 3463, + [3567] = 3567, [3568] = 3568, [3569] = 3569, [3570] = 3570, [3571] = 3571, [3572] = 3572, - [3573] = 3515, + [3573] = 3573, [3574] = 3574, - [3575] = 3488, + [3575] = 3575, [3576] = 3576, - [3577] = 3487, + [3577] = 3577, [3578] = 3578, - [3579] = 3484, - [3580] = 3469, + [3579] = 3508, + [3580] = 3580, [3581] = 3581, - [3582] = 3582, + [3582] = 3502, [3583] = 3583, [3584] = 3584, - [3585] = 3543, - [3586] = 3586, + [3585] = 3585, + [3586] = 3504, [3587] = 3587, - [3588] = 3477, - [3589] = 3460, - [3590] = 3461, - [3591] = 3507, - [3592] = 3503, - [3593] = 3583, - [3594] = 3594, - [3595] = 3595, - [3596] = 3491, - [3597] = 3493, - [3598] = 3576, - [3599] = 3486, - [3600] = 3472, - [3601] = 3601, + [3588] = 3588, + [3589] = 3565, + [3590] = 3556, + [3591] = 3488, + [3592] = 3592, + [3593] = 3593, + [3594] = 3492, + [3595] = 3515, + [3596] = 3596, + [3597] = 3508, + [3598] = 3598, + [3599] = 3598, + [3600] = 3600, + [3601] = 3523, [3602] = 3602, [3603] = 3603, - [3604] = 3557, - [3605] = 3605, - [3606] = 3545, - [3607] = 3607, - [3608] = 3608, - [3609] = 3510, - [3610] = 3610, - [3611] = 3476, - [3612] = 3477, - [3613] = 3478, - [3614] = 3614, - [3615] = 3480, - [3616] = 3616, - [3617] = 3578, - [3618] = 3607, - [3619] = 3468, - [3620] = 3620, - [3621] = 3621, - [3622] = 3519, - [3623] = 3583, - [3624] = 3543, - [3625] = 3610, - [3626] = 3533, + [3604] = 3604, + [3605] = 3602, + [3606] = 3504, + [3607] = 3603, + [3608] = 3532, + [3609] = 3534, + [3610] = 3485, + [3611] = 3611, + [3612] = 3612, + [3613] = 3488, + [3614] = 3567, + [3615] = 3615, + [3616] = 3482, + [3617] = 3483, + [3618] = 3484, + [3619] = 3619, + [3620] = 3486, + [3621] = 3529, + [3622] = 3473, + [3623] = 3623, + [3624] = 3624, + [3625] = 3625, + [3626] = 3470, [3627] = 3627, - [3628] = 3461, - [3629] = 3629, - [3630] = 3518, - [3631] = 3594, - [3632] = 3516, - [3633] = 3553, - [3634] = 3557, + [3628] = 3585, + [3629] = 3556, + [3630] = 3486, + [3631] = 3494, + [3632] = 3531, + [3633] = 3515, + [3634] = 3566, [3635] = 3635, - [3636] = 3636, - [3637] = 3583, - [3638] = 3638, - [3639] = 3477, - [3640] = 3480, + [3636] = 3518, + [3637] = 3637, + [3638] = 3512, + [3639] = 3534, + [3640] = 3640, [3641] = 3641, [3642] = 3642, - [3643] = 3467, - [3644] = 3517, - [3645] = 3543, - [3646] = 3594, - [3647] = 3492, - [3648] = 3557, - [3649] = 3649, - [3650] = 3650, - [3651] = 3480, - [3652] = 3543, - [3653] = 3594, - [3654] = 3557, - [3655] = 3543, - [3656] = 3480, - [3657] = 3594, - [3658] = 3557, - [3659] = 3480, - [3660] = 3594, - [3661] = 3594, - [3662] = 3594, - [3663] = 3594, - [3664] = 3594, - [3665] = 3530, - [3666] = 3638, - [3667] = 3541, - [3668] = 3668, - [3669] = 3650, - [3670] = 3641, - [3671] = 3498, - [3672] = 3616, - [3673] = 3629, - [3674] = 3503, - [3675] = 3497, - [3676] = 3546, - [3677] = 3532, - [3678] = 3574, + [3643] = 3643, + [3644] = 3483, + [3645] = 3486, + [3646] = 3464, + [3647] = 3647, + [3648] = 3648, + [3649] = 3503, + [3650] = 3556, + [3651] = 3598, + [3652] = 3652, + [3653] = 3534, + [3654] = 3642, + [3655] = 3641, + [3656] = 3486, + [3657] = 3556, + [3658] = 3598, + [3659] = 3534, + [3660] = 3584, + [3661] = 3486, + [3662] = 3598, + [3663] = 3534, + [3664] = 3486, + [3665] = 3598, + [3666] = 3598, + [3667] = 3598, + [3668] = 3598, + [3669] = 3598, + [3670] = 3670, + [3671] = 3580, + [3672] = 3672, + [3673] = 3670, + [3674] = 3674, + [3675] = 3675, + [3676] = 3676, + [3677] = 3652, + [3678] = 3678, [3679] = 3679, - [3680] = 3621, - [3681] = 3501, - [3682] = 3682, - [3683] = 3529, - [3684] = 3525, - [3685] = 3679, - [3686] = 3686, - [3687] = 3687, - [3688] = 3688, - [3689] = 3576, - [3690] = 3488, - [3691] = 3559, - [3692] = 3460, - [3693] = 3693, - [3694] = 181, - [3695] = 3461, - [3696] = 3473, + [3680] = 3680, + [3681] = 3681, + [3682] = 3463, + [3683] = 3627, + [3684] = 3467, + [3685] = 3517, + [3686] = 3678, + [3687] = 3536, + [3688] = 3640, + [3689] = 3517, + [3690] = 3556, + [3691] = 3542, + [3692] = 3692, + [3693] = 3692, + [3694] = 3484, + [3695] = 3563, + [3696] = 3674, [3697] = 3697, - [3698] = 3698, - [3699] = 3603, - [3700] = 3465, - [3701] = 3701, - [3702] = 3682, - [3703] = 3701, - [3704] = 3704, - [3705] = 3705, + [3698] = 3615, + [3699] = 3465, + [3700] = 3554, + [3701] = 3572, + [3702] = 3574, + [3703] = 3478, + [3704] = 3517, + [3705] = 3482, [3706] = 3706, - [3707] = 3480, - [3708] = 3687, - [3709] = 3492, + [3707] = 3707, + [3708] = 3524, + [3709] = 3637, [3710] = 3514, - [3711] = 3556, - [3712] = 3594, - [3713] = 3608, - [3714] = 3476, - [3715] = 3715, - [3716] = 3649, - [3717] = 3704, - [3718] = 3526, - [3719] = 3719, + [3711] = 3492, + [3712] = 3612, + [3713] = 3512, + [3714] = 3515, + [3715] = 3500, + [3716] = 3643, + [3717] = 3512, + [3718] = 3494, + [3719] = 3476, [3720] = 3720, - [3721] = 3495, - [3722] = 3584, - [3723] = 3494, + [3721] = 3463, + [3722] = 3483, + [3723] = 3549, [3724] = 3724, - [3725] = 3472, - [3726] = 3636, - [3727] = 3511, - [3728] = 3505, - [3729] = 3650, - [3730] = 3641, - [3731] = 3546, - [3732] = 3532, - [3733] = 3602, - [3734] = 3473, - [3735] = 3650, - [3736] = 3532, - [3737] = 3459, - [3738] = 3557, - [3739] = 3532, - [3740] = 3532, - [3741] = 3532, - [3742] = 3742, - [3743] = 3642, + [3725] = 3706, + [3726] = 3580, + [3727] = 3488, + [3728] = 3539, + [3729] = 3598, + [3730] = 3485, + [3731] = 3679, + [3732] = 3546, + [3733] = 3499, + [3734] = 3468, + [3735] = 3674, + [3736] = 3675, + [3737] = 3681, + [3738] = 3463, + [3739] = 3739, + [3740] = 3740, + [3741] = 3674, + [3742] = 3592, + [3743] = 3624, [3744] = 3744, - [3745] = 3571, - [3746] = 3496, - [3747] = 3572, - [3748] = 3748, - [3749] = 3749, - [3750] = 3506, - [3751] = 3515, - [3752] = 3724, - [3753] = 3544, - [3754] = 3485, - [3755] = 3601, - [3756] = 3698, - [3757] = 3594, - [3758] = 3614, - [3759] = 3759, - [3760] = 3482, - [3761] = 3587, - [3762] = 3762, - [3763] = 3742, - [3764] = 3620, - [3765] = 3607, - [3766] = 3602, - [3767] = 3706, - [3768] = 3686, - [3769] = 3475, - [3770] = 3550, - [3771] = 3595, - [3772] = 3561, - [3773] = 3534, - [3774] = 3602, - [3775] = 3586, - [3776] = 3478, - [3777] = 3469, - [3778] = 3778, - [3779] = 3779, - [3780] = 3780, - [3781] = 3781, - [3782] = 3782, - [3783] = 3783, + [3745] = 3463, + [3746] = 3463, + [3747] = 3463, + [3748] = 3675, + [3749] = 3487, + [3750] = 3602, + [3751] = 3600, + [3752] = 3681, + [3753] = 3707, + [3754] = 3603, + [3755] = 3494, + [3756] = 3724, + [3757] = 3575, + [3758] = 3580, + [3759] = 3680, + [3760] = 3545, + [3761] = 3534, + [3762] = 3504, + [3763] = 3467, + [3764] = 3577, + [3765] = 3495, + [3766] = 3766, + [3767] = 3573, + [3768] = 3768, + [3769] = 3477, + [3770] = 3770, + [3771] = 3619, + [3772] = 3652, + [3773] = 3720, + [3774] = 3612, + [3775] = 3526, + [3776] = 3770, + [3777] = 3625, + [3778] = 3672, + [3779] = 3588, + [3780] = 3603, + [3781] = 3511, + [3782] = 3484, + [3783] = 3598, [3784] = 3784, + [3785] = 3785, + [3786] = 3786, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, }; const TSCharacterRange sym_identifier_character_set_1[] = { @@ -10389,856 +10423,856 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 72, .external_lex_state = 2}, [2] = {.lex_state = 73, .external_lex_state = 2}, - [3] = {.lex_state = 73, .external_lex_state = 2}, - [4] = {.lex_state = 73, .external_lex_state = 2}, - [5] = {.lex_state = 73, .external_lex_state = 2}, - [6] = {.lex_state = 73, .external_lex_state = 2}, - [7] = {.lex_state = 73, .external_lex_state = 2}, - [8] = {.lex_state = 73, .external_lex_state = 2}, - [9] = {.lex_state = 73, .external_lex_state = 2}, - [10] = {.lex_state = 73, .external_lex_state = 2}, - [11] = {.lex_state = 73, .external_lex_state = 2}, - [12] = {.lex_state = 73, .external_lex_state = 2}, - [13] = {.lex_state = 73, .external_lex_state = 2}, - [14] = {.lex_state = 73, .external_lex_state = 2}, - [15] = {.lex_state = 73, .external_lex_state = 2}, - [16] = {.lex_state = 73, .external_lex_state = 2}, - [17] = {.lex_state = 73, .external_lex_state = 2}, - [18] = {.lex_state = 73, .external_lex_state = 2}, - [19] = {.lex_state = 73, .external_lex_state = 2}, - [20] = {.lex_state = 73, .external_lex_state = 2}, - [21] = {.lex_state = 73, .external_lex_state = 2}, - [22] = {.lex_state = 73, .external_lex_state = 2}, - [23] = {.lex_state = 73, .external_lex_state = 2}, - [24] = {.lex_state = 73, .external_lex_state = 2}, - [25] = {.lex_state = 73, .external_lex_state = 2}, - [26] = {.lex_state = 73, .external_lex_state = 2}, - [27] = {.lex_state = 73, .external_lex_state = 2}, - [28] = {.lex_state = 73, .external_lex_state = 2}, - [29] = {.lex_state = 73, .external_lex_state = 2}, - [30] = {.lex_state = 73, .external_lex_state = 2}, - [31] = {.lex_state = 73, .external_lex_state = 2}, - [32] = {.lex_state = 73, .external_lex_state = 2}, - [33] = {.lex_state = 73, .external_lex_state = 2}, - [34] = {.lex_state = 73, .external_lex_state = 2}, - [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 5, .external_lex_state = 2}, - [37] = {.lex_state = 5, .external_lex_state = 2}, - [38] = {.lex_state = 5, .external_lex_state = 2}, - [39] = {.lex_state = 5, .external_lex_state = 2}, - [40] = {.lex_state = 5, .external_lex_state = 2}, - [41] = {.lex_state = 5, .external_lex_state = 2}, - [42] = {.lex_state = 5, .external_lex_state = 2}, - [43] = {.lex_state = 7, .external_lex_state = 2}, - [44] = {.lex_state = 7, .external_lex_state = 2}, - [45] = {.lex_state = 7, .external_lex_state = 2}, - [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 7, .external_lex_state = 2}, - [48] = {.lex_state = 7, .external_lex_state = 2}, - [49] = {.lex_state = 7, .external_lex_state = 2}, - [50] = {.lex_state = 5, .external_lex_state = 2}, - [51] = {.lex_state = 7, .external_lex_state = 2}, - [52] = {.lex_state = 7, .external_lex_state = 2}, - [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, - [55] = {.lex_state = 5, .external_lex_state = 2}, - [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 5, .external_lex_state = 2}, - [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 5, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 5, .external_lex_state = 2}, - [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 4, .external_lex_state = 2}, - [68] = {.lex_state = 4, .external_lex_state = 2}, - [69] = {.lex_state = 4, .external_lex_state = 2}, - [70] = {.lex_state = 4, .external_lex_state = 2}, - [71] = {.lex_state = 4, .external_lex_state = 2}, - [72] = {.lex_state = 4, .external_lex_state = 2}, - [73] = {.lex_state = 4, .external_lex_state = 2}, - [74] = {.lex_state = 4, .external_lex_state = 2}, - [75] = {.lex_state = 4, .external_lex_state = 2}, - [76] = {.lex_state = 4, .external_lex_state = 2}, - [77] = {.lex_state = 4, .external_lex_state = 2}, - [78] = {.lex_state = 6, .external_lex_state = 2}, - [79] = {.lex_state = 4, .external_lex_state = 2}, - [80] = {.lex_state = 4, .external_lex_state = 2}, - [81] = {.lex_state = 4, .external_lex_state = 2}, - [82] = {.lex_state = 4, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, - [84] = {.lex_state = 6, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 2}, - [86] = {.lex_state = 4, .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 = 6, .external_lex_state = 2}, - [91] = {.lex_state = 6, .external_lex_state = 2}, - [92] = {.lex_state = 6, .external_lex_state = 2}, - [93] = {.lex_state = 6, .external_lex_state = 2}, - [94] = {.lex_state = 6, .external_lex_state = 2}, - [95] = {.lex_state = 6, .external_lex_state = 2}, - [96] = {.lex_state = 6, .external_lex_state = 2}, - [97] = {.lex_state = 6, .external_lex_state = 2}, - [98] = {.lex_state = 6, .external_lex_state = 2}, - [99] = {.lex_state = 6, .external_lex_state = 2}, - [100] = {.lex_state = 6, .external_lex_state = 2}, - [101] = {.lex_state = 6, .external_lex_state = 2}, - [102] = {.lex_state = 6, .external_lex_state = 2}, - [103] = {.lex_state = 6, .external_lex_state = 2}, - [104] = {.lex_state = 6, .external_lex_state = 2}, - [105] = {.lex_state = 4, .external_lex_state = 2}, - [106] = {.lex_state = 6, .external_lex_state = 2}, - [107] = {.lex_state = 6, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, - [111] = {.lex_state = 6, .external_lex_state = 2}, - [112] = {.lex_state = 6, .external_lex_state = 2}, - [113] = {.lex_state = 6, .external_lex_state = 2}, - [114] = {.lex_state = 6, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, - [116] = {.lex_state = 6, .external_lex_state = 2}, - [117] = {.lex_state = 6, .external_lex_state = 2}, - [118] = {.lex_state = 6, .external_lex_state = 2}, - [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 4, .external_lex_state = 2}, - [122] = {.lex_state = 6, .external_lex_state = 2}, - [123] = {.lex_state = 6, .external_lex_state = 2}, - [124] = {.lex_state = 6, .external_lex_state = 2}, - [125] = {.lex_state = 6, .external_lex_state = 2}, - [126] = {.lex_state = 6, .external_lex_state = 2}, - [127] = {.lex_state = 6, .external_lex_state = 2}, - [128] = {.lex_state = 6, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 6, .external_lex_state = 2}, - [131] = {.lex_state = 6, .external_lex_state = 2}, - [132] = {.lex_state = 6, .external_lex_state = 2}, - [133] = {.lex_state = 6, .external_lex_state = 2}, - [134] = {.lex_state = 13, .external_lex_state = 2}, - [135] = {.lex_state = 13, .external_lex_state = 2}, - [136] = {.lex_state = 4, .external_lex_state = 2}, - [137] = {.lex_state = 4, .external_lex_state = 2}, - [138] = {.lex_state = 13, .external_lex_state = 2}, - [139] = {.lex_state = 13, .external_lex_state = 2}, - [140] = {.lex_state = 13, .external_lex_state = 2}, - [141] = {.lex_state = 13, .external_lex_state = 2}, - [142] = {.lex_state = 13, .external_lex_state = 2}, - [143] = {.lex_state = 4, .external_lex_state = 2}, - [144] = {.lex_state = 13, .external_lex_state = 2}, - [145] = {.lex_state = 13, .external_lex_state = 2}, - [146] = {.lex_state = 4, .external_lex_state = 2}, - [147] = {.lex_state = 4, .external_lex_state = 2}, - [148] = {.lex_state = 4, .external_lex_state = 2}, - [149] = {.lex_state = 4, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 4, .external_lex_state = 2}, - [152] = {.lex_state = 4, .external_lex_state = 2}, - [153] = {.lex_state = 13, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 4, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 2}, - [157] = {.lex_state = 13, .external_lex_state = 2}, - [158] = {.lex_state = 13, .external_lex_state = 2}, - [159] = {.lex_state = 4, .external_lex_state = 2}, - [160] = {.lex_state = 13, .external_lex_state = 2}, - [161] = {.lex_state = 13, .external_lex_state = 2}, - [162] = {.lex_state = 13, .external_lex_state = 2}, - [163] = {.lex_state = 4, .external_lex_state = 2}, - [164] = {.lex_state = 13, .external_lex_state = 2}, - [165] = {.lex_state = 4, .external_lex_state = 2}, - [166] = {.lex_state = 13, .external_lex_state = 2}, - [167] = {.lex_state = 4, .external_lex_state = 2}, - [168] = {.lex_state = 13, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 2}, - [170] = {.lex_state = 4, .external_lex_state = 2}, - [171] = {.lex_state = 13, .external_lex_state = 2}, - [172] = {.lex_state = 6, .external_lex_state = 2}, - [173] = {.lex_state = 13, .external_lex_state = 2}, - [174] = {.lex_state = 13, .external_lex_state = 2}, - [175] = {.lex_state = 13, .external_lex_state = 2}, - [176] = {.lex_state = 13, .external_lex_state = 2}, - [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 13, .external_lex_state = 2}, - [180] = {.lex_state = 13, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, - [182] = {.lex_state = 4, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, - [185] = {.lex_state = 13, .external_lex_state = 2}, - [186] = {.lex_state = 13, .external_lex_state = 2}, - [187] = {.lex_state = 13, .external_lex_state = 2}, - [188] = {.lex_state = 13, .external_lex_state = 2}, - [189] = {.lex_state = 13, .external_lex_state = 2}, - [190] = {.lex_state = 13, .external_lex_state = 2}, - [191] = {.lex_state = 13, .external_lex_state = 2}, - [192] = {.lex_state = 13, .external_lex_state = 2}, - [193] = {.lex_state = 13, .external_lex_state = 2}, - [194] = {.lex_state = 13, .external_lex_state = 2}, - [195] = {.lex_state = 13, .external_lex_state = 2}, - [196] = {.lex_state = 13, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, - [198] = {.lex_state = 6, .external_lex_state = 2}, - [199] = {.lex_state = 13, .external_lex_state = 2}, - [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 13, .external_lex_state = 2}, - [202] = {.lex_state = 6, .external_lex_state = 2}, - [203] = {.lex_state = 13, .external_lex_state = 2}, - [204] = {.lex_state = 6, .external_lex_state = 2}, - [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, - [207] = {.lex_state = 6, .external_lex_state = 2}, - [208] = {.lex_state = 6, .external_lex_state = 2}, - [209] = {.lex_state = 6, .external_lex_state = 2}, - [210] = {.lex_state = 6, .external_lex_state = 2}, - [211] = {.lex_state = 6, .external_lex_state = 2}, - [212] = {.lex_state = 13, .external_lex_state = 2}, - [213] = {.lex_state = 13, .external_lex_state = 2}, - [214] = {.lex_state = 13, .external_lex_state = 2}, - [215] = {.lex_state = 13, .external_lex_state = 2}, - [216] = {.lex_state = 15, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, - [223] = {.lex_state = 15, .external_lex_state = 2}, - [224] = {.lex_state = 13, .external_lex_state = 2}, - [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 12, .external_lex_state = 2}, - [227] = {.lex_state = 12, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 15, .external_lex_state = 2}, - [230] = {.lex_state = 15, .external_lex_state = 2}, - [231] = {.lex_state = 15, .external_lex_state = 2}, - [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 12, .external_lex_state = 2}, - [235] = {.lex_state = 15, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 15, .external_lex_state = 2}, - [238] = {.lex_state = 15, .external_lex_state = 2}, - [239] = {.lex_state = 13, .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}, - [243] = {.lex_state = 15, .external_lex_state = 2}, - [244] = {.lex_state = 12, .external_lex_state = 2}, - [245] = {.lex_state = 15, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, - [247] = {.lex_state = 12, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, - [249] = {.lex_state = 13, .external_lex_state = 2}, - [250] = {.lex_state = 15, .external_lex_state = 2}, - [251] = {.lex_state = 12, .external_lex_state = 2}, - [252] = {.lex_state = 15, .external_lex_state = 2}, - [253] = {.lex_state = 12, .external_lex_state = 2}, - [254] = {.lex_state = 12, .external_lex_state = 2}, - [255] = {.lex_state = 12, .external_lex_state = 2}, - [256] = {.lex_state = 12, .external_lex_state = 2}, - [257] = {.lex_state = 12, .external_lex_state = 2}, - [258] = {.lex_state = 12, .external_lex_state = 2}, - [259] = {.lex_state = 12, .external_lex_state = 2}, - [260] = {.lex_state = 12, .external_lex_state = 2}, - [261] = {.lex_state = 12, .external_lex_state = 2}, - [262] = {.lex_state = 13, .external_lex_state = 2}, - [263] = {.lex_state = 13, .external_lex_state = 2}, - [264] = {.lex_state = 13, .external_lex_state = 2}, - [265] = {.lex_state = 13, .external_lex_state = 2}, - [266] = {.lex_state = 13, .external_lex_state = 2}, - [267] = {.lex_state = 13, .external_lex_state = 2}, - [268] = {.lex_state = 13, .external_lex_state = 2}, - [269] = {.lex_state = 13, .external_lex_state = 2}, - [270] = {.lex_state = 13, .external_lex_state = 2}, - [271] = {.lex_state = 13, .external_lex_state = 2}, - [272] = {.lex_state = 13, .external_lex_state = 2}, - [273] = {.lex_state = 13, .external_lex_state = 2}, - [274] = {.lex_state = 13, .external_lex_state = 2}, - [275] = {.lex_state = 13, .external_lex_state = 2}, - [276] = {.lex_state = 13, .external_lex_state = 2}, - [277] = {.lex_state = 13, .external_lex_state = 2}, - [278] = {.lex_state = 13, .external_lex_state = 2}, - [279] = {.lex_state = 13, .external_lex_state = 2}, - [280] = {.lex_state = 13, .external_lex_state = 2}, - [281] = {.lex_state = 13, .external_lex_state = 2}, - [282] = {.lex_state = 13, .external_lex_state = 2}, - [283] = {.lex_state = 13, .external_lex_state = 2}, - [284] = {.lex_state = 13, .external_lex_state = 2}, - [285] = {.lex_state = 13, .external_lex_state = 2}, - [286] = {.lex_state = 13, .external_lex_state = 2}, - [287] = {.lex_state = 13, .external_lex_state = 2}, - [288] = {.lex_state = 13, .external_lex_state = 2}, - [289] = {.lex_state = 13, .external_lex_state = 2}, - [290] = {.lex_state = 13, .external_lex_state = 2}, - [291] = {.lex_state = 13, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, - [293] = {.lex_state = 13, .external_lex_state = 2}, - [294] = {.lex_state = 13, .external_lex_state = 2}, - [295] = {.lex_state = 13, .external_lex_state = 2}, - [296] = {.lex_state = 13, .external_lex_state = 2}, - [297] = {.lex_state = 13, .external_lex_state = 2}, - [298] = {.lex_state = 13, .external_lex_state = 2}, - [299] = {.lex_state = 13, .external_lex_state = 2}, - [300] = {.lex_state = 13, .external_lex_state = 2}, - [301] = {.lex_state = 13, .external_lex_state = 2}, - [302] = {.lex_state = 13, .external_lex_state = 2}, - [303] = {.lex_state = 13, .external_lex_state = 2}, - [304] = {.lex_state = 13, .external_lex_state = 2}, - [305] = {.lex_state = 13, .external_lex_state = 2}, - [306] = {.lex_state = 13, .external_lex_state = 2}, - [307] = {.lex_state = 13, .external_lex_state = 2}, - [308] = {.lex_state = 13, .external_lex_state = 2}, - [309] = {.lex_state = 13, .external_lex_state = 2}, - [310] = {.lex_state = 13, .external_lex_state = 2}, - [311] = {.lex_state = 13, .external_lex_state = 2}, - [312] = {.lex_state = 13, .external_lex_state = 2}, - [313] = {.lex_state = 13, .external_lex_state = 2}, - [314] = {.lex_state = 13, .external_lex_state = 2}, - [315] = {.lex_state = 13, .external_lex_state = 2}, - [316] = {.lex_state = 13, .external_lex_state = 2}, - [317] = {.lex_state = 13, .external_lex_state = 2}, - [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 71, .external_lex_state = 2}, - [320] = {.lex_state = 13, .external_lex_state = 2}, - [321] = {.lex_state = 13, .external_lex_state = 2}, - [322] = {.lex_state = 13, .external_lex_state = 2}, - [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 13, .external_lex_state = 2}, - [325] = {.lex_state = 13, .external_lex_state = 2}, - [326] = {.lex_state = 13, .external_lex_state = 2}, - [327] = {.lex_state = 13, .external_lex_state = 2}, - [328] = {.lex_state = 13, .external_lex_state = 2}, - [329] = {.lex_state = 13, .external_lex_state = 2}, - [330] = {.lex_state = 13, .external_lex_state = 2}, - [331] = {.lex_state = 13, .external_lex_state = 2}, - [332] = {.lex_state = 13, .external_lex_state = 2}, - [333] = {.lex_state = 13, .external_lex_state = 2}, - [334] = {.lex_state = 13, .external_lex_state = 2}, - [335] = {.lex_state = 13, .external_lex_state = 2}, - [336] = {.lex_state = 13, .external_lex_state = 2}, - [337] = {.lex_state = 13, .external_lex_state = 2}, - [338] = {.lex_state = 13, .external_lex_state = 2}, - [339] = {.lex_state = 13, .external_lex_state = 2}, - [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 13, .external_lex_state = 2}, - [342] = {.lex_state = 13, .external_lex_state = 2}, - [343] = {.lex_state = 13, .external_lex_state = 2}, - [344] = {.lex_state = 13, .external_lex_state = 2}, - [345] = {.lex_state = 13, .external_lex_state = 2}, - [346] = {.lex_state = 13, .external_lex_state = 2}, - [347] = {.lex_state = 13, .external_lex_state = 2}, - [348] = {.lex_state = 13, .external_lex_state = 2}, - [349] = {.lex_state = 13, .external_lex_state = 2}, - [350] = {.lex_state = 13, .external_lex_state = 2}, - [351] = {.lex_state = 13, .external_lex_state = 2}, - [352] = {.lex_state = 13, .external_lex_state = 2}, - [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 14, .external_lex_state = 2}, - [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 14, .external_lex_state = 2}, - [357] = {.lex_state = 13, .external_lex_state = 2}, - [358] = {.lex_state = 13, .external_lex_state = 2}, - [359] = {.lex_state = 13, .external_lex_state = 2}, - [360] = {.lex_state = 14, .external_lex_state = 2}, - [361] = {.lex_state = 13, .external_lex_state = 2}, - [362] = {.lex_state = 13, .external_lex_state = 2}, - [363] = {.lex_state = 13, .external_lex_state = 2}, - [364] = {.lex_state = 13, .external_lex_state = 2}, - [365] = {.lex_state = 13, .external_lex_state = 2}, - [366] = {.lex_state = 13, .external_lex_state = 2}, - [367] = {.lex_state = 13, .external_lex_state = 2}, - [368] = {.lex_state = 13, .external_lex_state = 2}, - [369] = {.lex_state = 13, .external_lex_state = 2}, - [370] = {.lex_state = 13, .external_lex_state = 2}, - [371] = {.lex_state = 13, .external_lex_state = 2}, - [372] = {.lex_state = 13, .external_lex_state = 2}, - [373] = {.lex_state = 13, .external_lex_state = 2}, - [374] = {.lex_state = 13, .external_lex_state = 2}, - [375] = {.lex_state = 13, .external_lex_state = 2}, - [376] = {.lex_state = 13, .external_lex_state = 2}, - [377] = {.lex_state = 13, .external_lex_state = 2}, - [378] = {.lex_state = 13, .external_lex_state = 2}, - [379] = {.lex_state = 13, .external_lex_state = 2}, - [380] = {.lex_state = 13, .external_lex_state = 2}, - [381] = {.lex_state = 13, .external_lex_state = 2}, - [382] = {.lex_state = 13, .external_lex_state = 2}, - [383] = {.lex_state = 13, .external_lex_state = 2}, - [384] = {.lex_state = 13, .external_lex_state = 2}, - [385] = {.lex_state = 13, .external_lex_state = 2}, - [386] = {.lex_state = 13, .external_lex_state = 2}, - [387] = {.lex_state = 13, .external_lex_state = 2}, - [388] = {.lex_state = 13, .external_lex_state = 2}, - [389] = {.lex_state = 71, .external_lex_state = 2}, - [390] = {.lex_state = 71, .external_lex_state = 2}, - [391] = {.lex_state = 71, .external_lex_state = 2}, - [392] = {.lex_state = 71, .external_lex_state = 2}, - [393] = {.lex_state = 71, .external_lex_state = 2}, - [394] = {.lex_state = 12, .external_lex_state = 2}, - [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 71, .external_lex_state = 2}, - [397] = {.lex_state = 71, .external_lex_state = 2}, - [398] = {.lex_state = 71, .external_lex_state = 2}, - [399] = {.lex_state = 71, .external_lex_state = 2}, - [400] = {.lex_state = 71, .external_lex_state = 2}, - [401] = {.lex_state = 71, .external_lex_state = 2}, - [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 71, .external_lex_state = 2}, - [404] = {.lex_state = 71, .external_lex_state = 2}, - [405] = {.lex_state = 71, .external_lex_state = 2}, - [406] = {.lex_state = 71, .external_lex_state = 2}, - [407] = {.lex_state = 12, .external_lex_state = 2}, - [408] = {.lex_state = 71, .external_lex_state = 2}, - [409] = {.lex_state = 71, .external_lex_state = 2}, - [410] = {.lex_state = 71, .external_lex_state = 2}, - [411] = {.lex_state = 71, .external_lex_state = 2}, - [412] = {.lex_state = 71, .external_lex_state = 2}, - [413] = {.lex_state = 71, .external_lex_state = 2}, - [414] = {.lex_state = 71, .external_lex_state = 2}, - [415] = {.lex_state = 71, .external_lex_state = 2}, - [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, - [418] = {.lex_state = 71, .external_lex_state = 2}, - [419] = {.lex_state = 12, .external_lex_state = 2}, - [420] = {.lex_state = 71, .external_lex_state = 2}, - [421] = {.lex_state = 71, .external_lex_state = 2}, - [422] = {.lex_state = 71, .external_lex_state = 2}, - [423] = {.lex_state = 71, .external_lex_state = 2}, - [424] = {.lex_state = 14, .external_lex_state = 2}, - [425] = {.lex_state = 14, .external_lex_state = 2}, - [426] = {.lex_state = 14, .external_lex_state = 2}, - [427] = {.lex_state = 14, .external_lex_state = 2}, - [428] = {.lex_state = 14, .external_lex_state = 2}, - [429] = {.lex_state = 14, .external_lex_state = 2}, - [430] = {.lex_state = 14, .external_lex_state = 2}, - [431] = {.lex_state = 14, .external_lex_state = 2}, - [432] = {.lex_state = 14, .external_lex_state = 2}, - [433] = {.lex_state = 14, .external_lex_state = 2}, - [434] = {.lex_state = 14, .external_lex_state = 2}, - [435] = {.lex_state = 5, .external_lex_state = 2}, - [436] = {.lex_state = 7, .external_lex_state = 2}, - [437] = {.lex_state = 16, .external_lex_state = 2}, - [438] = {.lex_state = 16, .external_lex_state = 2}, - [439] = {.lex_state = 13, .external_lex_state = 2}, - [440] = {.lex_state = 13, .external_lex_state = 2}, - [441] = {.lex_state = 13, .external_lex_state = 2}, - [442] = {.lex_state = 13, .external_lex_state = 2}, - [443] = {.lex_state = 13, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 13, .external_lex_state = 2}, - [446] = {.lex_state = 13, .external_lex_state = 2}, - [447] = {.lex_state = 13, .external_lex_state = 2}, - [448] = {.lex_state = 13, .external_lex_state = 2}, - [449] = {.lex_state = 13, .external_lex_state = 2}, - [450] = {.lex_state = 13, .external_lex_state = 2}, - [451] = {.lex_state = 13, .external_lex_state = 2}, - [452] = {.lex_state = 13, .external_lex_state = 2}, - [453] = {.lex_state = 13, .external_lex_state = 2}, - [454] = {.lex_state = 13, .external_lex_state = 2}, - [455] = {.lex_state = 13, .external_lex_state = 2}, - [456] = {.lex_state = 14, .external_lex_state = 2}, - [457] = {.lex_state = 14, .external_lex_state = 2}, - [458] = {.lex_state = 14, .external_lex_state = 2}, - [459] = {.lex_state = 5, .external_lex_state = 2}, - [460] = {.lex_state = 14, .external_lex_state = 2}, - [461] = {.lex_state = 5, .external_lex_state = 2}, - [462] = {.lex_state = 14, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, - [464] = {.lex_state = 5, .external_lex_state = 2}, - [465] = {.lex_state = 5, .external_lex_state = 2}, - [466] = {.lex_state = 14, .external_lex_state = 2}, - [467] = {.lex_state = 5, .external_lex_state = 2}, - [468] = {.lex_state = 14, .external_lex_state = 2}, - [469] = {.lex_state = 14, .external_lex_state = 2}, - [470] = {.lex_state = 5, .external_lex_state = 2}, - [471] = {.lex_state = 5, .external_lex_state = 2}, - [472] = {.lex_state = 14, .external_lex_state = 2}, - [473] = {.lex_state = 5, .external_lex_state = 2}, - [474] = {.lex_state = 5, .external_lex_state = 2}, - [475] = {.lex_state = 5, .external_lex_state = 2}, - [476] = {.lex_state = 5, .external_lex_state = 2}, - [477] = {.lex_state = 5, .external_lex_state = 2}, - [478] = {.lex_state = 5, .external_lex_state = 2}, - [479] = {.lex_state = 5, .external_lex_state = 2}, - [480] = {.lex_state = 5, .external_lex_state = 2}, - [481] = {.lex_state = 5, .external_lex_state = 2}, - [482] = {.lex_state = 5, .external_lex_state = 2}, - [483] = {.lex_state = 5, .external_lex_state = 2}, - [484] = {.lex_state = 5, .external_lex_state = 2}, - [485] = {.lex_state = 5, .external_lex_state = 2}, - [486] = {.lex_state = 5, .external_lex_state = 2}, - [487] = {.lex_state = 5, .external_lex_state = 2}, - [488] = {.lex_state = 5, .external_lex_state = 2}, - [489] = {.lex_state = 5, .external_lex_state = 2}, - [490] = {.lex_state = 5, .external_lex_state = 2}, - [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 14, .external_lex_state = 2}, - [493] = {.lex_state = 14, .external_lex_state = 2}, - [494] = {.lex_state = 73, .external_lex_state = 2}, - [495] = {.lex_state = 73, .external_lex_state = 2}, - [496] = {.lex_state = 73, .external_lex_state = 2}, - [497] = {.lex_state = 73, .external_lex_state = 2}, - [498] = {.lex_state = 73, .external_lex_state = 2}, - [499] = {.lex_state = 73, .external_lex_state = 2}, - [500] = {.lex_state = 73, .external_lex_state = 2}, - [501] = {.lex_state = 73, .external_lex_state = 2}, - [502] = {.lex_state = 73, .external_lex_state = 2}, - [503] = {.lex_state = 73, .external_lex_state = 2}, - [504] = {.lex_state = 73, .external_lex_state = 2}, - [505] = {.lex_state = 73, .external_lex_state = 2}, - [506] = {.lex_state = 73, .external_lex_state = 2}, - [507] = {.lex_state = 73, .external_lex_state = 2}, - [508] = {.lex_state = 73, .external_lex_state = 2}, - [509] = {.lex_state = 73, .external_lex_state = 2}, - [510] = {.lex_state = 73, .external_lex_state = 2}, - [511] = {.lex_state = 73, .external_lex_state = 2}, - [512] = {.lex_state = 73, .external_lex_state = 2}, - [513] = {.lex_state = 73, .external_lex_state = 2}, - [514] = {.lex_state = 73, .external_lex_state = 2}, - [515] = {.lex_state = 73, .external_lex_state = 2}, - [516] = {.lex_state = 73, .external_lex_state = 2}, - [517] = {.lex_state = 73, .external_lex_state = 2}, - [518] = {.lex_state = 73, .external_lex_state = 2}, - [519] = {.lex_state = 73, .external_lex_state = 2}, - [520] = {.lex_state = 73, .external_lex_state = 2}, - [521] = {.lex_state = 73, .external_lex_state = 2}, - [522] = {.lex_state = 73, .external_lex_state = 2}, - [523] = {.lex_state = 73, .external_lex_state = 2}, - [524] = {.lex_state = 73, .external_lex_state = 2}, - [525] = {.lex_state = 73, .external_lex_state = 2}, - [526] = {.lex_state = 73, .external_lex_state = 2}, - [527] = {.lex_state = 73, .external_lex_state = 2}, - [528] = {.lex_state = 73, .external_lex_state = 2}, - [529] = {.lex_state = 73, .external_lex_state = 2}, - [530] = {.lex_state = 73, .external_lex_state = 2}, - [531] = {.lex_state = 73, .external_lex_state = 2}, - [532] = {.lex_state = 73, .external_lex_state = 2}, - [533] = {.lex_state = 73, .external_lex_state = 2}, - [534] = {.lex_state = 73, .external_lex_state = 2}, - [535] = {.lex_state = 73, .external_lex_state = 2}, - [536] = {.lex_state = 73, .external_lex_state = 2}, - [537] = {.lex_state = 73, .external_lex_state = 2}, - [538] = {.lex_state = 73, .external_lex_state = 2}, - [539] = {.lex_state = 73, .external_lex_state = 2}, - [540] = {.lex_state = 73, .external_lex_state = 2}, - [541] = {.lex_state = 73, .external_lex_state = 2}, - [542] = {.lex_state = 73, .external_lex_state = 2}, - [543] = {.lex_state = 73, .external_lex_state = 2}, - [544] = {.lex_state = 73, .external_lex_state = 2}, - [545] = {.lex_state = 73, .external_lex_state = 2}, - [546] = {.lex_state = 73, .external_lex_state = 2}, - [547] = {.lex_state = 73, .external_lex_state = 2}, - [548] = {.lex_state = 73, .external_lex_state = 2}, - [549] = {.lex_state = 73, .external_lex_state = 2}, - [550] = {.lex_state = 73, .external_lex_state = 2}, - [551] = {.lex_state = 73, .external_lex_state = 2}, - [552] = {.lex_state = 73, .external_lex_state = 2}, - [553] = {.lex_state = 73, .external_lex_state = 2}, - [554] = {.lex_state = 73, .external_lex_state = 2}, - [555] = {.lex_state = 73, .external_lex_state = 2}, - [556] = {.lex_state = 73, .external_lex_state = 2}, - [557] = {.lex_state = 73, .external_lex_state = 2}, - [558] = {.lex_state = 73, .external_lex_state = 2}, - [559] = {.lex_state = 73, .external_lex_state = 2}, - [560] = {.lex_state = 73, .external_lex_state = 2}, - [561] = {.lex_state = 73, .external_lex_state = 2}, - [562] = {.lex_state = 73, .external_lex_state = 2}, - [563] = {.lex_state = 73, .external_lex_state = 2}, - [564] = {.lex_state = 73, .external_lex_state = 2}, - [565] = {.lex_state = 73, .external_lex_state = 2}, - [566] = {.lex_state = 73, .external_lex_state = 2}, - [567] = {.lex_state = 73, .external_lex_state = 2}, - [568] = {.lex_state = 73, .external_lex_state = 2}, - [569] = {.lex_state = 73, .external_lex_state = 2}, - [570] = {.lex_state = 73, .external_lex_state = 2}, - [571] = {.lex_state = 73, .external_lex_state = 2}, - [572] = {.lex_state = 73, .external_lex_state = 2}, - [573] = {.lex_state = 73, .external_lex_state = 2}, - [574] = {.lex_state = 73, .external_lex_state = 2}, - [575] = {.lex_state = 73, .external_lex_state = 2}, - [576] = {.lex_state = 73, .external_lex_state = 2}, - [577] = {.lex_state = 73, .external_lex_state = 2}, - [578] = {.lex_state = 73, .external_lex_state = 2}, - [579] = {.lex_state = 73, .external_lex_state = 2}, - [580] = {.lex_state = 73, .external_lex_state = 2}, - [581] = {.lex_state = 73, .external_lex_state = 2}, - [582] = {.lex_state = 73, .external_lex_state = 2}, - [583] = {.lex_state = 73, .external_lex_state = 2}, - [584] = {.lex_state = 23}, - [585] = {.lex_state = 73, .external_lex_state = 2}, - [586] = {.lex_state = 73, .external_lex_state = 2}, - [587] = {.lex_state = 73, .external_lex_state = 2}, - [588] = {.lex_state = 73, .external_lex_state = 2}, - [589] = {.lex_state = 14, .external_lex_state = 2}, - [590] = {.lex_state = 73, .external_lex_state = 2}, - [591] = {.lex_state = 73, .external_lex_state = 2}, - [592] = {.lex_state = 73, .external_lex_state = 2}, - [593] = {.lex_state = 73, .external_lex_state = 2}, - [594] = {.lex_state = 73, .external_lex_state = 2}, - [595] = {.lex_state = 73, .external_lex_state = 2}, - [596] = {.lex_state = 73, .external_lex_state = 2}, - [597] = {.lex_state = 73, .external_lex_state = 2}, - [598] = {.lex_state = 73, .external_lex_state = 2}, - [599] = {.lex_state = 73, .external_lex_state = 2}, - [600] = {.lex_state = 73, .external_lex_state = 2}, - [601] = {.lex_state = 73, .external_lex_state = 2}, - [602] = {.lex_state = 73, .external_lex_state = 2}, - [603] = {.lex_state = 73, .external_lex_state = 2}, - [604] = {.lex_state = 73, .external_lex_state = 2}, - [605] = {.lex_state = 73, .external_lex_state = 2}, - [606] = {.lex_state = 73, .external_lex_state = 2}, - [607] = {.lex_state = 73, .external_lex_state = 2}, - [608] = {.lex_state = 73, .external_lex_state = 2}, - [609] = {.lex_state = 73, .external_lex_state = 2}, - [610] = {.lex_state = 73, .external_lex_state = 2}, - [611] = {.lex_state = 73, .external_lex_state = 2}, - [612] = {.lex_state = 73, .external_lex_state = 2}, - [613] = {.lex_state = 73, .external_lex_state = 2}, - [614] = {.lex_state = 73, .external_lex_state = 2}, - [615] = {.lex_state = 73, .external_lex_state = 2}, - [616] = {.lex_state = 73, .external_lex_state = 2}, - [617] = {.lex_state = 73, .external_lex_state = 2}, - [618] = {.lex_state = 73, .external_lex_state = 2}, - [619] = {.lex_state = 73, .external_lex_state = 2}, - [620] = {.lex_state = 73, .external_lex_state = 2}, - [621] = {.lex_state = 73, .external_lex_state = 2}, - [622] = {.lex_state = 73, .external_lex_state = 2}, - [623] = {.lex_state = 73, .external_lex_state = 2}, - [624] = {.lex_state = 73, .external_lex_state = 2}, - [625] = {.lex_state = 73, .external_lex_state = 2}, - [626] = {.lex_state = 73, .external_lex_state = 2}, - [627] = {.lex_state = 14, .external_lex_state = 2}, - [628] = {.lex_state = 73, .external_lex_state = 2}, - [629] = {.lex_state = 73, .external_lex_state = 2}, - [630] = {.lex_state = 73, .external_lex_state = 2}, - [631] = {.lex_state = 73, .external_lex_state = 2}, - [632] = {.lex_state = 73, .external_lex_state = 2}, - [633] = {.lex_state = 73, .external_lex_state = 2}, - [634] = {.lex_state = 73, .external_lex_state = 2}, - [635] = {.lex_state = 73, .external_lex_state = 2}, - [636] = {.lex_state = 73, .external_lex_state = 2}, - [637] = {.lex_state = 73, .external_lex_state = 2}, - [638] = {.lex_state = 73, .external_lex_state = 2}, - [639] = {.lex_state = 73, .external_lex_state = 2}, - [640] = {.lex_state = 73, .external_lex_state = 2}, - [641] = {.lex_state = 73, .external_lex_state = 2}, - [642] = {.lex_state = 73, .external_lex_state = 2}, - [643] = {.lex_state = 73, .external_lex_state = 2}, - [644] = {.lex_state = 73, .external_lex_state = 2}, - [645] = {.lex_state = 73, .external_lex_state = 2}, - [646] = {.lex_state = 73, .external_lex_state = 2}, - [647] = {.lex_state = 73, .external_lex_state = 2}, - [648] = {.lex_state = 73, .external_lex_state = 2}, - [649] = {.lex_state = 73, .external_lex_state = 2}, - [650] = {.lex_state = 73, .external_lex_state = 2}, - [651] = {.lex_state = 73, .external_lex_state = 2}, - [652] = {.lex_state = 73, .external_lex_state = 2}, - [653] = {.lex_state = 73, .external_lex_state = 2}, - [654] = {.lex_state = 73, .external_lex_state = 2}, - [655] = {.lex_state = 73, .external_lex_state = 2}, - [656] = {.lex_state = 73, .external_lex_state = 2}, - [657] = {.lex_state = 73, .external_lex_state = 2}, - [658] = {.lex_state = 73, .external_lex_state = 2}, - [659] = {.lex_state = 73, .external_lex_state = 2}, - [660] = {.lex_state = 73, .external_lex_state = 2}, - [661] = {.lex_state = 73, .external_lex_state = 2}, - [662] = {.lex_state = 73, .external_lex_state = 2}, - [663] = {.lex_state = 73, .external_lex_state = 2}, - [664] = {.lex_state = 23}, - [665] = {.lex_state = 73, .external_lex_state = 2}, - [666] = {.lex_state = 73, .external_lex_state = 2}, - [667] = {.lex_state = 73, .external_lex_state = 2}, - [668] = {.lex_state = 73, .external_lex_state = 2}, - [669] = {.lex_state = 73, .external_lex_state = 2}, - [670] = {.lex_state = 73, .external_lex_state = 2}, - [671] = {.lex_state = 73, .external_lex_state = 2}, + [3] = {.lex_state = 73, .external_lex_state = 3}, + [4] = {.lex_state = 73, .external_lex_state = 3}, + [5] = {.lex_state = 73, .external_lex_state = 3}, + [6] = {.lex_state = 73, .external_lex_state = 3}, + [7] = {.lex_state = 73, .external_lex_state = 3}, + [8] = {.lex_state = 73, .external_lex_state = 3}, + [9] = {.lex_state = 73, .external_lex_state = 3}, + [10] = {.lex_state = 73, .external_lex_state = 3}, + [11] = {.lex_state = 73, .external_lex_state = 3}, + [12] = {.lex_state = 73, .external_lex_state = 3}, + [13] = {.lex_state = 73, .external_lex_state = 3}, + [14] = {.lex_state = 73, .external_lex_state = 3}, + [15] = {.lex_state = 73, .external_lex_state = 3}, + [16] = {.lex_state = 73, .external_lex_state = 3}, + [17] = {.lex_state = 73, .external_lex_state = 3}, + [18] = {.lex_state = 73, .external_lex_state = 3}, + [19] = {.lex_state = 73, .external_lex_state = 3}, + [20] = {.lex_state = 73, .external_lex_state = 3}, + [21] = {.lex_state = 73, .external_lex_state = 3}, + [22] = {.lex_state = 73, .external_lex_state = 3}, + [23] = {.lex_state = 73, .external_lex_state = 3}, + [24] = {.lex_state = 73, .external_lex_state = 3}, + [25] = {.lex_state = 73, .external_lex_state = 3}, + [26] = {.lex_state = 73, .external_lex_state = 3}, + [27] = {.lex_state = 73, .external_lex_state = 3}, + [28] = {.lex_state = 73, .external_lex_state = 3}, + [29] = {.lex_state = 73, .external_lex_state = 3}, + [30] = {.lex_state = 73, .external_lex_state = 3}, + [31] = {.lex_state = 73, .external_lex_state = 3}, + [32] = {.lex_state = 73, .external_lex_state = 3}, + [33] = {.lex_state = 73, .external_lex_state = 3}, + [34] = {.lex_state = 73, .external_lex_state = 3}, + [35] = {.lex_state = 73, .external_lex_state = 3}, + [36] = {.lex_state = 73, .external_lex_state = 3}, + [37] = {.lex_state = 73, .external_lex_state = 3}, + [38] = {.lex_state = 5, .external_lex_state = 3}, + [39] = {.lex_state = 5, .external_lex_state = 3}, + [40] = {.lex_state = 5, .external_lex_state = 3}, + [41] = {.lex_state = 5, .external_lex_state = 3}, + [42] = {.lex_state = 5, .external_lex_state = 3}, + [43] = {.lex_state = 5, .external_lex_state = 3}, + [44] = {.lex_state = 5, .external_lex_state = 3}, + [45] = {.lex_state = 5, .external_lex_state = 3}, + [46] = {.lex_state = 7, .external_lex_state = 3}, + [47] = {.lex_state = 5, .external_lex_state = 3}, + [48] = {.lex_state = 7, .external_lex_state = 3}, + [49] = {.lex_state = 7, .external_lex_state = 3}, + [50] = {.lex_state = 7, .external_lex_state = 3}, + [51] = {.lex_state = 7, .external_lex_state = 3}, + [52] = {.lex_state = 7, .external_lex_state = 3}, + [53] = {.lex_state = 7, .external_lex_state = 3}, + [54] = {.lex_state = 5, .external_lex_state = 3}, + [55] = {.lex_state = 7, .external_lex_state = 3}, + [56] = {.lex_state = 5, .external_lex_state = 3}, + [57] = {.lex_state = 5, .external_lex_state = 3}, + [58] = {.lex_state = 5, .external_lex_state = 3}, + [59] = {.lex_state = 5, .external_lex_state = 3}, + [60] = {.lex_state = 5, .external_lex_state = 3}, + [61] = {.lex_state = 5, .external_lex_state = 3}, + [62] = {.lex_state = 5, .external_lex_state = 3}, + [63] = {.lex_state = 5, .external_lex_state = 3}, + [64] = {.lex_state = 5, .external_lex_state = 3}, + [65] = {.lex_state = 5, .external_lex_state = 3}, + [66] = {.lex_state = 5, .external_lex_state = 3}, + [67] = {.lex_state = 5, .external_lex_state = 3}, + [68] = {.lex_state = 5, .external_lex_state = 3}, + [69] = {.lex_state = 5, .external_lex_state = 3}, + [70] = {.lex_state = 4, .external_lex_state = 3}, + [71] = {.lex_state = 4, .external_lex_state = 3}, + [72] = {.lex_state = 4, .external_lex_state = 3}, + [73] = {.lex_state = 4, .external_lex_state = 3}, + [74] = {.lex_state = 4, .external_lex_state = 3}, + [75] = {.lex_state = 4, .external_lex_state = 3}, + [76] = {.lex_state = 4, .external_lex_state = 3}, + [77] = {.lex_state = 4, .external_lex_state = 3}, + [78] = {.lex_state = 4, .external_lex_state = 3}, + [79] = {.lex_state = 4, .external_lex_state = 3}, + [80] = {.lex_state = 4, .external_lex_state = 3}, + [81] = {.lex_state = 4, .external_lex_state = 3}, + [82] = {.lex_state = 4, .external_lex_state = 3}, + [83] = {.lex_state = 4, .external_lex_state = 3}, + [84] = {.lex_state = 4, .external_lex_state = 3}, + [85] = {.lex_state = 4, .external_lex_state = 3}, + [86] = {.lex_state = 6, .external_lex_state = 3}, + [87] = {.lex_state = 6, .external_lex_state = 3}, + [88] = {.lex_state = 4, .external_lex_state = 3}, + [89] = {.lex_state = 6, .external_lex_state = 3}, + [90] = {.lex_state = 4, .external_lex_state = 3}, + [91] = {.lex_state = 6, .external_lex_state = 3}, + [92] = {.lex_state = 6, .external_lex_state = 3}, + [93] = {.lex_state = 6, .external_lex_state = 3}, + [94] = {.lex_state = 6, .external_lex_state = 3}, + [95] = {.lex_state = 6, .external_lex_state = 3}, + [96] = {.lex_state = 6, .external_lex_state = 3}, + [97] = {.lex_state = 6, .external_lex_state = 3}, + [98] = {.lex_state = 6, .external_lex_state = 3}, + [99] = {.lex_state = 6, .external_lex_state = 3}, + [100] = {.lex_state = 6, .external_lex_state = 3}, + [101] = {.lex_state = 4, .external_lex_state = 3}, + [102] = {.lex_state = 4, .external_lex_state = 3}, + [103] = {.lex_state = 4, .external_lex_state = 3}, + [104] = {.lex_state = 4, .external_lex_state = 3}, + [105] = {.lex_state = 4, .external_lex_state = 3}, + [106] = {.lex_state = 4, .external_lex_state = 3}, + [107] = {.lex_state = 6, .external_lex_state = 3}, + [108] = {.lex_state = 6, .external_lex_state = 3}, + [109] = {.lex_state = 6, .external_lex_state = 3}, + [110] = {.lex_state = 6, .external_lex_state = 3}, + [111] = {.lex_state = 6, .external_lex_state = 3}, + [112] = {.lex_state = 6, .external_lex_state = 3}, + [113] = {.lex_state = 6, .external_lex_state = 3}, + [114] = {.lex_state = 6, .external_lex_state = 3}, + [115] = {.lex_state = 4, .external_lex_state = 3}, + [116] = {.lex_state = 6, .external_lex_state = 3}, + [117] = {.lex_state = 6, .external_lex_state = 3}, + [118] = {.lex_state = 6, .external_lex_state = 3}, + [119] = {.lex_state = 4, .external_lex_state = 3}, + [120] = {.lex_state = 4, .external_lex_state = 3}, + [121] = {.lex_state = 6, .external_lex_state = 3}, + [122] = {.lex_state = 6, .external_lex_state = 3}, + [123] = {.lex_state = 6, .external_lex_state = 3}, + [124] = {.lex_state = 6, .external_lex_state = 3}, + [125] = {.lex_state = 6, .external_lex_state = 3}, + [126] = {.lex_state = 6, .external_lex_state = 3}, + [127] = {.lex_state = 6, .external_lex_state = 3}, + [128] = {.lex_state = 6, .external_lex_state = 3}, + [129] = {.lex_state = 6, .external_lex_state = 3}, + [130] = {.lex_state = 6, .external_lex_state = 3}, + [131] = {.lex_state = 6, .external_lex_state = 3}, + [132] = {.lex_state = 6, .external_lex_state = 3}, + [133] = {.lex_state = 4, .external_lex_state = 3}, + [134] = {.lex_state = 4, .external_lex_state = 3}, + [135] = {.lex_state = 4, .external_lex_state = 3}, + [136] = {.lex_state = 6, .external_lex_state = 3}, + [137] = {.lex_state = 13, .external_lex_state = 3}, + [138] = {.lex_state = 13, .external_lex_state = 3}, + [139] = {.lex_state = 4, .external_lex_state = 3}, + [140] = {.lex_state = 4, .external_lex_state = 3}, + [141] = {.lex_state = 13, .external_lex_state = 3}, + [142] = {.lex_state = 13, .external_lex_state = 3}, + [143] = {.lex_state = 13, .external_lex_state = 3}, + [144] = {.lex_state = 13, .external_lex_state = 3}, + [145] = {.lex_state = 4, .external_lex_state = 3}, + [146] = {.lex_state = 13, .external_lex_state = 3}, + [147] = {.lex_state = 13, .external_lex_state = 3}, + [148] = {.lex_state = 4, .external_lex_state = 3}, + [149] = {.lex_state = 13, .external_lex_state = 3}, + [150] = {.lex_state = 4, .external_lex_state = 3}, + [151] = {.lex_state = 4, .external_lex_state = 3}, + [152] = {.lex_state = 13, .external_lex_state = 3}, + [153] = {.lex_state = 4, .external_lex_state = 3}, + [154] = {.lex_state = 4, .external_lex_state = 3}, + [155] = {.lex_state = 4, .external_lex_state = 3}, + [156] = {.lex_state = 13, .external_lex_state = 3}, + [157] = {.lex_state = 4, .external_lex_state = 3}, + [158] = {.lex_state = 13, .external_lex_state = 3}, + [159] = {.lex_state = 13, .external_lex_state = 3}, + [160] = {.lex_state = 4, .external_lex_state = 3}, + [161] = {.lex_state = 13, .external_lex_state = 3}, + [162] = {.lex_state = 13, .external_lex_state = 3}, + [163] = {.lex_state = 13, .external_lex_state = 3}, + [164] = {.lex_state = 13, .external_lex_state = 3}, + [165] = {.lex_state = 4, .external_lex_state = 3}, + [166] = {.lex_state = 4, .external_lex_state = 3}, + [167] = {.lex_state = 4, .external_lex_state = 3}, + [168] = {.lex_state = 13, .external_lex_state = 3}, + [169] = {.lex_state = 13, .external_lex_state = 3}, + [170] = {.lex_state = 4, .external_lex_state = 3}, + [171] = {.lex_state = 4, .external_lex_state = 3}, + [172] = {.lex_state = 6, .external_lex_state = 3}, + [173] = {.lex_state = 13, .external_lex_state = 3}, + [174] = {.lex_state = 13, .external_lex_state = 3}, + [175] = {.lex_state = 13, .external_lex_state = 3}, + [176] = {.lex_state = 13, .external_lex_state = 3}, + [177] = {.lex_state = 13, .external_lex_state = 3}, + [178] = {.lex_state = 13, .external_lex_state = 3}, + [179] = {.lex_state = 4, .external_lex_state = 3}, + [180] = {.lex_state = 13, .external_lex_state = 3}, + [181] = {.lex_state = 13, .external_lex_state = 3}, + [182] = {.lex_state = 13, .external_lex_state = 3}, + [183] = {.lex_state = 4, .external_lex_state = 3}, + [184] = {.lex_state = 13, .external_lex_state = 3}, + [185] = {.lex_state = 4, .external_lex_state = 3}, + [186] = {.lex_state = 4, .external_lex_state = 3}, + [187] = {.lex_state = 4, .external_lex_state = 3}, + [188] = {.lex_state = 4, .external_lex_state = 3}, + [189] = {.lex_state = 4, .external_lex_state = 3}, + [190] = {.lex_state = 4, .external_lex_state = 3}, + [191] = {.lex_state = 6, .external_lex_state = 3}, + [192] = {.lex_state = 13, .external_lex_state = 3}, + [193] = {.lex_state = 13, .external_lex_state = 3}, + [194] = {.lex_state = 13, .external_lex_state = 3}, + [195] = {.lex_state = 13, .external_lex_state = 3}, + [196] = {.lex_state = 13, .external_lex_state = 3}, + [197] = {.lex_state = 13, .external_lex_state = 3}, + [198] = {.lex_state = 13, .external_lex_state = 3}, + [199] = {.lex_state = 13, .external_lex_state = 3}, + [200] = {.lex_state = 4, .external_lex_state = 3}, + [201] = {.lex_state = 13, .external_lex_state = 3}, + [202] = {.lex_state = 6, .external_lex_state = 3}, + [203] = {.lex_state = 6, .external_lex_state = 3}, + [204] = {.lex_state = 6, .external_lex_state = 3}, + [205] = {.lex_state = 6, .external_lex_state = 3}, + [206] = {.lex_state = 6, .external_lex_state = 3}, + [207] = {.lex_state = 13, .external_lex_state = 3}, + [208] = {.lex_state = 6, .external_lex_state = 3}, + [209] = {.lex_state = 6, .external_lex_state = 3}, + [210] = {.lex_state = 13, .external_lex_state = 3}, + [211] = {.lex_state = 6, .external_lex_state = 3}, + [212] = {.lex_state = 13, .external_lex_state = 3}, + [213] = {.lex_state = 6, .external_lex_state = 3}, + [214] = {.lex_state = 13, .external_lex_state = 3}, + [215] = {.lex_state = 6, .external_lex_state = 3}, + [216] = {.lex_state = 6, .external_lex_state = 3}, + [217] = {.lex_state = 13, .external_lex_state = 3}, + [218] = {.lex_state = 15, .external_lex_state = 3}, + [219] = {.lex_state = 12, .external_lex_state = 3}, + [220] = {.lex_state = 13, .external_lex_state = 3}, + [221] = {.lex_state = 15, .external_lex_state = 3}, + [222] = {.lex_state = 13, .external_lex_state = 3}, + [223] = {.lex_state = 13, .external_lex_state = 3}, + [224] = {.lex_state = 12, .external_lex_state = 3}, + [225] = {.lex_state = 15, .external_lex_state = 3}, + [226] = {.lex_state = 13, .external_lex_state = 3}, + [227] = {.lex_state = 13, .external_lex_state = 3}, + [228] = {.lex_state = 13, .external_lex_state = 3}, + [229] = {.lex_state = 15, .external_lex_state = 3}, + [230] = {.lex_state = 13, .external_lex_state = 3}, + [231] = {.lex_state = 13, .external_lex_state = 3}, + [232] = {.lex_state = 15, .external_lex_state = 3}, + [233] = {.lex_state = 13, .external_lex_state = 3}, + [234] = {.lex_state = 13, .external_lex_state = 3}, + [235] = {.lex_state = 15, .external_lex_state = 3}, + [236] = {.lex_state = 13, .external_lex_state = 3}, + [237] = {.lex_state = 15, .external_lex_state = 3}, + [238] = {.lex_state = 12, .external_lex_state = 3}, + [239] = {.lex_state = 13, .external_lex_state = 3}, + [240] = {.lex_state = 13, .external_lex_state = 3}, + [241] = {.lex_state = 13, .external_lex_state = 3}, + [242] = {.lex_state = 15, .external_lex_state = 3}, + [243] = {.lex_state = 12, .external_lex_state = 3}, + [244] = {.lex_state = 12, .external_lex_state = 3}, + [245] = {.lex_state = 15, .external_lex_state = 3}, + [246] = {.lex_state = 15, .external_lex_state = 3}, + [247] = {.lex_state = 13, .external_lex_state = 3}, + [248] = {.lex_state = 15, .external_lex_state = 3}, + [249] = {.lex_state = 15, .external_lex_state = 3}, + [250] = {.lex_state = 12, .external_lex_state = 3}, + [251] = {.lex_state = 13, .external_lex_state = 3}, + [252] = {.lex_state = 15, .external_lex_state = 3}, + [253] = {.lex_state = 15, .external_lex_state = 3}, + [254] = {.lex_state = 15, .external_lex_state = 3}, + [255] = {.lex_state = 13, .external_lex_state = 3}, + [256] = {.lex_state = 12, .external_lex_state = 3}, + [257] = {.lex_state = 12, .external_lex_state = 3}, + [258] = {.lex_state = 12, .external_lex_state = 3}, + [259] = {.lex_state = 12, .external_lex_state = 3}, + [260] = {.lex_state = 12, .external_lex_state = 3}, + [261] = {.lex_state = 12, .external_lex_state = 3}, + [262] = {.lex_state = 12, .external_lex_state = 3}, + [263] = {.lex_state = 12, .external_lex_state = 3}, + [264] = {.lex_state = 12, .external_lex_state = 3}, + [265] = {.lex_state = 13, .external_lex_state = 3}, + [266] = {.lex_state = 13, .external_lex_state = 3}, + [267] = {.lex_state = 13, .external_lex_state = 3}, + [268] = {.lex_state = 13, .external_lex_state = 3}, + [269] = {.lex_state = 13, .external_lex_state = 3}, + [270] = {.lex_state = 13, .external_lex_state = 3}, + [271] = {.lex_state = 13, .external_lex_state = 3}, + [272] = {.lex_state = 13, .external_lex_state = 3}, + [273] = {.lex_state = 13, .external_lex_state = 3}, + [274] = {.lex_state = 13, .external_lex_state = 3}, + [275] = {.lex_state = 13, .external_lex_state = 3}, + [276] = {.lex_state = 13, .external_lex_state = 3}, + [277] = {.lex_state = 13, .external_lex_state = 3}, + [278] = {.lex_state = 13, .external_lex_state = 3}, + [279] = {.lex_state = 13, .external_lex_state = 3}, + [280] = {.lex_state = 13, .external_lex_state = 3}, + [281] = {.lex_state = 13, .external_lex_state = 3}, + [282] = {.lex_state = 13, .external_lex_state = 3}, + [283] = {.lex_state = 13, .external_lex_state = 3}, + [284] = {.lex_state = 13, .external_lex_state = 3}, + [285] = {.lex_state = 13, .external_lex_state = 3}, + [286] = {.lex_state = 13, .external_lex_state = 3}, + [287] = {.lex_state = 13, .external_lex_state = 3}, + [288] = {.lex_state = 13, .external_lex_state = 3}, + [289] = {.lex_state = 13, .external_lex_state = 3}, + [290] = {.lex_state = 13, .external_lex_state = 3}, + [291] = {.lex_state = 13, .external_lex_state = 3}, + [292] = {.lex_state = 13, .external_lex_state = 3}, + [293] = {.lex_state = 13, .external_lex_state = 3}, + [294] = {.lex_state = 13, .external_lex_state = 3}, + [295] = {.lex_state = 13, .external_lex_state = 3}, + [296] = {.lex_state = 13, .external_lex_state = 3}, + [297] = {.lex_state = 13, .external_lex_state = 3}, + [298] = {.lex_state = 13, .external_lex_state = 3}, + [299] = {.lex_state = 13, .external_lex_state = 3}, + [300] = {.lex_state = 13, .external_lex_state = 3}, + [301] = {.lex_state = 13, .external_lex_state = 3}, + [302] = {.lex_state = 13, .external_lex_state = 3}, + [303] = {.lex_state = 13, .external_lex_state = 3}, + [304] = {.lex_state = 13, .external_lex_state = 3}, + [305] = {.lex_state = 13, .external_lex_state = 3}, + [306] = {.lex_state = 13, .external_lex_state = 3}, + [307] = {.lex_state = 13, .external_lex_state = 3}, + [308] = {.lex_state = 13, .external_lex_state = 3}, + [309] = {.lex_state = 13, .external_lex_state = 3}, + [310] = {.lex_state = 12, .external_lex_state = 3}, + [311] = {.lex_state = 14, .external_lex_state = 3}, + [312] = {.lex_state = 13, .external_lex_state = 3}, + [313] = {.lex_state = 13, .external_lex_state = 3}, + [314] = {.lex_state = 13, .external_lex_state = 3}, + [315] = {.lex_state = 14, .external_lex_state = 3}, + [316] = {.lex_state = 13, .external_lex_state = 3}, + [317] = {.lex_state = 13, .external_lex_state = 3}, + [318] = {.lex_state = 13, .external_lex_state = 3}, + [319] = {.lex_state = 13, .external_lex_state = 3}, + [320] = {.lex_state = 13, .external_lex_state = 3}, + [321] = {.lex_state = 13, .external_lex_state = 3}, + [322] = {.lex_state = 13, .external_lex_state = 3}, + [323] = {.lex_state = 13, .external_lex_state = 3}, + [324] = {.lex_state = 13, .external_lex_state = 3}, + [325] = {.lex_state = 13, .external_lex_state = 3}, + [326] = {.lex_state = 13, .external_lex_state = 3}, + [327] = {.lex_state = 13, .external_lex_state = 3}, + [328] = {.lex_state = 13, .external_lex_state = 3}, + [329] = {.lex_state = 13, .external_lex_state = 3}, + [330] = {.lex_state = 13, .external_lex_state = 3}, + [331] = {.lex_state = 13, .external_lex_state = 3}, + [332] = {.lex_state = 13, .external_lex_state = 3}, + [333] = {.lex_state = 13, .external_lex_state = 3}, + [334] = {.lex_state = 13, .external_lex_state = 3}, + [335] = {.lex_state = 13, .external_lex_state = 3}, + [336] = {.lex_state = 13, .external_lex_state = 3}, + [337] = {.lex_state = 13, .external_lex_state = 3}, + [338] = {.lex_state = 14, .external_lex_state = 3}, + [339] = {.lex_state = 13, .external_lex_state = 3}, + [340] = {.lex_state = 13, .external_lex_state = 3}, + [341] = {.lex_state = 13, .external_lex_state = 3}, + [342] = {.lex_state = 13, .external_lex_state = 3}, + [343] = {.lex_state = 13, .external_lex_state = 3}, + [344] = {.lex_state = 13, .external_lex_state = 3}, + [345] = {.lex_state = 13, .external_lex_state = 3}, + [346] = {.lex_state = 13, .external_lex_state = 3}, + [347] = {.lex_state = 13, .external_lex_state = 3}, + [348] = {.lex_state = 13, .external_lex_state = 3}, + [349] = {.lex_state = 13, .external_lex_state = 3}, + [350] = {.lex_state = 13, .external_lex_state = 3}, + [351] = {.lex_state = 13, .external_lex_state = 3}, + [352] = {.lex_state = 13, .external_lex_state = 3}, + [353] = {.lex_state = 13, .external_lex_state = 3}, + [354] = {.lex_state = 13, .external_lex_state = 3}, + [355] = {.lex_state = 13, .external_lex_state = 3}, + [356] = {.lex_state = 13, .external_lex_state = 3}, + [357] = {.lex_state = 13, .external_lex_state = 3}, + [358] = {.lex_state = 13, .external_lex_state = 3}, + [359] = {.lex_state = 13, .external_lex_state = 3}, + [360] = {.lex_state = 13, .external_lex_state = 3}, + [361] = {.lex_state = 13, .external_lex_state = 3}, + [362] = {.lex_state = 13, .external_lex_state = 3}, + [363] = {.lex_state = 13, .external_lex_state = 3}, + [364] = {.lex_state = 13, .external_lex_state = 3}, + [365] = {.lex_state = 71, .external_lex_state = 3}, + [366] = {.lex_state = 13, .external_lex_state = 3}, + [367] = {.lex_state = 13, .external_lex_state = 3}, + [368] = {.lex_state = 13, .external_lex_state = 3}, + [369] = {.lex_state = 13, .external_lex_state = 3}, + [370] = {.lex_state = 13, .external_lex_state = 3}, + [371] = {.lex_state = 13, .external_lex_state = 3}, + [372] = {.lex_state = 13, .external_lex_state = 3}, + [373] = {.lex_state = 13, .external_lex_state = 3}, + [374] = {.lex_state = 13, .external_lex_state = 3}, + [375] = {.lex_state = 13, .external_lex_state = 3}, + [376] = {.lex_state = 13, .external_lex_state = 3}, + [377] = {.lex_state = 13, .external_lex_state = 3}, + [378] = {.lex_state = 13, .external_lex_state = 3}, + [379] = {.lex_state = 13, .external_lex_state = 3}, + [380] = {.lex_state = 13, .external_lex_state = 3}, + [381] = {.lex_state = 13, .external_lex_state = 3}, + [382] = {.lex_state = 13, .external_lex_state = 3}, + [383] = {.lex_state = 13, .external_lex_state = 3}, + [384] = {.lex_state = 13, .external_lex_state = 3}, + [385] = {.lex_state = 13, .external_lex_state = 3}, + [386] = {.lex_state = 13, .external_lex_state = 3}, + [387] = {.lex_state = 13, .external_lex_state = 3}, + [388] = {.lex_state = 13, .external_lex_state = 3}, + [389] = {.lex_state = 13, .external_lex_state = 3}, + [390] = {.lex_state = 13, .external_lex_state = 3}, + [391] = {.lex_state = 13, .external_lex_state = 3}, + [392] = {.lex_state = 71, .external_lex_state = 3}, + [393] = {.lex_state = 71, .external_lex_state = 3}, + [394] = {.lex_state = 71, .external_lex_state = 3}, + [395] = {.lex_state = 71, .external_lex_state = 3}, + [396] = {.lex_state = 71, .external_lex_state = 3}, + [397] = {.lex_state = 71, .external_lex_state = 3}, + [398] = {.lex_state = 71, .external_lex_state = 3}, + [399] = {.lex_state = 71, .external_lex_state = 3}, + [400] = {.lex_state = 71, .external_lex_state = 3}, + [401] = {.lex_state = 71, .external_lex_state = 3}, + [402] = {.lex_state = 12, .external_lex_state = 3}, + [403] = {.lex_state = 71, .external_lex_state = 3}, + [404] = {.lex_state = 12, .external_lex_state = 3}, + [405] = {.lex_state = 71, .external_lex_state = 3}, + [406] = {.lex_state = 71, .external_lex_state = 3}, + [407] = {.lex_state = 71, .external_lex_state = 3}, + [408] = {.lex_state = 71, .external_lex_state = 3}, + [409] = {.lex_state = 71, .external_lex_state = 3}, + [410] = {.lex_state = 71, .external_lex_state = 3}, + [411] = {.lex_state = 12, .external_lex_state = 3}, + [412] = {.lex_state = 71, .external_lex_state = 3}, + [413] = {.lex_state = 71, .external_lex_state = 3}, + [414] = {.lex_state = 71, .external_lex_state = 3}, + [415] = {.lex_state = 71, .external_lex_state = 3}, + [416] = {.lex_state = 71, .external_lex_state = 3}, + [417] = {.lex_state = 71, .external_lex_state = 3}, + [418] = {.lex_state = 71, .external_lex_state = 3}, + [419] = {.lex_state = 71, .external_lex_state = 3}, + [420] = {.lex_state = 12, .external_lex_state = 3}, + [421] = {.lex_state = 71, .external_lex_state = 3}, + [422] = {.lex_state = 71, .external_lex_state = 3}, + [423] = {.lex_state = 71, .external_lex_state = 3}, + [424] = {.lex_state = 71, .external_lex_state = 3}, + [425] = {.lex_state = 71, .external_lex_state = 3}, + [426] = {.lex_state = 71, .external_lex_state = 3}, + [427] = {.lex_state = 14, .external_lex_state = 3}, + [428] = {.lex_state = 14, .external_lex_state = 3}, + [429] = {.lex_state = 14, .external_lex_state = 3}, + [430] = {.lex_state = 14, .external_lex_state = 3}, + [431] = {.lex_state = 14, .external_lex_state = 3}, + [432] = {.lex_state = 14, .external_lex_state = 3}, + [433] = {.lex_state = 14, .external_lex_state = 3}, + [434] = {.lex_state = 14, .external_lex_state = 3}, + [435] = {.lex_state = 14, .external_lex_state = 3}, + [436] = {.lex_state = 14, .external_lex_state = 3}, + [437] = {.lex_state = 14, .external_lex_state = 3}, + [438] = {.lex_state = 5, .external_lex_state = 3}, + [439] = {.lex_state = 7, .external_lex_state = 3}, + [440] = {.lex_state = 16, .external_lex_state = 3}, + [441] = {.lex_state = 16, .external_lex_state = 3}, + [442] = {.lex_state = 13, .external_lex_state = 3}, + [443] = {.lex_state = 13, .external_lex_state = 3}, + [444] = {.lex_state = 13, .external_lex_state = 3}, + [445] = {.lex_state = 13, .external_lex_state = 3}, + [446] = {.lex_state = 13, .external_lex_state = 3}, + [447] = {.lex_state = 13, .external_lex_state = 3}, + [448] = {.lex_state = 13, .external_lex_state = 3}, + [449] = {.lex_state = 13, .external_lex_state = 3}, + [450] = {.lex_state = 13, .external_lex_state = 3}, + [451] = {.lex_state = 13, .external_lex_state = 3}, + [452] = {.lex_state = 13, .external_lex_state = 3}, + [453] = {.lex_state = 13, .external_lex_state = 3}, + [454] = {.lex_state = 13, .external_lex_state = 3}, + [455] = {.lex_state = 13, .external_lex_state = 3}, + [456] = {.lex_state = 13, .external_lex_state = 3}, + [457] = {.lex_state = 13, .external_lex_state = 3}, + [458] = {.lex_state = 13, .external_lex_state = 3}, + [459] = {.lex_state = 5, .external_lex_state = 3}, + [460] = {.lex_state = 14, .external_lex_state = 3}, + [461] = {.lex_state = 14, .external_lex_state = 3}, + [462] = {.lex_state = 14, .external_lex_state = 3}, + [463] = {.lex_state = 14, .external_lex_state = 3}, + [464] = {.lex_state = 14, .external_lex_state = 3}, + [465] = {.lex_state = 5, .external_lex_state = 3}, + [466] = {.lex_state = 5, .external_lex_state = 3}, + [467] = {.lex_state = 5, .external_lex_state = 3}, + [468] = {.lex_state = 5, .external_lex_state = 3}, + [469] = {.lex_state = 5, .external_lex_state = 3}, + [470] = {.lex_state = 14, .external_lex_state = 3}, + [471] = {.lex_state = 14, .external_lex_state = 3}, + [472] = {.lex_state = 14, .external_lex_state = 3}, + [473] = {.lex_state = 5, .external_lex_state = 3}, + [474] = {.lex_state = 5, .external_lex_state = 3}, + [475] = {.lex_state = 5, .external_lex_state = 3}, + [476] = {.lex_state = 5, .external_lex_state = 3}, + [477] = {.lex_state = 5, .external_lex_state = 3}, + [478] = {.lex_state = 5, .external_lex_state = 3}, + [479] = {.lex_state = 5, .external_lex_state = 3}, + [480] = {.lex_state = 5, .external_lex_state = 3}, + [481] = {.lex_state = 5, .external_lex_state = 3}, + [482] = {.lex_state = 5, .external_lex_state = 3}, + [483] = {.lex_state = 5, .external_lex_state = 3}, + [484] = {.lex_state = 5, .external_lex_state = 3}, + [485] = {.lex_state = 5, .external_lex_state = 3}, + [486] = {.lex_state = 5, .external_lex_state = 3}, + [487] = {.lex_state = 5, .external_lex_state = 3}, + [488] = {.lex_state = 5, .external_lex_state = 3}, + [489] = {.lex_state = 5, .external_lex_state = 3}, + [490] = {.lex_state = 5, .external_lex_state = 3}, + [491] = {.lex_state = 5, .external_lex_state = 3}, + [492] = {.lex_state = 14, .external_lex_state = 3}, + [493] = {.lex_state = 5, .external_lex_state = 3}, + [494] = {.lex_state = 5, .external_lex_state = 3}, + [495] = {.lex_state = 14, .external_lex_state = 3}, + [496] = {.lex_state = 14, .external_lex_state = 3}, + [497] = {.lex_state = 73, .external_lex_state = 3}, + [498] = {.lex_state = 14, .external_lex_state = 3}, + [499] = {.lex_state = 73, .external_lex_state = 3}, + [500] = {.lex_state = 73, .external_lex_state = 3}, + [501] = {.lex_state = 73, .external_lex_state = 3}, + [502] = {.lex_state = 73, .external_lex_state = 3}, + [503] = {.lex_state = 73, .external_lex_state = 3}, + [504] = {.lex_state = 73, .external_lex_state = 3}, + [505] = {.lex_state = 73, .external_lex_state = 3}, + [506] = {.lex_state = 73, .external_lex_state = 3}, + [507] = {.lex_state = 73, .external_lex_state = 3}, + [508] = {.lex_state = 73, .external_lex_state = 3}, + [509] = {.lex_state = 73, .external_lex_state = 3}, + [510] = {.lex_state = 73, .external_lex_state = 3}, + [511] = {.lex_state = 73, .external_lex_state = 3}, + [512] = {.lex_state = 73, .external_lex_state = 3}, + [513] = {.lex_state = 73, .external_lex_state = 3}, + [514] = {.lex_state = 73, .external_lex_state = 3}, + [515] = {.lex_state = 73, .external_lex_state = 3}, + [516] = {.lex_state = 73, .external_lex_state = 3}, + [517] = {.lex_state = 73, .external_lex_state = 3}, + [518] = {.lex_state = 73, .external_lex_state = 3}, + [519] = {.lex_state = 73, .external_lex_state = 3}, + [520] = {.lex_state = 73, .external_lex_state = 3}, + [521] = {.lex_state = 73, .external_lex_state = 3}, + [522] = {.lex_state = 73, .external_lex_state = 3}, + [523] = {.lex_state = 73, .external_lex_state = 3}, + [524] = {.lex_state = 73, .external_lex_state = 3}, + [525] = {.lex_state = 73, .external_lex_state = 3}, + [526] = {.lex_state = 73, .external_lex_state = 3}, + [527] = {.lex_state = 73, .external_lex_state = 3}, + [528] = {.lex_state = 73, .external_lex_state = 3}, + [529] = {.lex_state = 73, .external_lex_state = 3}, + [530] = {.lex_state = 73, .external_lex_state = 3}, + [531] = {.lex_state = 73, .external_lex_state = 3}, + [532] = {.lex_state = 73, .external_lex_state = 3}, + [533] = {.lex_state = 73, .external_lex_state = 3}, + [534] = {.lex_state = 73, .external_lex_state = 3}, + [535] = {.lex_state = 73, .external_lex_state = 3}, + [536] = {.lex_state = 73, .external_lex_state = 3}, + [537] = {.lex_state = 73, .external_lex_state = 3}, + [538] = {.lex_state = 73, .external_lex_state = 3}, + [539] = {.lex_state = 73, .external_lex_state = 3}, + [540] = {.lex_state = 73, .external_lex_state = 3}, + [541] = {.lex_state = 73, .external_lex_state = 3}, + [542] = {.lex_state = 73, .external_lex_state = 3}, + [543] = {.lex_state = 73, .external_lex_state = 3}, + [544] = {.lex_state = 73, .external_lex_state = 3}, + [545] = {.lex_state = 73, .external_lex_state = 3}, + [546] = {.lex_state = 73, .external_lex_state = 3}, + [547] = {.lex_state = 73, .external_lex_state = 3}, + [548] = {.lex_state = 73, .external_lex_state = 3}, + [549] = {.lex_state = 73, .external_lex_state = 3}, + [550] = {.lex_state = 73, .external_lex_state = 3}, + [551] = {.lex_state = 73, .external_lex_state = 3}, + [552] = {.lex_state = 73, .external_lex_state = 3}, + [553] = {.lex_state = 73, .external_lex_state = 3}, + [554] = {.lex_state = 73, .external_lex_state = 3}, + [555] = {.lex_state = 73, .external_lex_state = 3}, + [556] = {.lex_state = 73, .external_lex_state = 3}, + [557] = {.lex_state = 73, .external_lex_state = 3}, + [558] = {.lex_state = 73, .external_lex_state = 3}, + [559] = {.lex_state = 73, .external_lex_state = 3}, + [560] = {.lex_state = 73, .external_lex_state = 3}, + [561] = {.lex_state = 73, .external_lex_state = 3}, + [562] = {.lex_state = 73, .external_lex_state = 3}, + [563] = {.lex_state = 73, .external_lex_state = 3}, + [564] = {.lex_state = 73, .external_lex_state = 3}, + [565] = {.lex_state = 73, .external_lex_state = 3}, + [566] = {.lex_state = 73, .external_lex_state = 3}, + [567] = {.lex_state = 73, .external_lex_state = 3}, + [568] = {.lex_state = 73, .external_lex_state = 3}, + [569] = {.lex_state = 73, .external_lex_state = 3}, + [570] = {.lex_state = 73, .external_lex_state = 3}, + [571] = {.lex_state = 73, .external_lex_state = 3}, + [572] = {.lex_state = 73, .external_lex_state = 3}, + [573] = {.lex_state = 73, .external_lex_state = 3}, + [574] = {.lex_state = 73, .external_lex_state = 3}, + [575] = {.lex_state = 73, .external_lex_state = 3}, + [576] = {.lex_state = 73, .external_lex_state = 3}, + [577] = {.lex_state = 73, .external_lex_state = 3}, + [578] = {.lex_state = 73, .external_lex_state = 3}, + [579] = {.lex_state = 73, .external_lex_state = 3}, + [580] = {.lex_state = 73, .external_lex_state = 3}, + [581] = {.lex_state = 73, .external_lex_state = 3}, + [582] = {.lex_state = 73, .external_lex_state = 3}, + [583] = {.lex_state = 73, .external_lex_state = 3}, + [584] = {.lex_state = 73, .external_lex_state = 3}, + [585] = {.lex_state = 73, .external_lex_state = 3}, + [586] = {.lex_state = 73, .external_lex_state = 3}, + [587] = {.lex_state = 73, .external_lex_state = 3}, + [588] = {.lex_state = 73, .external_lex_state = 3}, + [589] = {.lex_state = 73, .external_lex_state = 3}, + [590] = {.lex_state = 73, .external_lex_state = 3}, + [591] = {.lex_state = 73, .external_lex_state = 3}, + [592] = {.lex_state = 73, .external_lex_state = 3}, + [593] = {.lex_state = 73, .external_lex_state = 3}, + [594] = {.lex_state = 73, .external_lex_state = 3}, + [595] = {.lex_state = 73, .external_lex_state = 3}, + [596] = {.lex_state = 73, .external_lex_state = 3}, + [597] = {.lex_state = 73, .external_lex_state = 3}, + [598] = {.lex_state = 73, .external_lex_state = 3}, + [599] = {.lex_state = 73, .external_lex_state = 3}, + [600] = {.lex_state = 73, .external_lex_state = 3}, + [601] = {.lex_state = 73, .external_lex_state = 3}, + [602] = {.lex_state = 73, .external_lex_state = 3}, + [603] = {.lex_state = 73, .external_lex_state = 3}, + [604] = {.lex_state = 73, .external_lex_state = 3}, + [605] = {.lex_state = 73, .external_lex_state = 3}, + [606] = {.lex_state = 73, .external_lex_state = 3}, + [607] = {.lex_state = 73, .external_lex_state = 3}, + [608] = {.lex_state = 73, .external_lex_state = 3}, + [609] = {.lex_state = 73, .external_lex_state = 3}, + [610] = {.lex_state = 73, .external_lex_state = 3}, + [611] = {.lex_state = 73, .external_lex_state = 3}, + [612] = {.lex_state = 73, .external_lex_state = 3}, + [613] = {.lex_state = 73, .external_lex_state = 3}, + [614] = {.lex_state = 73, .external_lex_state = 3}, + [615] = {.lex_state = 73, .external_lex_state = 3}, + [616] = {.lex_state = 73, .external_lex_state = 3}, + [617] = {.lex_state = 73, .external_lex_state = 3}, + [618] = {.lex_state = 73, .external_lex_state = 3}, + [619] = {.lex_state = 73, .external_lex_state = 3}, + [620] = {.lex_state = 73, .external_lex_state = 3}, + [621] = {.lex_state = 73, .external_lex_state = 3}, + [622] = {.lex_state = 73, .external_lex_state = 3}, + [623] = {.lex_state = 14, .external_lex_state = 3}, + [624] = {.lex_state = 73, .external_lex_state = 3}, + [625] = {.lex_state = 73, .external_lex_state = 3}, + [626] = {.lex_state = 73, .external_lex_state = 3}, + [627] = {.lex_state = 73, .external_lex_state = 3}, + [628] = {.lex_state = 73, .external_lex_state = 3}, + [629] = {.lex_state = 73, .external_lex_state = 3}, + [630] = {.lex_state = 73, .external_lex_state = 3}, + [631] = {.lex_state = 73, .external_lex_state = 3}, + [632] = {.lex_state = 73, .external_lex_state = 3}, + [633] = {.lex_state = 73, .external_lex_state = 3}, + [634] = {.lex_state = 73, .external_lex_state = 3}, + [635] = {.lex_state = 73, .external_lex_state = 3}, + [636] = {.lex_state = 73, .external_lex_state = 3}, + [637] = {.lex_state = 73, .external_lex_state = 3}, + [638] = {.lex_state = 73, .external_lex_state = 3}, + [639] = {.lex_state = 73, .external_lex_state = 3}, + [640] = {.lex_state = 73, .external_lex_state = 3}, + [641] = {.lex_state = 73, .external_lex_state = 3}, + [642] = {.lex_state = 73, .external_lex_state = 3}, + [643] = {.lex_state = 73, .external_lex_state = 3}, + [644] = {.lex_state = 73, .external_lex_state = 3}, + [645] = {.lex_state = 73, .external_lex_state = 3}, + [646] = {.lex_state = 23}, + [647] = {.lex_state = 73, .external_lex_state = 3}, + [648] = {.lex_state = 73, .external_lex_state = 3}, + [649] = {.lex_state = 73, .external_lex_state = 3}, + [650] = {.lex_state = 73, .external_lex_state = 3}, + [651] = {.lex_state = 73, .external_lex_state = 3}, + [652] = {.lex_state = 73, .external_lex_state = 3}, + [653] = {.lex_state = 73, .external_lex_state = 3}, + [654] = {.lex_state = 73, .external_lex_state = 3}, + [655] = {.lex_state = 73, .external_lex_state = 3}, + [656] = {.lex_state = 73, .external_lex_state = 3}, + [657] = {.lex_state = 73, .external_lex_state = 3}, + [658] = {.lex_state = 73, .external_lex_state = 3}, + [659] = {.lex_state = 73, .external_lex_state = 3}, + [660] = {.lex_state = 73, .external_lex_state = 3}, + [661] = {.lex_state = 73, .external_lex_state = 3}, + [662] = {.lex_state = 73, .external_lex_state = 3}, + [663] = {.lex_state = 73, .external_lex_state = 3}, + [664] = {.lex_state = 73, .external_lex_state = 3}, + [665] = {.lex_state = 73, .external_lex_state = 3}, + [666] = {.lex_state = 73, .external_lex_state = 3}, + [667] = {.lex_state = 73, .external_lex_state = 3}, + [668] = {.lex_state = 73, .external_lex_state = 3}, + [669] = {.lex_state = 73, .external_lex_state = 3}, + [670] = {.lex_state = 73, .external_lex_state = 3}, + [671] = {.lex_state = 73, .external_lex_state = 3}, [672] = {.lex_state = 23}, - [673] = {.lex_state = 73, .external_lex_state = 2}, - [674] = {.lex_state = 73, .external_lex_state = 2}, - [675] = {.lex_state = 73, .external_lex_state = 2}, - [676] = {.lex_state = 23}, - [677] = {.lex_state = 73, .external_lex_state = 2}, - [678] = {.lex_state = 73, .external_lex_state = 2}, - [679] = {.lex_state = 14, .external_lex_state = 2}, - [680] = {.lex_state = 14, .external_lex_state = 2}, - [681] = {.lex_state = 73, .external_lex_state = 2}, - [682] = {.lex_state = 73, .external_lex_state = 2}, - [683] = {.lex_state = 73, .external_lex_state = 2}, - [684] = {.lex_state = 73, .external_lex_state = 2}, - [685] = {.lex_state = 73, .external_lex_state = 2}, - [686] = {.lex_state = 14, .external_lex_state = 2}, - [687] = {.lex_state = 73, .external_lex_state = 2}, - [688] = {.lex_state = 73, .external_lex_state = 2}, - [689] = {.lex_state = 73, .external_lex_state = 2}, - [690] = {.lex_state = 73, .external_lex_state = 2}, - [691] = {.lex_state = 73, .external_lex_state = 2}, - [692] = {.lex_state = 73, .external_lex_state = 2}, - [693] = {.lex_state = 73, .external_lex_state = 2}, - [694] = {.lex_state = 73, .external_lex_state = 2}, - [695] = {.lex_state = 73, .external_lex_state = 2}, - [696] = {.lex_state = 73, .external_lex_state = 2}, - [697] = {.lex_state = 73, .external_lex_state = 2}, - [698] = {.lex_state = 73, .external_lex_state = 2}, - [699] = {.lex_state = 73, .external_lex_state = 2}, - [700] = {.lex_state = 73, .external_lex_state = 2}, - [701] = {.lex_state = 73, .external_lex_state = 2}, - [702] = {.lex_state = 73, .external_lex_state = 2}, - [703] = {.lex_state = 73, .external_lex_state = 2}, - [704] = {.lex_state = 73, .external_lex_state = 2}, - [705] = {.lex_state = 73, .external_lex_state = 2}, - [706] = {.lex_state = 73, .external_lex_state = 2}, - [707] = {.lex_state = 73, .external_lex_state = 2}, - [708] = {.lex_state = 73, .external_lex_state = 2}, - [709] = {.lex_state = 73, .external_lex_state = 2}, - [710] = {.lex_state = 73, .external_lex_state = 2}, - [711] = {.lex_state = 73, .external_lex_state = 2}, - [712] = {.lex_state = 73, .external_lex_state = 2}, - [713] = {.lex_state = 73, .external_lex_state = 2}, - [714] = {.lex_state = 73, .external_lex_state = 2}, - [715] = {.lex_state = 73, .external_lex_state = 2}, - [716] = {.lex_state = 73, .external_lex_state = 2}, - [717] = {.lex_state = 73, .external_lex_state = 2}, - [718] = {.lex_state = 73, .external_lex_state = 2}, - [719] = {.lex_state = 73, .external_lex_state = 2}, - [720] = {.lex_state = 14, .external_lex_state = 2}, - [721] = {.lex_state = 73, .external_lex_state = 2}, - [722] = {.lex_state = 73, .external_lex_state = 2}, - [723] = {.lex_state = 73, .external_lex_state = 2}, - [724] = {.lex_state = 73, .external_lex_state = 2}, - [725] = {.lex_state = 73, .external_lex_state = 2}, - [726] = {.lex_state = 73, .external_lex_state = 2}, - [727] = {.lex_state = 73, .external_lex_state = 2}, - [728] = {.lex_state = 73, .external_lex_state = 2}, - [729] = {.lex_state = 73, .external_lex_state = 2}, - [730] = {.lex_state = 73, .external_lex_state = 2}, - [731] = {.lex_state = 73, .external_lex_state = 2}, - [732] = {.lex_state = 73, .external_lex_state = 2}, - [733] = {.lex_state = 73, .external_lex_state = 2}, - [734] = {.lex_state = 73, .external_lex_state = 2}, - [735] = {.lex_state = 73, .external_lex_state = 2}, - [736] = {.lex_state = 73, .external_lex_state = 2}, - [737] = {.lex_state = 73, .external_lex_state = 2}, - [738] = {.lex_state = 73, .external_lex_state = 2}, - [739] = {.lex_state = 73, .external_lex_state = 2}, - [740] = {.lex_state = 73, .external_lex_state = 2}, - [741] = {.lex_state = 73, .external_lex_state = 2}, - [742] = {.lex_state = 73, .external_lex_state = 2}, - [743] = {.lex_state = 73, .external_lex_state = 2}, - [744] = {.lex_state = 73, .external_lex_state = 2}, - [745] = {.lex_state = 73, .external_lex_state = 2}, - [746] = {.lex_state = 73, .external_lex_state = 2}, - [747] = {.lex_state = 23}, - [748] = {.lex_state = 73, .external_lex_state = 2}, - [749] = {.lex_state = 73, .external_lex_state = 2}, - [750] = {.lex_state = 73, .external_lex_state = 2}, - [751] = {.lex_state = 73, .external_lex_state = 2}, - [752] = {.lex_state = 73, .external_lex_state = 2}, - [753] = {.lex_state = 73, .external_lex_state = 2}, - [754] = {.lex_state = 73, .external_lex_state = 2}, - [755] = {.lex_state = 73, .external_lex_state = 2}, - [756] = {.lex_state = 73, .external_lex_state = 2}, - [757] = {.lex_state = 73, .external_lex_state = 2}, - [758] = {.lex_state = 73, .external_lex_state = 2}, - [759] = {.lex_state = 73, .external_lex_state = 2}, - [760] = {.lex_state = 73, .external_lex_state = 2}, - [761] = {.lex_state = 73, .external_lex_state = 2}, - [762] = {.lex_state = 73, .external_lex_state = 2}, - [763] = {.lex_state = 73, .external_lex_state = 2}, - [764] = {.lex_state = 73, .external_lex_state = 2}, - [765] = {.lex_state = 73, .external_lex_state = 2}, - [766] = {.lex_state = 73, .external_lex_state = 2}, - [767] = {.lex_state = 73, .external_lex_state = 2}, - [768] = {.lex_state = 73, .external_lex_state = 2}, - [769] = {.lex_state = 73, .external_lex_state = 2}, - [770] = {.lex_state = 73, .external_lex_state = 2}, - [771] = {.lex_state = 73, .external_lex_state = 2}, - [772] = {.lex_state = 73, .external_lex_state = 2}, - [773] = {.lex_state = 73, .external_lex_state = 2}, - [774] = {.lex_state = 73, .external_lex_state = 2}, - [775] = {.lex_state = 73, .external_lex_state = 2}, - [776] = {.lex_state = 73, .external_lex_state = 2}, - [777] = {.lex_state = 73, .external_lex_state = 2}, - [778] = {.lex_state = 73, .external_lex_state = 2}, - [779] = {.lex_state = 73, .external_lex_state = 2}, - [780] = {.lex_state = 73, .external_lex_state = 2}, - [781] = {.lex_state = 73, .external_lex_state = 2}, - [782] = {.lex_state = 17}, - [783] = {.lex_state = 17}, - [784] = {.lex_state = 14, .external_lex_state = 2}, + [673] = {.lex_state = 73, .external_lex_state = 3}, + [674] = {.lex_state = 14, .external_lex_state = 3}, + [675] = {.lex_state = 73, .external_lex_state = 3}, + [676] = {.lex_state = 73, .external_lex_state = 3}, + [677] = {.lex_state = 73, .external_lex_state = 3}, + [678] = {.lex_state = 73, .external_lex_state = 3}, + [679] = {.lex_state = 73, .external_lex_state = 3}, + [680] = {.lex_state = 73, .external_lex_state = 3}, + [681] = {.lex_state = 73, .external_lex_state = 3}, + [682] = {.lex_state = 73, .external_lex_state = 3}, + [683] = {.lex_state = 73, .external_lex_state = 3}, + [684] = {.lex_state = 73, .external_lex_state = 3}, + [685] = {.lex_state = 73, .external_lex_state = 3}, + [686] = {.lex_state = 73, .external_lex_state = 3}, + [687] = {.lex_state = 73, .external_lex_state = 3}, + [688] = {.lex_state = 73, .external_lex_state = 3}, + [689] = {.lex_state = 73, .external_lex_state = 3}, + [690] = {.lex_state = 73, .external_lex_state = 3}, + [691] = {.lex_state = 73, .external_lex_state = 3}, + [692] = {.lex_state = 23}, + [693] = {.lex_state = 73, .external_lex_state = 3}, + [694] = {.lex_state = 73, .external_lex_state = 3}, + [695] = {.lex_state = 73, .external_lex_state = 3}, + [696] = {.lex_state = 73, .external_lex_state = 3}, + [697] = {.lex_state = 23}, + [698] = {.lex_state = 73, .external_lex_state = 3}, + [699] = {.lex_state = 73, .external_lex_state = 3}, + [700] = {.lex_state = 73, .external_lex_state = 3}, + [701] = {.lex_state = 73, .external_lex_state = 3}, + [702] = {.lex_state = 73, .external_lex_state = 3}, + [703] = {.lex_state = 14, .external_lex_state = 3}, + [704] = {.lex_state = 73, .external_lex_state = 3}, + [705] = {.lex_state = 73, .external_lex_state = 3}, + [706] = {.lex_state = 73, .external_lex_state = 3}, + [707] = {.lex_state = 73, .external_lex_state = 3}, + [708] = {.lex_state = 73, .external_lex_state = 3}, + [709] = {.lex_state = 73, .external_lex_state = 3}, + [710] = {.lex_state = 14, .external_lex_state = 3}, + [711] = {.lex_state = 73, .external_lex_state = 3}, + [712] = {.lex_state = 73, .external_lex_state = 3}, + [713] = {.lex_state = 73, .external_lex_state = 3}, + [714] = {.lex_state = 73, .external_lex_state = 3}, + [715] = {.lex_state = 73, .external_lex_state = 3}, + [716] = {.lex_state = 73, .external_lex_state = 3}, + [717] = {.lex_state = 73, .external_lex_state = 3}, + [718] = {.lex_state = 73, .external_lex_state = 3}, + [719] = {.lex_state = 73, .external_lex_state = 3}, + [720] = {.lex_state = 73, .external_lex_state = 3}, + [721] = {.lex_state = 73, .external_lex_state = 3}, + [722] = {.lex_state = 73, .external_lex_state = 3}, + [723] = {.lex_state = 73, .external_lex_state = 3}, + [724] = {.lex_state = 73, .external_lex_state = 3}, + [725] = {.lex_state = 73, .external_lex_state = 3}, + [726] = {.lex_state = 73, .external_lex_state = 3}, + [727] = {.lex_state = 73, .external_lex_state = 3}, + [728] = {.lex_state = 73, .external_lex_state = 3}, + [729] = {.lex_state = 73, .external_lex_state = 3}, + [730] = {.lex_state = 73, .external_lex_state = 3}, + [731] = {.lex_state = 73, .external_lex_state = 3}, + [732] = {.lex_state = 73, .external_lex_state = 3}, + [733] = {.lex_state = 73, .external_lex_state = 3}, + [734] = {.lex_state = 73, .external_lex_state = 3}, + [735] = {.lex_state = 73, .external_lex_state = 3}, + [736] = {.lex_state = 73, .external_lex_state = 3}, + [737] = {.lex_state = 73, .external_lex_state = 3}, + [738] = {.lex_state = 73, .external_lex_state = 3}, + [739] = {.lex_state = 73, .external_lex_state = 3}, + [740] = {.lex_state = 73, .external_lex_state = 3}, + [741] = {.lex_state = 73, .external_lex_state = 3}, + [742] = {.lex_state = 73, .external_lex_state = 3}, + [743] = {.lex_state = 73, .external_lex_state = 3}, + [744] = {.lex_state = 73, .external_lex_state = 3}, + [745] = {.lex_state = 73, .external_lex_state = 3}, + [746] = {.lex_state = 73, .external_lex_state = 3}, + [747] = {.lex_state = 73, .external_lex_state = 3}, + [748] = {.lex_state = 73, .external_lex_state = 3}, + [749] = {.lex_state = 73, .external_lex_state = 3}, + [750] = {.lex_state = 73, .external_lex_state = 3}, + [751] = {.lex_state = 23}, + [752] = {.lex_state = 73, .external_lex_state = 3}, + [753] = {.lex_state = 73, .external_lex_state = 3}, + [754] = {.lex_state = 73, .external_lex_state = 3}, + [755] = {.lex_state = 73, .external_lex_state = 3}, + [756] = {.lex_state = 73, .external_lex_state = 3}, + [757] = {.lex_state = 73, .external_lex_state = 3}, + [758] = {.lex_state = 73, .external_lex_state = 3}, + [759] = {.lex_state = 73, .external_lex_state = 3}, + [760] = {.lex_state = 73, .external_lex_state = 3}, + [761] = {.lex_state = 73, .external_lex_state = 3}, + [762] = {.lex_state = 73, .external_lex_state = 3}, + [763] = {.lex_state = 73, .external_lex_state = 3}, + [764] = {.lex_state = 73, .external_lex_state = 3}, + [765] = {.lex_state = 73, .external_lex_state = 3}, + [766] = {.lex_state = 73, .external_lex_state = 3}, + [767] = {.lex_state = 73, .external_lex_state = 3}, + [768] = {.lex_state = 73, .external_lex_state = 3}, + [769] = {.lex_state = 73, .external_lex_state = 3}, + [770] = {.lex_state = 73, .external_lex_state = 3}, + [771] = {.lex_state = 73, .external_lex_state = 3}, + [772] = {.lex_state = 73, .external_lex_state = 3}, + [773] = {.lex_state = 73, .external_lex_state = 3}, + [774] = {.lex_state = 73, .external_lex_state = 3}, + [775] = {.lex_state = 14, .external_lex_state = 3}, + [776] = {.lex_state = 73, .external_lex_state = 3}, + [777] = {.lex_state = 73, .external_lex_state = 3}, + [778] = {.lex_state = 73, .external_lex_state = 3}, + [779] = {.lex_state = 73, .external_lex_state = 3}, + [780] = {.lex_state = 73, .external_lex_state = 3}, + [781] = {.lex_state = 73, .external_lex_state = 3}, + [782] = {.lex_state = 73, .external_lex_state = 3}, + [783] = {.lex_state = 73, .external_lex_state = 3}, + [784] = {.lex_state = 73, .external_lex_state = 3}, [785] = {.lex_state = 17}, [786] = {.lex_state = 17}, - [787] = {.lex_state = 17}, - [788] = {.lex_state = 17}, + [787] = {.lex_state = 14, .external_lex_state = 3}, + [788] = {.lex_state = 73, .external_lex_state = 3}, [789] = {.lex_state = 17}, [790] = {.lex_state = 17}, [791] = {.lex_state = 17}, - [792] = {.lex_state = 14, .external_lex_state = 2}, - [793] = {.lex_state = 14, .external_lex_state = 2}, + [792] = {.lex_state = 17}, + [793] = {.lex_state = 17}, [794] = {.lex_state = 17}, - [795] = {.lex_state = 14, .external_lex_state = 2}, - [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 17}, - [798] = {.lex_state = 14, .external_lex_state = 2}, - [799] = {.lex_state = 14, .external_lex_state = 2}, - [800] = {.lex_state = 14, .external_lex_state = 2}, - [801] = {.lex_state = 14, .external_lex_state = 2}, - [802] = {.lex_state = 14, .external_lex_state = 2}, - [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 12, .external_lex_state = 2}, - [805] = {.lex_state = 14, .external_lex_state = 2}, - [806] = {.lex_state = 14, .external_lex_state = 2}, - [807] = {.lex_state = 14, .external_lex_state = 2}, - [808] = {.lex_state = 14, .external_lex_state = 2}, - [809] = {.lex_state = 14, .external_lex_state = 2}, - [810] = {.lex_state = 14, .external_lex_state = 2}, - [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 14, .external_lex_state = 2}, - [814] = {.lex_state = 14, .external_lex_state = 2}, - [815] = {.lex_state = 14, .external_lex_state = 2}, - [816] = {.lex_state = 14, .external_lex_state = 2}, - [817] = {.lex_state = 14, .external_lex_state = 2}, - [818] = {.lex_state = 14, .external_lex_state = 2}, - [819] = {.lex_state = 14, .external_lex_state = 2}, - [820] = {.lex_state = 14, .external_lex_state = 2}, - [821] = {.lex_state = 14, .external_lex_state = 2}, - [822] = {.lex_state = 14, .external_lex_state = 2}, - [823] = {.lex_state = 14, .external_lex_state = 2}, - [824] = {.lex_state = 14, .external_lex_state = 2}, - [825] = {.lex_state = 14, .external_lex_state = 2}, - [826] = {.lex_state = 14, .external_lex_state = 2}, - [827] = {.lex_state = 14, .external_lex_state = 2}, - [828] = {.lex_state = 14, .external_lex_state = 2}, - [829] = {.lex_state = 14, .external_lex_state = 2}, - [830] = {.lex_state = 14, .external_lex_state = 2}, - [831] = {.lex_state = 14, .external_lex_state = 2}, - [832] = {.lex_state = 14, .external_lex_state = 2}, - [833] = {.lex_state = 14, .external_lex_state = 2}, - [834] = {.lex_state = 14, .external_lex_state = 2}, - [835] = {.lex_state = 14, .external_lex_state = 2}, - [836] = {.lex_state = 14, .external_lex_state = 2}, - [837] = {.lex_state = 14, .external_lex_state = 2}, - [838] = {.lex_state = 14, .external_lex_state = 2}, - [839] = {.lex_state = 14, .external_lex_state = 2}, - [840] = {.lex_state = 14, .external_lex_state = 2}, - [841] = {.lex_state = 14, .external_lex_state = 2}, - [842] = {.lex_state = 14, .external_lex_state = 2}, - [843] = {.lex_state = 14, .external_lex_state = 2}, - [844] = {.lex_state = 14, .external_lex_state = 2}, - [845] = {.lex_state = 14, .external_lex_state = 2}, - [846] = {.lex_state = 14, .external_lex_state = 2}, - [847] = {.lex_state = 14, .external_lex_state = 2}, - [848] = {.lex_state = 14, .external_lex_state = 2}, - [849] = {.lex_state = 17}, - [850] = {.lex_state = 17}, - [851] = {.lex_state = 17}, - [852] = {.lex_state = 17}, + [795] = {.lex_state = 14, .external_lex_state = 3}, + [796] = {.lex_state = 14, .external_lex_state = 3}, + [797] = {.lex_state = 14, .external_lex_state = 3}, + [798] = {.lex_state = 14, .external_lex_state = 3}, + [799] = {.lex_state = 14, .external_lex_state = 3}, + [800] = {.lex_state = 14, .external_lex_state = 3}, + [801] = {.lex_state = 17}, + [802] = {.lex_state = 17}, + [803] = {.lex_state = 17}, + [804] = {.lex_state = 14, .external_lex_state = 3}, + [805] = {.lex_state = 14, .external_lex_state = 3}, + [806] = {.lex_state = 14, .external_lex_state = 3}, + [807] = {.lex_state = 12, .external_lex_state = 3}, + [808] = {.lex_state = 14, .external_lex_state = 3}, + [809] = {.lex_state = 14, .external_lex_state = 3}, + [810] = {.lex_state = 14, .external_lex_state = 3}, + [811] = {.lex_state = 14, .external_lex_state = 3}, + [812] = {.lex_state = 14, .external_lex_state = 3}, + [813] = {.lex_state = 14, .external_lex_state = 3}, + [814] = {.lex_state = 14, .external_lex_state = 3}, + [815] = {.lex_state = 14, .external_lex_state = 3}, + [816] = {.lex_state = 14, .external_lex_state = 3}, + [817] = {.lex_state = 14, .external_lex_state = 3}, + [818] = {.lex_state = 14, .external_lex_state = 3}, + [819] = {.lex_state = 14, .external_lex_state = 3}, + [820] = {.lex_state = 14, .external_lex_state = 3}, + [821] = {.lex_state = 14, .external_lex_state = 3}, + [822] = {.lex_state = 14, .external_lex_state = 3}, + [823] = {.lex_state = 14, .external_lex_state = 3}, + [824] = {.lex_state = 14, .external_lex_state = 3}, + [825] = {.lex_state = 14, .external_lex_state = 3}, + [826] = {.lex_state = 14, .external_lex_state = 3}, + [827] = {.lex_state = 14, .external_lex_state = 3}, + [828] = {.lex_state = 14, .external_lex_state = 3}, + [829] = {.lex_state = 14, .external_lex_state = 3}, + [830] = {.lex_state = 14, .external_lex_state = 3}, + [831] = {.lex_state = 14, .external_lex_state = 3}, + [832] = {.lex_state = 14, .external_lex_state = 3}, + [833] = {.lex_state = 14, .external_lex_state = 3}, + [834] = {.lex_state = 14, .external_lex_state = 3}, + [835] = {.lex_state = 14, .external_lex_state = 3}, + [836] = {.lex_state = 14, .external_lex_state = 3}, + [837] = {.lex_state = 14, .external_lex_state = 3}, + [838] = {.lex_state = 14, .external_lex_state = 3}, + [839] = {.lex_state = 14, .external_lex_state = 3}, + [840] = {.lex_state = 14, .external_lex_state = 3}, + [841] = {.lex_state = 14, .external_lex_state = 3}, + [842] = {.lex_state = 14, .external_lex_state = 3}, + [843] = {.lex_state = 14, .external_lex_state = 3}, + [844] = {.lex_state = 14, .external_lex_state = 3}, + [845] = {.lex_state = 14, .external_lex_state = 3}, + [846] = {.lex_state = 14, .external_lex_state = 3}, + [847] = {.lex_state = 14, .external_lex_state = 3}, + [848] = {.lex_state = 14, .external_lex_state = 3}, + [849] = {.lex_state = 14, .external_lex_state = 3}, + [850] = {.lex_state = 14, .external_lex_state = 3}, + [851] = {.lex_state = 14, .external_lex_state = 3}, + [852] = {.lex_state = 14, .external_lex_state = 3}, [853] = {.lex_state = 17}, [854] = {.lex_state = 17}, [855] = {.lex_state = 17}, @@ -11435,98 +11469,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1046] = {.lex_state = 17}, [1047] = {.lex_state = 17}, [1048] = {.lex_state = 17}, - [1049] = {.lex_state = 13, .external_lex_state = 2}, - [1050] = {.lex_state = 13, .external_lex_state = 2}, - [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 15, .external_lex_state = 2}, - [1053] = {.lex_state = 15, .external_lex_state = 2}, - [1054] = {.lex_state = 13, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 17}, - [1057] = {.lex_state = 13, .external_lex_state = 2}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 9}, - [1061] = {.lex_state = 8}, - [1062] = {.lex_state = 8}, - [1063] = {.lex_state = 8}, - [1064] = {.lex_state = 14, .external_lex_state = 2}, - [1065] = {.lex_state = 23}, - [1066] = {.lex_state = 23}, - [1067] = {.lex_state = 23}, - [1068] = {.lex_state = 23}, + [1049] = {.lex_state = 17}, + [1050] = {.lex_state = 17}, + [1051] = {.lex_state = 17}, + [1052] = {.lex_state = 17}, + [1053] = {.lex_state = 13, .external_lex_state = 3}, + [1054] = {.lex_state = 13, .external_lex_state = 3}, + [1055] = {.lex_state = 13, .external_lex_state = 3}, + [1056] = {.lex_state = 15, .external_lex_state = 3}, + [1057] = {.lex_state = 15, .external_lex_state = 3}, + [1058] = {.lex_state = 13, .external_lex_state = 3}, + [1059] = {.lex_state = 12, .external_lex_state = 3}, + [1060] = {.lex_state = 17}, + [1061] = {.lex_state = 13, .external_lex_state = 3}, + [1062] = {.lex_state = 13, .external_lex_state = 3}, + [1063] = {.lex_state = 13, .external_lex_state = 3}, + [1064] = {.lex_state = 9}, + [1065] = {.lex_state = 8}, + [1066] = {.lex_state = 8}, + [1067] = {.lex_state = 8}, + [1068] = {.lex_state = 8}, [1069] = {.lex_state = 23}, [1070] = {.lex_state = 23}, [1071] = {.lex_state = 23}, - [1072] = {.lex_state = 8}, + [1072] = {.lex_state = 23}, [1073] = {.lex_state = 23}, [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 26}, - [1076] = {.lex_state = 17}, - [1077] = {.lex_state = 17}, - [1078] = {.lex_state = 8}, - [1079] = {.lex_state = 17}, - [1080] = {.lex_state = 8}, + [1075] = {.lex_state = 23}, + [1076] = {.lex_state = 14, .external_lex_state = 3}, + [1077] = {.lex_state = 23}, + [1078] = {.lex_state = 23}, + [1079] = {.lex_state = 26}, + [1080] = {.lex_state = 17}, [1081] = {.lex_state = 26}, - [1082] = {.lex_state = 8}, - [1083] = {.lex_state = 26}, + [1082] = {.lex_state = 17}, + [1083] = {.lex_state = 8}, [1084] = {.lex_state = 8}, [1085] = {.lex_state = 8}, [1086] = {.lex_state = 8}, [1087] = {.lex_state = 8}, - [1088] = {.lex_state = 17}, - [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 8}, - [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 9}, - [1093] = {.lex_state = 9}, - [1094] = {.lex_state = 9}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 14, .external_lex_state = 2}, - [1097] = {.lex_state = 9}, - [1098] = {.lex_state = 17}, - [1099] = {.lex_state = 17}, - [1100] = {.lex_state = 9}, + [1088] = {.lex_state = 26}, + [1089] = {.lex_state = 17}, + [1090] = {.lex_state = 26}, + [1091] = {.lex_state = 8}, + [1092] = {.lex_state = 26}, + [1093] = {.lex_state = 8}, + [1094] = {.lex_state = 8}, + [1095] = {.lex_state = 17}, + [1096] = {.lex_state = 9}, + [1097] = {.lex_state = 14, .external_lex_state = 3}, + [1098] = {.lex_state = 14, .external_lex_state = 3}, + [1099] = {.lex_state = 9}, + [1100] = {.lex_state = 17}, [1101] = {.lex_state = 9}, [1102] = {.lex_state = 17}, [1103] = {.lex_state = 17}, [1104] = {.lex_state = 9}, - [1105] = {.lex_state = 9}, - [1106] = {.lex_state = 23}, + [1105] = {.lex_state = 17}, + [1106] = {.lex_state = 9}, [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 9}, + [1108] = {.lex_state = 23}, [1109] = {.lex_state = 9}, [1110] = {.lex_state = 9}, - [1111] = {.lex_state = 14, .external_lex_state = 2}, - [1112] = {.lex_state = 21}, - [1113] = {.lex_state = 14, .external_lex_state = 2}, - [1114] = {.lex_state = 23}, - [1115] = {.lex_state = 17}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, + [1111] = {.lex_state = 9}, + [1112] = {.lex_state = 23}, + [1113] = {.lex_state = 9}, + [1114] = {.lex_state = 9}, + [1115] = {.lex_state = 9}, + [1116] = {.lex_state = 14, .external_lex_state = 3}, [1117] = {.lex_state = 9}, - [1118] = {.lex_state = 9}, - [1119] = {.lex_state = 9}, + [1118] = {.lex_state = 21}, + [1119] = {.lex_state = 14, .external_lex_state = 3}, [1120] = {.lex_state = 23}, - [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, + [1121] = {.lex_state = 17}, + [1122] = {.lex_state = 12, .external_lex_state = 3}, [1123] = {.lex_state = 9}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, + [1124] = {.lex_state = 9}, [1125] = {.lex_state = 9}, - [1126] = {.lex_state = 9}, - [1127] = {.lex_state = 21}, - [1128] = {.lex_state = 20}, + [1126] = {.lex_state = 23}, + [1127] = {.lex_state = 23}, + [1128] = {.lex_state = 12, .external_lex_state = 3}, [1129] = {.lex_state = 9}, - [1130] = {.lex_state = 9}, - [1131] = {.lex_state = 20}, - [1132] = {.lex_state = 20}, - [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 9}, - [1135] = {.lex_state = 23}, - [1136] = {.lex_state = 23}, - [1137] = {.lex_state = 23}, - [1138] = {.lex_state = 23}, + [1130] = {.lex_state = 12, .external_lex_state = 3}, + [1131] = {.lex_state = 9}, + [1132] = {.lex_state = 9}, + [1133] = {.lex_state = 21}, + [1134] = {.lex_state = 20}, + [1135] = {.lex_state = 9}, + [1136] = {.lex_state = 9}, + [1137] = {.lex_state = 20}, + [1138] = {.lex_state = 20}, [1139] = {.lex_state = 23}, - [1140] = {.lex_state = 23}, + [1140] = {.lex_state = 9}, [1141] = {.lex_state = 23}, [1142] = {.lex_state = 23}, [1143] = {.lex_state = 23}, @@ -11537,17 +11571,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1148] = {.lex_state = 23}, [1149] = {.lex_state = 23}, [1150] = {.lex_state = 23}, - [1151] = {.lex_state = 8}, - [1152] = {.lex_state = 20}, - [1153] = {.lex_state = 20}, - [1154] = {.lex_state = 20}, - [1155] = {.lex_state = 20}, + [1151] = {.lex_state = 23}, + [1152] = {.lex_state = 23}, + [1153] = {.lex_state = 23}, + [1154] = {.lex_state = 23}, + [1155] = {.lex_state = 23}, [1156] = {.lex_state = 23}, - [1157] = {.lex_state = 23}, - [1158] = {.lex_state = 23}, - [1159] = {.lex_state = 23}, - [1160] = {.lex_state = 23}, - [1161] = {.lex_state = 23}, + [1157] = {.lex_state = 8}, + [1158] = {.lex_state = 20}, + [1159] = {.lex_state = 20}, + [1160] = {.lex_state = 20}, + [1161] = {.lex_state = 20}, [1162] = {.lex_state = 23}, [1163] = {.lex_state = 23}, [1164] = {.lex_state = 23}, @@ -11578,16 +11612,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1189] = {.lex_state = 23}, [1190] = {.lex_state = 23}, [1191] = {.lex_state = 23}, - [1192] = {.lex_state = 9}, - [1193] = {.lex_state = 20}, - [1194] = {.lex_state = 9}, - [1195] = {.lex_state = 20}, + [1192] = {.lex_state = 23}, + [1193] = {.lex_state = 23}, + [1194] = {.lex_state = 23}, + [1195] = {.lex_state = 23}, [1196] = {.lex_state = 23}, [1197] = {.lex_state = 23}, - [1198] = {.lex_state = 23}, - [1199] = {.lex_state = 23}, - [1200] = {.lex_state = 23}, - [1201] = {.lex_state = 23}, + [1198] = {.lex_state = 9}, + [1199] = {.lex_state = 20}, + [1200] = {.lex_state = 9}, + [1201] = {.lex_state = 20}, [1202] = {.lex_state = 23}, [1203] = {.lex_state = 23}, [1204] = {.lex_state = 23}, @@ -11632,14 +11666,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1243] = {.lex_state = 23}, [1244] = {.lex_state = 23}, [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 9}, - [1247] = {.lex_state = 20}, + [1246] = {.lex_state = 23}, + [1247] = {.lex_state = 23}, [1248] = {.lex_state = 23}, [1249] = {.lex_state = 23}, [1250] = {.lex_state = 23}, [1251] = {.lex_state = 23}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 23}, + [1252] = {.lex_state = 9}, + [1253] = {.lex_state = 20}, [1254] = {.lex_state = 23}, [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, @@ -11662,7 +11696,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 23}, [1274] = {.lex_state = 23}, [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 9}, + [1276] = {.lex_state = 23}, [1277] = {.lex_state = 23}, [1278] = {.lex_state = 23}, [1279] = {.lex_state = 23}, @@ -11685,12 +11719,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 9}, - [1300] = {.lex_state = 20}, + [1299] = {.lex_state = 23}, + [1300] = {.lex_state = 23}, [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, - [1303] = {.lex_state = 23}, - [1304] = {.lex_state = 23}, + [1303] = {.lex_state = 9}, + [1304] = {.lex_state = 20}, [1305] = {.lex_state = 23}, [1306] = {.lex_state = 23}, [1307] = {.lex_state = 23}, @@ -11738,12 +11772,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1349] = {.lex_state = 23}, [1350] = {.lex_state = 23}, [1351] = {.lex_state = 23}, - [1352] = {.lex_state = 9}, - [1353] = {.lex_state = 20}, + [1352] = {.lex_state = 23}, + [1353] = {.lex_state = 23}, [1354] = {.lex_state = 23}, [1355] = {.lex_state = 23}, - [1356] = {.lex_state = 23}, - [1357] = {.lex_state = 23}, + [1356] = {.lex_state = 9}, + [1357] = {.lex_state = 20}, [1358] = {.lex_state = 23}, [1359] = {.lex_state = 23}, [1360] = {.lex_state = 23}, @@ -11795,21 +11829,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1406] = {.lex_state = 23}, [1407] = {.lex_state = 23}, [1408] = {.lex_state = 23}, - [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 17}, - [1411] = {.lex_state = 14, .external_lex_state = 2}, - [1412] = {.lex_state = 14, .external_lex_state = 2}, - [1413] = {.lex_state = 14, .external_lex_state = 2}, - [1414] = {.lex_state = 23}, - [1415] = {.lex_state = 14, .external_lex_state = 2}, - [1416] = {.lex_state = 9}, - [1417] = {.lex_state = 9}, - [1418] = {.lex_state = 9}, - [1419] = {.lex_state = 23}, - [1420] = {.lex_state = 10}, + [1409] = {.lex_state = 23}, + [1410] = {.lex_state = 23}, + [1411] = {.lex_state = 23}, + [1412] = {.lex_state = 23}, + [1413] = {.lex_state = 17}, + [1414] = {.lex_state = 14, .external_lex_state = 3}, + [1415] = {.lex_state = 14, .external_lex_state = 3}, + [1416] = {.lex_state = 14, .external_lex_state = 3}, + [1417] = {.lex_state = 23}, + [1418] = {.lex_state = 14, .external_lex_state = 3}, + [1419] = {.lex_state = 9}, + [1420] = {.lex_state = 9}, [1421] = {.lex_state = 9}, [1422] = {.lex_state = 9}, - [1423] = {.lex_state = 9}, + [1423] = {.lex_state = 23}, [1424] = {.lex_state = 9}, [1425] = {.lex_state = 9}, [1426] = {.lex_state = 9}, @@ -11868,7 +11902,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1479] = {.lex_state = 9}, [1480] = {.lex_state = 9}, [1481] = {.lex_state = 9}, - [1482] = {.lex_state = 17}, + [1482] = {.lex_state = 9}, [1483] = {.lex_state = 9}, [1484] = {.lex_state = 9}, [1485] = {.lex_state = 9}, @@ -11886,7 +11920,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1497] = {.lex_state = 9}, [1498] = {.lex_state = 9}, [1499] = {.lex_state = 9}, - [1500] = {.lex_state = 9}, + [1500] = {.lex_state = 17}, [1501] = {.lex_state = 9}, [1502] = {.lex_state = 9}, [1503] = {.lex_state = 9}, @@ -11896,7 +11930,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1507] = {.lex_state = 9}, [1508] = {.lex_state = 9}, [1509] = {.lex_state = 9}, - [1510] = {.lex_state = 9}, + [1510] = {.lex_state = 10}, [1511] = {.lex_state = 9}, [1512] = {.lex_state = 9}, [1513] = {.lex_state = 9}, @@ -11926,184 +11960,184 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1537] = {.lex_state = 9}, [1538] = {.lex_state = 9}, [1539] = {.lex_state = 9}, - [1540] = {.lex_state = 17}, - [1541] = {.lex_state = 17}, + [1540] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, [1542] = {.lex_state = 9}, [1543] = {.lex_state = 9}, - [1544] = {.lex_state = 9}, - [1545] = {.lex_state = 9}, + [1544] = {.lex_state = 17}, + [1545] = {.lex_state = 17}, [1546] = {.lex_state = 17}, - [1547] = {.lex_state = 17}, + [1547] = {.lex_state = 9}, [1548] = {.lex_state = 9}, - [1549] = {.lex_state = 9}, + [1549] = {.lex_state = 17}, [1550] = {.lex_state = 9}, [1551] = {.lex_state = 9}, - [1552] = {.lex_state = 11}, - [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 11}, - [1555] = {.lex_state = 9}, - [1556] = {.lex_state = 17}, - [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 17}, + [1552] = {.lex_state = 13, .external_lex_state = 3}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 17}, + [1555] = {.lex_state = 13, .external_lex_state = 3}, + [1556] = {.lex_state = 9}, + [1557] = {.lex_state = 13, .external_lex_state = 3}, + [1558] = {.lex_state = 13, .external_lex_state = 3}, + [1559] = {.lex_state = 13, .external_lex_state = 3}, [1560] = {.lex_state = 9}, [1561] = {.lex_state = 17}, [1562] = {.lex_state = 17}, [1563] = {.lex_state = 9}, [1564] = {.lex_state = 9}, - [1565] = {.lex_state = 13, .external_lex_state = 2}, - [1566] = {.lex_state = 13, .external_lex_state = 2}, - [1567] = {.lex_state = 9}, + [1565] = {.lex_state = 9}, + [1566] = {.lex_state = 9}, + [1567] = {.lex_state = 17}, [1568] = {.lex_state = 9}, - [1569] = {.lex_state = 13, .external_lex_state = 2}, - [1570] = {.lex_state = 13, .external_lex_state = 2}, + [1569] = {.lex_state = 9}, + [1570] = {.lex_state = 9}, [1571] = {.lex_state = 9}, [1572] = {.lex_state = 9}, [1573] = {.lex_state = 9}, [1574] = {.lex_state = 9}, - [1575] = {.lex_state = 13, .external_lex_state = 2}, - [1576] = {.lex_state = 9}, - [1577] = {.lex_state = 13, .external_lex_state = 2}, - [1578] = {.lex_state = 9}, - [1579] = {.lex_state = 9}, + [1575] = {.lex_state = 9}, + [1576] = {.lex_state = 11}, + [1577] = {.lex_state = 13, .external_lex_state = 3}, + [1578] = {.lex_state = 11}, + [1579] = {.lex_state = 11}, [1580] = {.lex_state = 9}, - [1581] = {.lex_state = 17}, - [1582] = {.lex_state = 9}, - [1583] = {.lex_state = 10}, - [1584] = {.lex_state = 11}, + [1581] = {.lex_state = 9}, + [1582] = {.lex_state = 17}, + [1583] = {.lex_state = 9}, + [1584] = {.lex_state = 9}, [1585] = {.lex_state = 9}, - [1586] = {.lex_state = 11}, - [1587] = {.lex_state = 10}, - [1588] = {.lex_state = 10}, - [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 10}, + [1586] = {.lex_state = 9}, + [1587] = {.lex_state = 9}, + [1588] = {.lex_state = 11}, + [1589] = {.lex_state = 10}, + [1590] = {.lex_state = 11}, [1591] = {.lex_state = 11}, - [1592] = {.lex_state = 9}, - [1593] = {.lex_state = 9}, - [1594] = {.lex_state = 11}, - [1595] = {.lex_state = 9}, + [1592] = {.lex_state = 10}, + [1593] = {.lex_state = 10}, + [1594] = {.lex_state = 9}, + [1595] = {.lex_state = 11}, [1596] = {.lex_state = 11}, - [1597] = {.lex_state = 11}, - [1598] = {.lex_state = 11}, - [1599] = {.lex_state = 9}, + [1597] = {.lex_state = 10}, + [1598] = {.lex_state = 9}, + [1599] = {.lex_state = 10}, [1600] = {.lex_state = 11}, - [1601] = {.lex_state = 9}, - [1602] = {.lex_state = 10}, + [1601] = {.lex_state = 11}, + [1602] = {.lex_state = 9}, [1603] = {.lex_state = 11}, [1604] = {.lex_state = 9}, - [1605] = {.lex_state = 17}, - [1606] = {.lex_state = 10}, - [1607] = {.lex_state = 17}, + [1605] = {.lex_state = 9}, + [1606] = {.lex_state = 11}, + [1607] = {.lex_state = 9}, [1608] = {.lex_state = 9}, - [1609] = {.lex_state = 9}, - [1610] = {.lex_state = 9}, + [1609] = {.lex_state = 10}, + [1610] = {.lex_state = 10}, [1611] = {.lex_state = 10}, [1612] = {.lex_state = 10}, - [1613] = {.lex_state = 10}, - [1614] = {.lex_state = 9}, + [1613] = {.lex_state = 9}, + [1614] = {.lex_state = 10}, [1615] = {.lex_state = 10}, - [1616] = {.lex_state = 9}, + [1616] = {.lex_state = 10}, [1617] = {.lex_state = 10}, - [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 9}, + [1618] = {.lex_state = 9}, + [1619] = {.lex_state = 17}, [1620] = {.lex_state = 10}, - [1621] = {.lex_state = 10}, - [1622] = {.lex_state = 9}, - [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 9}, + [1621] = {.lex_state = 9}, + [1622] = {.lex_state = 10}, + [1623] = {.lex_state = 9}, + [1624] = {.lex_state = 10}, [1625] = {.lex_state = 9}, [1626] = {.lex_state = 9}, [1627] = {.lex_state = 9}, [1628] = {.lex_state = 9}, [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 9}, + [1630] = {.lex_state = 10}, [1631] = {.lex_state = 9}, - [1632] = {.lex_state = 10}, - [1633] = {.lex_state = 10}, - [1634] = {.lex_state = 17}, - [1635] = {.lex_state = 10}, - [1636] = {.lex_state = 10}, - [1637] = {.lex_state = 9}, + [1632] = {.lex_state = 9}, + [1633] = {.lex_state = 9}, + [1634] = {.lex_state = 9}, + [1635] = {.lex_state = 9}, + [1636] = {.lex_state = 9}, + [1637] = {.lex_state = 10}, [1638] = {.lex_state = 17}, - [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 10}, - [1641] = {.lex_state = 22}, - [1642] = {.lex_state = 10}, - [1643] = {.lex_state = 10}, - [1644] = {.lex_state = 22}, - [1645] = {.lex_state = 10}, + [1639] = {.lex_state = 17}, + [1640] = {.lex_state = 9}, + [1641] = {.lex_state = 10}, + [1642] = {.lex_state = 17}, + [1643] = {.lex_state = 9}, + [1644] = {.lex_state = 9}, + [1645] = {.lex_state = 22}, [1646] = {.lex_state = 10}, - [1647] = {.lex_state = 9}, + [1647] = {.lex_state = 22}, [1648] = {.lex_state = 9}, - [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 22}, - [1652] = {.lex_state = 10}, - [1653] = {.lex_state = 10}, - [1654] = {.lex_state = 9}, + [1649] = {.lex_state = 17}, + [1650] = {.lex_state = 10}, + [1651] = {.lex_state = 9}, + [1652] = {.lex_state = 9}, + [1653] = {.lex_state = 9}, + [1654] = {.lex_state = 22}, [1655] = {.lex_state = 9}, - [1656] = {.lex_state = 17}, - [1657] = {.lex_state = 10}, - [1658] = {.lex_state = 9}, + [1656] = {.lex_state = 10}, + [1657] = {.lex_state = 22}, + [1658] = {.lex_state = 10}, [1659] = {.lex_state = 10}, - [1660] = {.lex_state = 10}, - [1661] = {.lex_state = 22}, - [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 9}, - [1664] = {.lex_state = 9}, + [1660] = {.lex_state = 9}, + [1661] = {.lex_state = 10}, + [1662] = {.lex_state = 10}, + [1663] = {.lex_state = 10}, + [1664] = {.lex_state = 10}, [1665] = {.lex_state = 9}, - [1666] = {.lex_state = 10}, - [1667] = {.lex_state = 9}, - [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 10}, + [1666] = {.lex_state = 9}, + [1667] = {.lex_state = 10}, + [1668] = {.lex_state = 10}, + [1669] = {.lex_state = 9}, [1670] = {.lex_state = 9}, - [1671] = {.lex_state = 22}, - [1672] = {.lex_state = 9}, - [1673] = {.lex_state = 22}, + [1671] = {.lex_state = 9}, + [1672] = {.lex_state = 10}, + [1673] = {.lex_state = 9}, [1674] = {.lex_state = 9}, [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 10}, + [1676] = {.lex_state = 9}, [1677] = {.lex_state = 9}, [1678] = {.lex_state = 9}, - [1679] = {.lex_state = 10}, - [1680] = {.lex_state = 9}, + [1679] = {.lex_state = 9}, + [1680] = {.lex_state = 11}, [1681] = {.lex_state = 9}, - [1682] = {.lex_state = 9}, - [1683] = {.lex_state = 10}, - [1684] = {.lex_state = 9}, - [1685] = {.lex_state = 10}, - [1686] = {.lex_state = 10}, - [1687] = {.lex_state = 9}, - [1688] = {.lex_state = 9}, - [1689] = {.lex_state = 10}, + [1682] = {.lex_state = 10}, + [1683] = {.lex_state = 22}, + [1684] = {.lex_state = 10}, + [1685] = {.lex_state = 9}, + [1686] = {.lex_state = 9}, + [1687] = {.lex_state = 22}, + [1688] = {.lex_state = 22}, + [1689] = {.lex_state = 22}, [1690] = {.lex_state = 10}, [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 11}, + [1692] = {.lex_state = 22}, [1693] = {.lex_state = 9}, - [1694] = {.lex_state = 22}, - [1695] = {.lex_state = 22}, + [1694] = {.lex_state = 10}, + [1695] = {.lex_state = 10}, [1696] = {.lex_state = 22}, [1697] = {.lex_state = 22}, - [1698] = {.lex_state = 22}, - [1699] = {.lex_state = 9}, + [1698] = {.lex_state = 9}, + [1699] = {.lex_state = 10}, [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 10}, - [1703] = {.lex_state = 10}, - [1704] = {.lex_state = 10}, - [1705] = {.lex_state = 9}, + [1701] = {.lex_state = 10}, + [1702] = {.lex_state = 22}, + [1703] = {.lex_state = 9}, + [1704] = {.lex_state = 9}, + [1705] = {.lex_state = 10}, [1706] = {.lex_state = 10}, - [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 9}, + [1707] = {.lex_state = 10}, + [1708] = {.lex_state = 10}, [1709] = {.lex_state = 10}, - [1710] = {.lex_state = 10}, + [1710] = {.lex_state = 9}, [1711] = {.lex_state = 10}, [1712] = {.lex_state = 10}, [1713] = {.lex_state = 10}, [1714] = {.lex_state = 10}, [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 10}, - [1717] = {.lex_state = 10}, + [1716] = {.lex_state = 9}, + [1717] = {.lex_state = 9}, [1718] = {.lex_state = 10}, [1719] = {.lex_state = 10}, [1720] = {.lex_state = 10}, @@ -12112,9 +12146,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1723] = {.lex_state = 9}, [1724] = {.lex_state = 9}, [1725] = {.lex_state = 10}, - [1726] = {.lex_state = 9}, - [1727] = {.lex_state = 9}, - [1728] = {.lex_state = 9}, + [1726] = {.lex_state = 10}, + [1727] = {.lex_state = 10}, + [1728] = {.lex_state = 10}, [1729] = {.lex_state = 9}, [1730] = {.lex_state = 9}, [1731] = {.lex_state = 9}, @@ -12130,38 +12164,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 10}, [1742] = {.lex_state = 10}, [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 9}, + [1744] = {.lex_state = 10}, [1745] = {.lex_state = 10}, [1746] = {.lex_state = 10}, [1747] = {.lex_state = 10}, [1748] = {.lex_state = 9}, - [1749] = {.lex_state = 10}, - [1750] = {.lex_state = 10}, + [1749] = {.lex_state = 9}, + [1750] = {.lex_state = 9}, [1751] = {.lex_state = 10}, - [1752] = {.lex_state = 10}, + [1752] = {.lex_state = 9}, [1753] = {.lex_state = 10}, [1754] = {.lex_state = 10}, - [1755] = {.lex_state = 10}, + [1755] = {.lex_state = 9}, [1756] = {.lex_state = 10}, [1757] = {.lex_state = 10}, [1758] = {.lex_state = 10}, - [1759] = {.lex_state = 9}, + [1759] = {.lex_state = 10}, [1760] = {.lex_state = 10}, [1761] = {.lex_state = 10}, [1762] = {.lex_state = 10}, - [1763] = {.lex_state = 9}, + [1763] = {.lex_state = 10}, [1764] = {.lex_state = 10}, [1765] = {.lex_state = 10}, [1766] = {.lex_state = 10}, [1767] = {.lex_state = 10}, [1768] = {.lex_state = 10}, - [1769] = {.lex_state = 10}, - [1770] = {.lex_state = 10}, + [1769] = {.lex_state = 9}, + [1770] = {.lex_state = 17}, [1771] = {.lex_state = 10}, - [1772] = {.lex_state = 9}, + [1772] = {.lex_state = 10}, [1773] = {.lex_state = 10}, [1774] = {.lex_state = 10}, - [1775] = {.lex_state = 10}, + [1775] = {.lex_state = 9}, [1776] = {.lex_state = 10}, [1777] = {.lex_state = 10}, [1778] = {.lex_state = 10}, @@ -12169,17 +12203,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1780] = {.lex_state = 10}, [1781] = {.lex_state = 10}, [1782] = {.lex_state = 10}, - [1783] = {.lex_state = 10}, + [1783] = {.lex_state = 9}, [1784] = {.lex_state = 9}, - [1785] = {.lex_state = 9}, + [1785] = {.lex_state = 10}, [1786] = {.lex_state = 10}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 10}, [1789] = {.lex_state = 10}, - [1790] = {.lex_state = 10}, + [1790] = {.lex_state = 9}, [1791] = {.lex_state = 10}, - [1792] = {.lex_state = 9}, - [1793] = {.lex_state = 10}, + [1792] = {.lex_state = 10}, + [1793] = {.lex_state = 9}, [1794] = {.lex_state = 10}, [1795] = {.lex_state = 10}, [1796] = {.lex_state = 10}, @@ -12207,44 +12241,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 10}, [1819] = {.lex_state = 10}, [1820] = {.lex_state = 10}, - [1821] = {.lex_state = 10}, + [1821] = {.lex_state = 9}, [1822] = {.lex_state = 10}, [1823] = {.lex_state = 10}, [1824] = {.lex_state = 10}, [1825] = {.lex_state = 10}, [1826] = {.lex_state = 10}, - [1827] = {.lex_state = 9}, + [1827] = {.lex_state = 10}, [1828] = {.lex_state = 10}, [1829] = {.lex_state = 10}, - [1830] = {.lex_state = 10}, + [1830] = {.lex_state = 9}, [1831] = {.lex_state = 10}, [1832] = {.lex_state = 10}, [1833] = {.lex_state = 10}, [1834] = {.lex_state = 10}, [1835] = {.lex_state = 10}, [1836] = {.lex_state = 10}, - [1837] = {.lex_state = 10}, - [1838] = {.lex_state = 10}, + [1837] = {.lex_state = 9}, + [1838] = {.lex_state = 9}, [1839] = {.lex_state = 10}, [1840] = {.lex_state = 10}, [1841] = {.lex_state = 10}, - [1842] = {.lex_state = 10}, + [1842] = {.lex_state = 9}, [1843] = {.lex_state = 9}, [1844] = {.lex_state = 10}, [1845] = {.lex_state = 9}, [1846] = {.lex_state = 10}, - [1847] = {.lex_state = 10}, - [1848] = {.lex_state = 9}, + [1847] = {.lex_state = 9}, + [1848] = {.lex_state = 10}, [1849] = {.lex_state = 9}, [1850] = {.lex_state = 10}, [1851] = {.lex_state = 9}, - [1852] = {.lex_state = 9}, + [1852] = {.lex_state = 10}, [1853] = {.lex_state = 9}, [1854] = {.lex_state = 17}, - [1855] = {.lex_state = 9}, - [1856] = {.lex_state = 10}, - [1857] = {.lex_state = 9}, - [1858] = {.lex_state = 10}, + [1855] = {.lex_state = 10}, + [1856] = {.lex_state = 9}, + [1857] = {.lex_state = 10}, + [1858] = {.lex_state = 9}, [1859] = {.lex_state = 9}, [1860] = {.lex_state = 9}, [1861] = {.lex_state = 9}, @@ -12254,23 +12288,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1865] = {.lex_state = 9}, [1866] = {.lex_state = 9}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 9}, - [1869] = {.lex_state = 9}, - [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 9}, + [1868] = {.lex_state = 10}, + [1869] = {.lex_state = 10}, + [1870] = {.lex_state = 10}, + [1871] = {.lex_state = 10}, [1872] = {.lex_state = 9}, [1873] = {.lex_state = 9}, [1874] = {.lex_state = 9}, [1875] = {.lex_state = 9}, - [1876] = {.lex_state = 17}, + [1876] = {.lex_state = 9}, [1877] = {.lex_state = 9}, - [1878] = {.lex_state = 9}, + [1878] = {.lex_state = 10}, [1879] = {.lex_state = 9}, [1880] = {.lex_state = 9}, [1881] = {.lex_state = 9}, [1882] = {.lex_state = 10}, - [1883] = {.lex_state = 9}, - [1884] = {.lex_state = 9}, + [1883] = {.lex_state = 10}, + [1884] = {.lex_state = 10}, [1885] = {.lex_state = 9}, [1886] = {.lex_state = 10}, [1887] = {.lex_state = 9}, @@ -12278,72 +12312,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1889] = {.lex_state = 9}, [1890] = {.lex_state = 9}, [1891] = {.lex_state = 9}, - [1892] = {.lex_state = 9}, + [1892] = {.lex_state = 10}, [1893] = {.lex_state = 9}, [1894] = {.lex_state = 9}, [1895] = {.lex_state = 9}, [1896] = {.lex_state = 9}, - [1897] = {.lex_state = 9}, + [1897] = {.lex_state = 10}, [1898] = {.lex_state = 9}, [1899] = {.lex_state = 9}, [1900] = {.lex_state = 9}, [1901] = {.lex_state = 9}, - [1902] = {.lex_state = 10}, - [1903] = {.lex_state = 10}, - [1904] = {.lex_state = 10}, - [1905] = {.lex_state = 10}, - [1906] = {.lex_state = 10}, + [1902] = {.lex_state = 9}, + [1903] = {.lex_state = 9}, + [1904] = {.lex_state = 9}, + [1905] = {.lex_state = 9}, + [1906] = {.lex_state = 9}, [1907] = {.lex_state = 9}, - [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 10}, - [1910] = {.lex_state = 9}, + [1908] = {.lex_state = 9}, + [1909] = {.lex_state = 9}, + [1910] = {.lex_state = 10}, [1911] = {.lex_state = 10}, - [1912] = {.lex_state = 9}, + [1912] = {.lex_state = 10}, [1913] = {.lex_state = 10}, - [1914] = {.lex_state = 9}, + [1914] = {.lex_state = 10}, [1915] = {.lex_state = 9}, [1916] = {.lex_state = 10}, [1917] = {.lex_state = 9}, [1918] = {.lex_state = 9}, - [1919] = {.lex_state = 17}, - [1920] = {.lex_state = 9}, + [1919] = {.lex_state = 10}, + [1920] = {.lex_state = 10}, [1921] = {.lex_state = 9}, [1922] = {.lex_state = 9}, [1923] = {.lex_state = 10}, [1924] = {.lex_state = 9}, [1925] = {.lex_state = 9}, [1926] = {.lex_state = 9}, - [1927] = {.lex_state = 10}, + [1927] = {.lex_state = 9}, [1928] = {.lex_state = 9}, - [1929] = {.lex_state = 9}, - [1930] = {.lex_state = 17}, + [1929] = {.lex_state = 17}, + [1930] = {.lex_state = 9}, [1931] = {.lex_state = 9}, [1932] = {.lex_state = 9}, [1933] = {.lex_state = 9}, - [1934] = {.lex_state = 10}, - [1935] = {.lex_state = 9}, - [1936] = {.lex_state = 17}, + [1934] = {.lex_state = 9}, + [1935] = {.lex_state = 17}, + [1936] = {.lex_state = 10}, [1937] = {.lex_state = 9}, [1938] = {.lex_state = 9}, [1939] = {.lex_state = 9}, [1940] = {.lex_state = 9}, [1941] = {.lex_state = 9}, [1942] = {.lex_state = 9}, - [1943] = {.lex_state = 9}, - [1944] = {.lex_state = 9}, + [1943] = {.lex_state = 17}, + [1944] = {.lex_state = 10}, [1945] = {.lex_state = 9}, - [1946] = {.lex_state = 9}, + [1946] = {.lex_state = 17}, [1947] = {.lex_state = 9}, [1948] = {.lex_state = 9}, - [1949] = {.lex_state = 17}, + [1949] = {.lex_state = 9}, [1950] = {.lex_state = 9}, [1951] = {.lex_state = 9}, [1952] = {.lex_state = 9}, [1953] = {.lex_state = 17}, - [1954] = {.lex_state = 17}, - [1955] = {.lex_state = 17}, - [1956] = {.lex_state = 17}, - [1957] = {.lex_state = 17}, + [1954] = {.lex_state = 9}, + [1955] = {.lex_state = 9}, + [1956] = {.lex_state = 9}, + [1957] = {.lex_state = 9}, [1958] = {.lex_state = 17}, [1959] = {.lex_state = 17}, [1960] = {.lex_state = 17}, @@ -12362,39 +12396,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1973] = {.lex_state = 17}, [1974] = {.lex_state = 17}, [1975] = {.lex_state = 17}, - [1976] = {.lex_state = 31}, - [1977] = {.lex_state = 31}, - [1978] = {.lex_state = 18}, - [1979] = {.lex_state = 18}, - [1980] = {.lex_state = 18}, - [1981] = {.lex_state = 18}, + [1976] = {.lex_state = 17}, + [1977] = {.lex_state = 17}, + [1978] = {.lex_state = 17}, + [1979] = {.lex_state = 17}, + [1980] = {.lex_state = 31}, + [1981] = {.lex_state = 31}, [1982] = {.lex_state = 18}, [1983] = {.lex_state = 18}, - [1984] = {.lex_state = 17}, - [1985] = {.lex_state = 17}, - [1986] = {.lex_state = 17}, + [1984] = {.lex_state = 18}, + [1985] = {.lex_state = 18}, + [1986] = {.lex_state = 18}, [1987] = {.lex_state = 18}, - [1988] = {.lex_state = 18}, + [1988] = {.lex_state = 17}, [1989] = {.lex_state = 18}, [1990] = {.lex_state = 18}, - [1991] = {.lex_state = 18}, - [1992] = {.lex_state = 17}, - [1993] = {.lex_state = 18}, - [1994] = {.lex_state = 13, .external_lex_state = 2}, - [1995] = {.lex_state = 17}, + [1991] = {.lex_state = 17}, + [1992] = {.lex_state = 18}, + [1993] = {.lex_state = 17}, + [1994] = {.lex_state = 18}, + [1995] = {.lex_state = 18}, [1996] = {.lex_state = 17}, - [1997] = {.lex_state = 17}, + [1997] = {.lex_state = 18}, [1998] = {.lex_state = 31}, - [1999] = {.lex_state = 18}, + [1999] = {.lex_state = 17}, [2000] = {.lex_state = 17}, - [2001] = {.lex_state = 18}, + [2001] = {.lex_state = 17}, [2002] = {.lex_state = 17}, - [2003] = {.lex_state = 17}, - [2004] = {.lex_state = 18}, + [2003] = {.lex_state = 18}, + [2004] = {.lex_state = 13, .external_lex_state = 3}, [2005] = {.lex_state = 17}, [2006] = {.lex_state = 17}, - [2007] = {.lex_state = 31}, - [2008] = {.lex_state = 17}, + [2007] = {.lex_state = 17}, + [2008] = {.lex_state = 18}, [2009] = {.lex_state = 31}, [2010] = {.lex_state = 31}, [2011] = {.lex_state = 31}, @@ -12402,46 +12436,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2013] = {.lex_state = 17}, [2014] = {.lex_state = 18}, [2015] = {.lex_state = 17}, - [2016] = {.lex_state = 31}, - [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 31}, + [2016] = {.lex_state = 17}, + [2017] = {.lex_state = 31}, + [2018] = {.lex_state = 17}, [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 31}, + [2020] = {.lex_state = 17}, [2021] = {.lex_state = 17}, [2022] = {.lex_state = 31}, - [2023] = {.lex_state = 31}, + [2023] = {.lex_state = 18}, [2024] = {.lex_state = 17}, [2025] = {.lex_state = 31}, - [2026] = {.lex_state = 17}, + [2026] = {.lex_state = 31}, [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 18}, - [2029] = {.lex_state = 18}, - [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 17}, - [2032] = {.lex_state = 17}, - [2033] = {.lex_state = 31}, - [2034] = {.lex_state = 31}, - [2035] = {.lex_state = 31}, + [2028] = {.lex_state = 31}, + [2029] = {.lex_state = 17}, + [2030] = {.lex_state = 18}, + [2031] = {.lex_state = 31}, + [2032] = {.lex_state = 31}, + [2033] = {.lex_state = 17}, + [2034] = {.lex_state = 18}, + [2035] = {.lex_state = 18}, [2036] = {.lex_state = 31}, [2037] = {.lex_state = 31}, - [2038] = {.lex_state = 31}, - [2039] = {.lex_state = 17}, - [2040] = {.lex_state = 17}, - [2041] = {.lex_state = 17}, + [2038] = {.lex_state = 17}, + [2039] = {.lex_state = 31}, + [2040] = {.lex_state = 31}, + [2041] = {.lex_state = 31}, [2042] = {.lex_state = 31}, [2043] = {.lex_state = 17}, [2044] = {.lex_state = 31}, [2045] = {.lex_state = 31}, [2046] = {.lex_state = 31}, - [2047] = {.lex_state = 31}, - [2048] = {.lex_state = 31}, - [2049] = {.lex_state = 18}, + [2047] = {.lex_state = 17}, + [2048] = {.lex_state = 17}, + [2049] = {.lex_state = 31}, [2050] = {.lex_state = 31}, [2051] = {.lex_state = 31}, [2052] = {.lex_state = 31}, [2053] = {.lex_state = 31}, - [2054] = {.lex_state = 31}, - [2055] = {.lex_state = 17}, + [2054] = {.lex_state = 17}, + [2055] = {.lex_state = 31}, [2056] = {.lex_state = 31}, [2057] = {.lex_state = 31}, [2058] = {.lex_state = 31}, @@ -12457,38 +12491,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2068] = {.lex_state = 31}, [2069] = {.lex_state = 31}, [2070] = {.lex_state = 31}, - [2071] = {.lex_state = 17}, + [2071] = {.lex_state = 31}, [2072] = {.lex_state = 31}, - [2073] = {.lex_state = 17}, + [2073] = {.lex_state = 18}, [2074] = {.lex_state = 31}, [2075] = {.lex_state = 31}, - [2076] = {.lex_state = 17}, + [2076] = {.lex_state = 31}, [2077] = {.lex_state = 17}, - [2078] = {.lex_state = 17}, + [2078] = {.lex_state = 31}, [2079] = {.lex_state = 17}, [2080] = {.lex_state = 17}, [2081] = {.lex_state = 17}, [2082] = {.lex_state = 17}, - [2083] = {.lex_state = 18}, - [2084] = {.lex_state = 18}, - [2085] = {.lex_state = 18}, - [2086] = {.lex_state = 18}, - [2087] = {.lex_state = 31}, + [2083] = {.lex_state = 17}, + [2084] = {.lex_state = 17}, + [2085] = {.lex_state = 17}, + [2086] = {.lex_state = 17}, + [2087] = {.lex_state = 18}, [2088] = {.lex_state = 18}, [2089] = {.lex_state = 18}, [2090] = {.lex_state = 18}, [2091] = {.lex_state = 18}, [2092] = {.lex_state = 18}, [2093] = {.lex_state = 18}, - [2094] = {.lex_state = 18}, + [2094] = {.lex_state = 31}, [2095] = {.lex_state = 18}, - [2096] = {.lex_state = 31}, - [2097] = {.lex_state = 19}, + [2096] = {.lex_state = 18}, + [2097] = {.lex_state = 31}, [2098] = {.lex_state = 18}, - [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 17}, - [2101] = {.lex_state = 17}, - [2102] = {.lex_state = 17}, + [2099] = {.lex_state = 19}, + [2100] = {.lex_state = 18}, + [2101] = {.lex_state = 18}, + [2102] = {.lex_state = 18}, [2103] = {.lex_state = 17}, [2104] = {.lex_state = 17}, [2105] = {.lex_state = 17}, @@ -12496,169 +12530,169 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2107] = {.lex_state = 17}, [2108] = {.lex_state = 17}, [2109] = {.lex_state = 17}, - [2110] = {.lex_state = 31}, + [2110] = {.lex_state = 17}, [2111] = {.lex_state = 17}, - [2112] = {.lex_state = 17}, - [2113] = {.lex_state = 17}, - [2114] = {.lex_state = 27}, + [2112] = {.lex_state = 18}, + [2113] = {.lex_state = 24}, + [2114] = {.lex_state = 17}, [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 17}, - [2117] = {.lex_state = 17}, + [2116] = {.lex_state = 18}, + [2117] = {.lex_state = 18}, [2118] = {.lex_state = 18}, - [2119] = {.lex_state = 18}, - [2120] = {.lex_state = 18}, - [2121] = {.lex_state = 17}, + [2119] = {.lex_state = 17}, + [2120] = {.lex_state = 31}, + [2121] = {.lex_state = 18}, [2122] = {.lex_state = 17}, - [2123] = {.lex_state = 31}, + [2123] = {.lex_state = 17}, [2124] = {.lex_state = 17}, - [2125] = {.lex_state = 18}, - [2126] = {.lex_state = 17}, + [2125] = {.lex_state = 17}, + [2126] = {.lex_state = 31}, [2127] = {.lex_state = 19}, - [2128] = {.lex_state = 18}, - [2129] = {.lex_state = 17}, - [2130] = {.lex_state = 17}, + [2128] = {.lex_state = 19}, + [2129] = {.lex_state = 19}, + [2130] = {.lex_state = 19}, [2131] = {.lex_state = 17}, - [2132] = {.lex_state = 19}, - [2133] = {.lex_state = 31}, - [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 17}, - [2137] = {.lex_state = 19}, - [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 31}, - [2141] = {.lex_state = 24}, - [2142] = {.lex_state = 24}, - [2143] = {.lex_state = 18}, - [2144] = {.lex_state = 24}, - [2145] = {.lex_state = 17}, - [2146] = {.lex_state = 19}, - [2147] = {.lex_state = 24}, - [2148] = {.lex_state = 18}, + [2132] = {.lex_state = 17}, + [2133] = {.lex_state = 27}, + [2134] = {.lex_state = 18}, + [2135] = {.lex_state = 17}, + [2136] = {.lex_state = 27}, + [2137] = {.lex_state = 17}, + [2138] = {.lex_state = 18}, + [2139] = {.lex_state = 18}, + [2140] = {.lex_state = 24}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 17}, + [2143] = {.lex_state = 24}, + [2144] = {.lex_state = 17}, + [2145] = {.lex_state = 31}, + [2146] = {.lex_state = 24}, + [2147] = {.lex_state = 18}, + [2148] = {.lex_state = 31}, [2149] = {.lex_state = 18}, [2150] = {.lex_state = 18}, [2151] = {.lex_state = 17}, - [2152] = {.lex_state = 31}, - [2153] = {.lex_state = 18}, - [2154] = {.lex_state = 18}, - [2155] = {.lex_state = 27}, + [2152] = {.lex_state = 18}, + [2153] = {.lex_state = 17}, + [2154] = {.lex_state = 31}, + [2155] = {.lex_state = 17}, [2156] = {.lex_state = 17}, - [2157] = {.lex_state = 31}, + [2157] = {.lex_state = 17}, [2158] = {.lex_state = 17}, - [2159] = {.lex_state = 31}, + [2159] = {.lex_state = 17}, [2160] = {.lex_state = 17}, [2161] = {.lex_state = 31}, - [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 31}, - [2164] = {.lex_state = 27}, + [2162] = {.lex_state = 31}, + [2163] = {.lex_state = 18}, + [2164] = {.lex_state = 31}, [2165] = {.lex_state = 31}, - [2166] = {.lex_state = 27}, - [2167] = {.lex_state = 31}, - [2168] = {.lex_state = 27}, + [2166] = {.lex_state = 31}, + [2167] = {.lex_state = 18}, + [2168] = {.lex_state = 31}, [2169] = {.lex_state = 31}, - [2170] = {.lex_state = 31}, + [2170] = {.lex_state = 27}, [2171] = {.lex_state = 31}, - [2172] = {.lex_state = 18}, + [2172] = {.lex_state = 31}, [2173] = {.lex_state = 31}, - [2174] = {.lex_state = 31}, - [2175] = {.lex_state = 31}, + [2174] = {.lex_state = 17}, + [2175] = {.lex_state = 17}, [2176] = {.lex_state = 31}, [2177] = {.lex_state = 31}, - [2178] = {.lex_state = 31}, - [2179] = {.lex_state = 31}, + [2178] = {.lex_state = 18}, + [2179] = {.lex_state = 18}, [2180] = {.lex_state = 31}, [2181] = {.lex_state = 31}, - [2182] = {.lex_state = 31}, + [2182] = {.lex_state = 12}, [2183] = {.lex_state = 31}, [2184] = {.lex_state = 31}, [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 18}, - [2187] = {.lex_state = 31}, - [2188] = {.lex_state = 31}, + [2186] = {.lex_state = 31}, + [2187] = {.lex_state = 27}, + [2188] = {.lex_state = 17}, [2189] = {.lex_state = 31}, - [2190] = {.lex_state = 31}, + [2190] = {.lex_state = 18}, [2191] = {.lex_state = 31}, - [2192] = {.lex_state = 17}, - [2193] = {.lex_state = 19}, - [2194] = {.lex_state = 31}, - [2195] = {.lex_state = 17}, - [2196] = {.lex_state = 31}, - [2197] = {.lex_state = 18}, - [2198] = {.lex_state = 18}, - [2199] = {.lex_state = 31}, - [2200] = {.lex_state = 12}, - [2201] = {.lex_state = 27}, - [2202] = {.lex_state = 18}, - [2203] = {.lex_state = 18}, + [2192] = {.lex_state = 31}, + [2193] = {.lex_state = 31}, + [2194] = {.lex_state = 17}, + [2195] = {.lex_state = 31}, + [2196] = {.lex_state = 18}, + [2197] = {.lex_state = 17}, + [2198] = {.lex_state = 31}, + [2199] = {.lex_state = 27}, + [2200] = {.lex_state = 31}, + [2201] = {.lex_state = 31}, + [2202] = {.lex_state = 31}, + [2203] = {.lex_state = 31}, [2204] = {.lex_state = 31}, - [2205] = {.lex_state = 31}, + [2205] = {.lex_state = 27}, [2206] = {.lex_state = 31}, [2207] = {.lex_state = 31}, [2208] = {.lex_state = 31}, [2209] = {.lex_state = 31}, - [2210] = {.lex_state = 18}, + [2210] = {.lex_state = 19}, [2211] = {.lex_state = 31}, - [2212] = {.lex_state = 18}, - [2213] = {.lex_state = 17}, - [2214] = {.lex_state = 17}, - [2215] = {.lex_state = 17}, - [2216] = {.lex_state = 31}, + [2212] = {.lex_state = 31}, + [2213] = {.lex_state = 31}, + [2214] = {.lex_state = 18}, + [2215] = {.lex_state = 31}, + [2216] = {.lex_state = 8}, [2217] = {.lex_state = 17}, - [2218] = {.lex_state = 19}, - [2219] = {.lex_state = 19}, - [2220] = {.lex_state = 8}, + [2218] = {.lex_state = 17}, + [2219] = {.lex_state = 17}, + [2220] = {.lex_state = 17}, [2221] = {.lex_state = 17}, [2222] = {.lex_state = 17}, - [2223] = {.lex_state = 8}, - [2224] = {.lex_state = 72}, - [2225] = {.lex_state = 12}, - [2226] = {.lex_state = 31}, + [2223] = {.lex_state = 17}, + [2224] = {.lex_state = 17}, + [2225] = {.lex_state = 17}, + [2226] = {.lex_state = 27}, [2227] = {.lex_state = 12}, - [2228] = {.lex_state = 12}, + [2228] = {.lex_state = 8}, [2229] = {.lex_state = 31}, - [2230] = {.lex_state = 27}, - [2231] = {.lex_state = 8}, - [2232] = {.lex_state = 31}, - [2233] = {.lex_state = 19}, + [2230] = {.lex_state = 31}, + [2231] = {.lex_state = 19}, + [2232] = {.lex_state = 72}, + [2233] = {.lex_state = 17}, [2234] = {.lex_state = 17}, - [2235] = {.lex_state = 31}, - [2236] = {.lex_state = 31}, - [2237] = {.lex_state = 31}, - [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 19}, + [2235] = {.lex_state = 17}, + [2236] = {.lex_state = 17}, + [2237] = {.lex_state = 17}, + [2238] = {.lex_state = 31}, + [2239] = {.lex_state = 17}, [2240] = {.lex_state = 17}, - [2241] = {.lex_state = 17}, - [2242] = {.lex_state = 17}, - [2243] = {.lex_state = 17}, + [2241] = {.lex_state = 31}, + [2242] = {.lex_state = 18}, + [2243] = {.lex_state = 12}, [2244] = {.lex_state = 17}, [2245] = {.lex_state = 17}, [2246] = {.lex_state = 17}, [2247] = {.lex_state = 17}, - [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 12}, - [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 31}, + [2248] = {.lex_state = 19}, + [2249] = {.lex_state = 8}, + [2250] = {.lex_state = 31}, + [2251] = {.lex_state = 12}, [2252] = {.lex_state = 17}, [2253] = {.lex_state = 31}, - [2254] = {.lex_state = 31}, - [2255] = {.lex_state = 17}, - [2256] = {.lex_state = 31}, - [2257] = {.lex_state = 17}, - [2258] = {.lex_state = 17}, + [2254] = {.lex_state = 17}, + [2255] = {.lex_state = 19}, + [2256] = {.lex_state = 19}, + [2257] = {.lex_state = 12}, + [2258] = {.lex_state = 19}, [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 19}, - [2261] = {.lex_state = 17}, + [2260] = {.lex_state = 17}, + [2261] = {.lex_state = 31}, [2262] = {.lex_state = 31}, - [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 17}, - [2265] = {.lex_state = 17}, - [2266] = {.lex_state = 17}, - [2267] = {.lex_state = 27}, + [2263] = {.lex_state = 31}, + [2264] = {.lex_state = 31}, + [2265] = {.lex_state = 31}, + [2266] = {.lex_state = 31}, + [2267] = {.lex_state = 17}, [2268] = {.lex_state = 17}, [2269] = {.lex_state = 17}, - [2270] = {.lex_state = 17}, + [2270] = {.lex_state = 27}, [2271] = {.lex_state = 17}, - [2272] = {.lex_state = 27}, + [2272] = {.lex_state = 17}, [2273] = {.lex_state = 17}, [2274] = {.lex_state = 17}, [2275] = {.lex_state = 17}, @@ -12669,714 +12703,714 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2280] = {.lex_state = 17}, [2281] = {.lex_state = 17}, [2282] = {.lex_state = 17}, - [2283] = {.lex_state = 17}, + [2283] = {.lex_state = 27}, [2284] = {.lex_state = 17}, [2285] = {.lex_state = 17}, [2286] = {.lex_state = 17}, - [2287] = {.lex_state = 17}, - [2288] = {.lex_state = 24}, - [2289] = {.lex_state = 27}, - [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 27}, + [2287] = {.lex_state = 27}, + [2288] = {.lex_state = 27}, + [2289] = {.lex_state = 17}, + [2290] = {.lex_state = 12}, + [2291] = {.lex_state = 17}, [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 27}, + [2293] = {.lex_state = 17}, [2294] = {.lex_state = 17}, [2295] = {.lex_state = 17}, [2296] = {.lex_state = 17}, [2297] = {.lex_state = 17}, [2298] = {.lex_state = 27}, - [2299] = {.lex_state = 17}, + [2299] = {.lex_state = 27}, [2300] = {.lex_state = 17}, - [2301] = {.lex_state = 17}, + [2301] = {.lex_state = 27}, [2302] = {.lex_state = 17}, [2303] = {.lex_state = 17}, [2304] = {.lex_state = 27}, - [2305] = {.lex_state = 27}, - [2306] = {.lex_state = 27}, + [2305] = {.lex_state = 17}, + [2306] = {.lex_state = 17}, [2307] = {.lex_state = 17}, [2308] = {.lex_state = 17}, - [2309] = {.lex_state = 12}, + [2309] = {.lex_state = 17}, [2310] = {.lex_state = 27}, - [2311] = {.lex_state = 17}, + [2311] = {.lex_state = 24}, [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, [2314] = {.lex_state = 17}, - [2315] = {.lex_state = 27}, + [2315] = {.lex_state = 17}, [2316] = {.lex_state = 17}, [2317] = {.lex_state = 27}, - [2318] = {.lex_state = 72}, - [2319] = {.lex_state = 72}, - [2320] = {.lex_state = 72}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 17}, + [2320] = {.lex_state = 27}, [2321] = {.lex_state = 72}, - [2322] = {.lex_state = 72}, + [2322] = {.lex_state = 19}, [2323] = {.lex_state = 72}, - [2324] = {.lex_state = 12}, + [2324] = {.lex_state = 72}, [2325] = {.lex_state = 72}, - [2326] = {.lex_state = 72}, - [2327] = {.lex_state = 169}, - [2328] = {.lex_state = 27}, + [2326] = {.lex_state = 27}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 12}, [2329] = {.lex_state = 72}, - [2330] = {.lex_state = 17}, + [2330] = {.lex_state = 27}, [2331] = {.lex_state = 72}, - [2332] = {.lex_state = 72}, + [2332] = {.lex_state = 31}, [2333] = {.lex_state = 17}, [2334] = {.lex_state = 72}, - [2335] = {.lex_state = 72}, + [2335] = {.lex_state = 27}, [2336] = {.lex_state = 27}, - [2337] = {.lex_state = 72}, - [2338] = {.lex_state = 31}, - [2339] = {.lex_state = 17}, - [2340] = {.lex_state = 27}, - [2341] = {.lex_state = 12}, - [2342] = {.lex_state = 17}, - [2343] = {.lex_state = 19}, - [2344] = {.lex_state = 5}, - [2345] = {.lex_state = 72}, + [2337] = {.lex_state = 27}, + [2338] = {.lex_state = 27}, + [2339] = {.lex_state = 72}, + [2340] = {.lex_state = 72}, + [2341] = {.lex_state = 72}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 31}, + [2344] = {.lex_state = 72}, + [2345] = {.lex_state = 5}, [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 17}, + [2347] = {.lex_state = 72}, [2348] = {.lex_state = 72}, - [2349] = {.lex_state = 27}, - [2350] = {.lex_state = 72}, - [2351] = {.lex_state = 17}, - [2352] = {.lex_state = 72}, - [2353] = {.lex_state = 5}, - [2354] = {.lex_state = 12}, + [2349] = {.lex_state = 17}, + [2350] = {.lex_state = 169}, + [2351] = {.lex_state = 5}, + [2352] = {.lex_state = 12}, + [2353] = {.lex_state = 27}, + [2354] = {.lex_state = 5}, [2355] = {.lex_state = 72}, [2356] = {.lex_state = 72}, [2357] = {.lex_state = 72}, [2358] = {.lex_state = 72}, [2359] = {.lex_state = 72}, [2360] = {.lex_state = 72}, - [2361] = {.lex_state = 31}, - [2362] = {.lex_state = 27}, - [2363] = {.lex_state = 27}, - [2364] = {.lex_state = 27}, + [2361] = {.lex_state = 72}, + [2362] = {.lex_state = 17}, + [2363] = {.lex_state = 72}, + [2364] = {.lex_state = 17}, [2365] = {.lex_state = 17}, - [2366] = {.lex_state = 17}, - [2367] = {.lex_state = 17}, + [2366] = {.lex_state = 12}, + [2367] = {.lex_state = 27}, [2368] = {.lex_state = 72}, [2369] = {.lex_state = 72}, - [2370] = {.lex_state = 5}, + [2370] = {.lex_state = 72}, [2371] = {.lex_state = 72}, [2372] = {.lex_state = 17}, - [2373] = {.lex_state = 72}, - [2374] = {.lex_state = 72}, + [2373] = {.lex_state = 17}, + [2374] = {.lex_state = 17}, [2375] = {.lex_state = 17}, - [2376] = {.lex_state = 17}, + [2376] = {.lex_state = 72}, [2377] = {.lex_state = 17}, - [2378] = {.lex_state = 17}, - [2379] = {.lex_state = 31}, - [2380] = {.lex_state = 31}, - [2381] = {.lex_state = 19}, - [2382] = {.lex_state = 17}, + [2378] = {.lex_state = 72}, + [2379] = {.lex_state = 19}, + [2380] = {.lex_state = 17}, + [2381] = {.lex_state = 31}, + [2382] = {.lex_state = 19}, [2383] = {.lex_state = 17}, - [2384] = {.lex_state = 19}, - [2385] = {.lex_state = 17}, - [2386] = {.lex_state = 19}, + [2384] = {.lex_state = 31}, + [2385] = {.lex_state = 31}, + [2386] = {.lex_state = 17}, [2387] = {.lex_state = 17}, - [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 5}, - [2390] = {.lex_state = 31}, + [2388] = {.lex_state = 31}, + [2389] = {.lex_state = 31}, + [2390] = {.lex_state = 27}, [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 31}, - [2393] = {.lex_state = 31}, - [2394] = {.lex_state = 19}, - [2395] = {.lex_state = 17}, - [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 31}, + [2392] = {.lex_state = 17}, + [2393] = {.lex_state = 19}, + [2394] = {.lex_state = 5}, + [2395] = {.lex_state = 31}, + [2396] = {.lex_state = 72}, + [2397] = {.lex_state = 17}, [2398] = {.lex_state = 17}, [2399] = {.lex_state = 17}, [2400] = {.lex_state = 17}, [2401] = {.lex_state = 17}, [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 72}, - [2404] = {.lex_state = 5}, + [2403] = {.lex_state = 17}, + [2404] = {.lex_state = 17}, [2405] = {.lex_state = 17}, [2406] = {.lex_state = 17}, - [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 27}, + [2407] = {.lex_state = 5}, + [2408] = {.lex_state = 31}, [2409] = {.lex_state = 17}, - [2410] = {.lex_state = 17}, - [2411] = {.lex_state = 17}, + [2410] = {.lex_state = 21}, + [2411] = {.lex_state = 31}, [2412] = {.lex_state = 17}, - [2413] = {.lex_state = 17}, - [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 19}, - [2416] = {.lex_state = 17}, + [2413] = {.lex_state = 21}, + [2414] = {.lex_state = 31}, + [2415] = {.lex_state = 17}, + [2416] = {.lex_state = 72}, [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 15}, + [2418] = {.lex_state = 17}, [2419] = {.lex_state = 17}, [2420] = {.lex_state = 17}, [2421] = {.lex_state = 17}, [2422] = {.lex_state = 17}, - [2423] = {.lex_state = 21}, - [2424] = {.lex_state = 21}, + [2423] = {.lex_state = 17}, + [2424] = {.lex_state = 17}, [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 17}, + [2426] = {.lex_state = 31}, [2427] = {.lex_state = 17}, - [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 5}, - [2430] = {.lex_state = 19}, + [2428] = {.lex_state = 19}, + [2429] = {.lex_state = 17}, + [2430] = {.lex_state = 5}, [2431] = {.lex_state = 17}, [2432] = {.lex_state = 17}, - [2433] = {.lex_state = 31}, - [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 15}, - [2436] = {.lex_state = 17}, + [2433] = {.lex_state = 17}, + [2434] = {.lex_state = 21}, + [2435] = {.lex_state = 17}, + [2436] = {.lex_state = 31}, [2437] = {.lex_state = 17}, [2438] = {.lex_state = 21}, - [2439] = {.lex_state = 17}, - [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 31}, - [2442] = {.lex_state = 21}, + [2439] = {.lex_state = 5}, + [2440] = {.lex_state = 15}, + [2441] = {.lex_state = 17}, + [2442] = {.lex_state = 17}, [2443] = {.lex_state = 31}, [2444] = {.lex_state = 17}, [2445] = {.lex_state = 17}, - [2446] = {.lex_state = 17}, - [2447] = {.lex_state = 17}, + [2446] = {.lex_state = 31}, + [2447] = {.lex_state = 19}, [2448] = {.lex_state = 17}, - [2449] = {.lex_state = 31}, + [2449] = {.lex_state = 17}, [2450] = {.lex_state = 17}, - [2451] = {.lex_state = 31}, - [2452] = {.lex_state = 31}, + [2451] = {.lex_state = 17}, + [2452] = {.lex_state = 17}, [2453] = {.lex_state = 17}, [2454] = {.lex_state = 17}, [2455] = {.lex_state = 17}, [2456] = {.lex_state = 17}, [2457] = {.lex_state = 17}, - [2458] = {.lex_state = 31}, + [2458] = {.lex_state = 17}, [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 17}, + [2460] = {.lex_state = 21}, [2461] = {.lex_state = 17}, - [2462] = {.lex_state = 31}, - [2463] = {.lex_state = 5}, + [2462] = {.lex_state = 17}, + [2463] = {.lex_state = 17}, [2464] = {.lex_state = 17}, [2465] = {.lex_state = 19}, - [2466] = {.lex_state = 17}, - [2467] = {.lex_state = 21}, + [2466] = {.lex_state = 31}, + [2467] = {.lex_state = 17}, [2468] = {.lex_state = 31}, - [2469] = {.lex_state = 72}, + [2469] = {.lex_state = 17}, [2470] = {.lex_state = 31}, - [2471] = {.lex_state = 17}, - [2472] = {.lex_state = 17}, - [2473] = {.lex_state = 17}, - [2474] = {.lex_state = 31}, - [2475] = {.lex_state = 21}, + [2471] = {.lex_state = 15}, + [2472] = {.lex_state = 31}, + [2473] = {.lex_state = 19}, + [2474] = {.lex_state = 17}, + [2475] = {.lex_state = 17}, [2476] = {.lex_state = 17}, - [2477] = {.lex_state = 23}, - [2478] = {.lex_state = 31}, - [2479] = {.lex_state = 31}, - [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 17}, - [2482] = {.lex_state = 17}, - [2483] = {.lex_state = 31}, + [2477] = {.lex_state = 17}, + [2478] = {.lex_state = 17}, + [2479] = {.lex_state = 21}, + [2480] = {.lex_state = 31}, + [2481] = {.lex_state = 23}, + [2482] = {.lex_state = 23}, + [2483] = {.lex_state = 23}, [2484] = {.lex_state = 17}, - [2485] = {.lex_state = 17}, - [2486] = {.lex_state = 17}, - [2487] = {.lex_state = 23}, - [2488] = {.lex_state = 31}, - [2489] = {.lex_state = 23}, - [2490] = {.lex_state = 17}, - [2491] = {.lex_state = 19}, - [2492] = {.lex_state = 19}, - [2493] = {.lex_state = 19}, - [2494] = {.lex_state = 23}, - [2495] = {.lex_state = 19}, - [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 17}, - [2498] = {.lex_state = 17}, + [2485] = {.lex_state = 23, .external_lex_state = 4}, + [2486] = {.lex_state = 31}, + [2487] = {.lex_state = 31}, + [2488] = {.lex_state = 17}, + [2489] = {.lex_state = 17}, + [2490] = {.lex_state = 5}, + [2491] = {.lex_state = 31}, + [2492] = {.lex_state = 17}, + [2493] = {.lex_state = 17}, + [2494] = {.lex_state = 17}, + [2495] = {.lex_state = 17}, + [2496] = {.lex_state = 23}, + [2497] = {.lex_state = 31}, + [2498] = {.lex_state = 19}, [2499] = {.lex_state = 23}, [2500] = {.lex_state = 17}, - [2501] = {.lex_state = 17}, - [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 23}, - [2504] = {.lex_state = 31}, - [2505] = {.lex_state = 31}, + [2501] = {.lex_state = 19}, + [2502] = {.lex_state = 19}, + [2503] = {.lex_state = 19}, + [2504] = {.lex_state = 23}, + [2505] = {.lex_state = 23}, [2506] = {.lex_state = 17}, [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 31}, - [2509] = {.lex_state = 31}, - [2510] = {.lex_state = 31}, - [2511] = {.lex_state = 5}, - [2512] = {.lex_state = 31}, + [2508] = {.lex_state = 17}, + [2509] = {.lex_state = 23}, + [2510] = {.lex_state = 17}, + [2511] = {.lex_state = 31}, + [2512] = {.lex_state = 17}, [2513] = {.lex_state = 17}, - [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 8}, + [2514] = {.lex_state = 17}, + [2515] = {.lex_state = 31}, [2516] = {.lex_state = 31}, [2517] = {.lex_state = 31}, - [2518] = {.lex_state = 23}, - [2519] = {.lex_state = 23}, - [2520] = {.lex_state = 31}, - [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 23}, - [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 31}, - [2525] = {.lex_state = 31}, + [2518] = {.lex_state = 17}, + [2519] = {.lex_state = 17}, + [2520] = {.lex_state = 17}, + [2521] = {.lex_state = 8}, + [2522] = {.lex_state = 31}, + [2523] = {.lex_state = 31}, + [2524] = {.lex_state = 5}, + [2525] = {.lex_state = 23}, [2526] = {.lex_state = 31}, - [2527] = {.lex_state = 23}, - [2528] = {.lex_state = 23}, + [2527] = {.lex_state = 31}, + [2528] = {.lex_state = 31}, [2529] = {.lex_state = 23}, - [2530] = {.lex_state = 8}, + [2530] = {.lex_state = 23}, [2531] = {.lex_state = 23}, - [2532] = {.lex_state = 23}, + [2532] = {.lex_state = 31}, [2533] = {.lex_state = 23}, - [2534] = {.lex_state = 23}, + [2534] = {.lex_state = 31}, [2535] = {.lex_state = 23}, - [2536] = {.lex_state = 23}, + [2536] = {.lex_state = 31}, [2537] = {.lex_state = 23}, - [2538] = {.lex_state = 23}, + [2538] = {.lex_state = 31}, [2539] = {.lex_state = 23}, [2540] = {.lex_state = 23}, - [2541] = {.lex_state = 17}, - [2542] = {.lex_state = 17}, - [2543] = {.lex_state = 8}, - [2544] = {.lex_state = 31}, - [2545] = {.lex_state = 31}, - [2546] = {.lex_state = 23, .external_lex_state = 3}, - [2547] = {.lex_state = 31}, - [2548] = {.lex_state = 31}, - [2549] = {.lex_state = 31}, - [2550] = {.lex_state = 23}, - [2551] = {.lex_state = 17}, - [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 17}, - [2554] = {.lex_state = 17}, + [2541] = {.lex_state = 23}, + [2542] = {.lex_state = 23}, + [2543] = {.lex_state = 23}, + [2544] = {.lex_state = 23}, + [2545] = {.lex_state = 23}, + [2546] = {.lex_state = 23}, + [2547] = {.lex_state = 23}, + [2548] = {.lex_state = 23}, + [2549] = {.lex_state = 17}, + [2550] = {.lex_state = 17}, + [2551] = {.lex_state = 8}, + [2552] = {.lex_state = 8}, + [2553] = {.lex_state = 31}, + [2554] = {.lex_state = 31}, [2555] = {.lex_state = 31}, - [2556] = {.lex_state = 17}, - [2557] = {.lex_state = 17}, - [2558] = {.lex_state = 31}, - [2559] = {.lex_state = 31}, + [2556] = {.lex_state = 31}, + [2557] = {.lex_state = 23}, + [2558] = {.lex_state = 17}, + [2559] = {.lex_state = 17}, [2560] = {.lex_state = 31}, - [2561] = {.lex_state = 19}, - [2562] = {.lex_state = 17}, - [2563] = {.lex_state = 19}, + [2561] = {.lex_state = 17}, + [2562] = {.lex_state = 31}, + [2563] = {.lex_state = 31}, [2564] = {.lex_state = 31}, [2565] = {.lex_state = 17}, - [2566] = {.lex_state = 17}, + [2566] = {.lex_state = 19}, [2567] = {.lex_state = 17}, - [2568] = {.lex_state = 23}, - [2569] = {.lex_state = 23}, - [2570] = {.lex_state = 31}, + [2568] = {.lex_state = 17}, + [2569] = {.lex_state = 17}, + [2570] = {.lex_state = 19}, [2571] = {.lex_state = 31}, - [2572] = {.lex_state = 5}, - [2573] = {.lex_state = 8}, + [2572] = {.lex_state = 23}, + [2573] = {.lex_state = 17}, [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 72}, + [2575] = {.lex_state = 31}, [2576] = {.lex_state = 31}, - [2577] = {.lex_state = 17}, - [2578] = {.lex_state = 23}, - [2579] = {.lex_state = 17}, - [2580] = {.lex_state = 17}, - [2581] = {.lex_state = 72}, - [2582] = {.lex_state = 23}, - [2583] = {.lex_state = 8}, - [2584] = {.lex_state = 23}, + [2577] = {.lex_state = 23}, + [2578] = {.lex_state = 8}, + [2579] = {.lex_state = 23}, + [2580] = {.lex_state = 72}, + [2581] = {.lex_state = 31}, + [2582] = {.lex_state = 17}, + [2583] = {.lex_state = 72}, + [2584] = {.lex_state = 17}, [2585] = {.lex_state = 23}, [2586] = {.lex_state = 8}, - [2587] = {.lex_state = 23}, - [2588] = {.lex_state = 33}, + [2587] = {.lex_state = 17}, + [2588] = {.lex_state = 17}, [2589] = {.lex_state = 8}, - [2590] = {.lex_state = 72}, - [2591] = {.lex_state = 72}, - [2592] = {.lex_state = 23}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 33}, - [2595] = {.lex_state = 72}, - [2596] = {.lex_state = 72}, - [2597] = {.lex_state = 23, .external_lex_state = 4}, - [2598] = {.lex_state = 23}, - [2599] = {.lex_state = 23}, - [2600] = {.lex_state = 23, .external_lex_state = 4}, - [2601] = {.lex_state = 23}, - [2602] = {.lex_state = 23}, + [2590] = {.lex_state = 8}, + [2591] = {.lex_state = 23}, + [2592] = {.lex_state = 8}, + [2593] = {.lex_state = 17}, + [2594] = {.lex_state = 8}, + [2595] = {.lex_state = 17}, + [2596] = {.lex_state = 31}, + [2597] = {.lex_state = 17}, + [2598] = {.lex_state = 5}, + [2599] = {.lex_state = 33}, + [2600] = {.lex_state = 23}, + [2601] = {.lex_state = 17}, + [2602] = {.lex_state = 72}, [2603] = {.lex_state = 23}, - [2604] = {.lex_state = 17}, - [2605] = {.lex_state = 5}, - [2606] = {.lex_state = 17}, + [2604] = {.lex_state = 8}, + [2605] = {.lex_state = 8}, + [2606] = {.lex_state = 72}, [2607] = {.lex_state = 72}, - [2608] = {.lex_state = 8}, - [2609] = {.lex_state = 18}, - [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 23}, - [2612] = {.lex_state = 72}, - [2613] = {.lex_state = 23}, - [2614] = {.lex_state = 23}, - [2615] = {.lex_state = 8}, - [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 72}, - [2618] = {.lex_state = 23}, - [2619] = {.lex_state = 23, .external_lex_state = 4}, - [2620] = {.lex_state = 72}, - [2621] = {.lex_state = 8}, - [2622] = {.lex_state = 17}, + [2608] = {.lex_state = 72}, + [2609] = {.lex_state = 17}, + [2610] = {.lex_state = 72}, + [2611] = {.lex_state = 8}, + [2612] = {.lex_state = 8}, + [2613] = {.lex_state = 17}, + [2614] = {.lex_state = 17}, + [2615] = {.lex_state = 17}, + [2616] = {.lex_state = 17}, + [2617] = {.lex_state = 17}, + [2618] = {.lex_state = 72}, + [2619] = {.lex_state = 17}, + [2620] = {.lex_state = 17}, + [2621] = {.lex_state = 23}, + [2622] = {.lex_state = 31}, [2623] = {.lex_state = 8}, - [2624] = {.lex_state = 72}, - [2625] = {.lex_state = 72}, - [2626] = {.lex_state = 8}, - [2627] = {.lex_state = 8}, + [2624] = {.lex_state = 31}, + [2625] = {.lex_state = 17}, + [2626] = {.lex_state = 17}, + [2627] = {.lex_state = 72}, [2628] = {.lex_state = 72}, - [2629] = {.lex_state = 8}, - [2630] = {.lex_state = 5}, - [2631] = {.lex_state = 8}, - [2632] = {.lex_state = 8}, - [2633] = {.lex_state = 8}, - [2634] = {.lex_state = 23}, - [2635] = {.lex_state = 17}, - [2636] = {.lex_state = 8}, + [2629] = {.lex_state = 17}, + [2630] = {.lex_state = 17}, + [2631] = {.lex_state = 33}, + [2632] = {.lex_state = 17}, + [2633] = {.lex_state = 72}, + [2634] = {.lex_state = 17}, + [2635] = {.lex_state = 72}, + [2636] = {.lex_state = 17}, [2637] = {.lex_state = 17}, - [2638] = {.lex_state = 23}, - [2639] = {.lex_state = 17}, - [2640] = {.lex_state = 8}, - [2641] = {.lex_state = 23}, - [2642] = {.lex_state = 72}, + [2638] = {.lex_state = 17}, + [2639] = {.lex_state = 23}, + [2640] = {.lex_state = 31}, + [2641] = {.lex_state = 72}, + [2642] = {.lex_state = 17}, [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 8}, - [2645] = {.lex_state = 8}, - [2646] = {.lex_state = 8}, - [2647] = {.lex_state = 31}, - [2648] = {.lex_state = 72}, - [2649] = {.lex_state = 72}, + [2644] = {.lex_state = 17}, + [2645] = {.lex_state = 17}, + [2646] = {.lex_state = 33}, + [2647] = {.lex_state = 72}, + [2648] = {.lex_state = 17}, + [2649] = {.lex_state = 17}, [2650] = {.lex_state = 17}, - [2651] = {.lex_state = 72}, - [2652] = {.lex_state = 31}, + [2651] = {.lex_state = 33}, + [2652] = {.lex_state = 72}, [2653] = {.lex_state = 17}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 17}, - [2656] = {.lex_state = 17}, + [2654] = {.lex_state = 17}, + [2655] = {.lex_state = 72}, + [2656] = {.lex_state = 23}, [2657] = {.lex_state = 17}, - [2658] = {.lex_state = 31}, + [2658] = {.lex_state = 17}, [2659] = {.lex_state = 17}, - [2660] = {.lex_state = 17}, + [2660] = {.lex_state = 23}, [2661] = {.lex_state = 17}, - [2662] = {.lex_state = 17}, + [2662] = {.lex_state = 19}, [2663] = {.lex_state = 23}, - [2664] = {.lex_state = 17}, - [2665] = {.lex_state = 17}, - [2666] = {.lex_state = 72}, - [2667] = {.lex_state = 17}, + [2664] = {.lex_state = 19}, + [2665] = {.lex_state = 19}, + [2666] = {.lex_state = 19}, + [2667] = {.lex_state = 23, .external_lex_state = 5}, [2668] = {.lex_state = 17}, - [2669] = {.lex_state = 72}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 17}, - [2672] = {.lex_state = 17}, + [2669] = {.lex_state = 23}, + [2670] = {.lex_state = 8}, + [2671] = {.lex_state = 23}, + [2672] = {.lex_state = 23}, [2673] = {.lex_state = 17}, - [2674] = {.lex_state = 17}, - [2675] = {.lex_state = 17}, - [2676] = {.lex_state = 17}, - [2677] = {.lex_state = 33}, - [2678] = {.lex_state = 17}, - [2679] = {.lex_state = 72}, - [2680] = {.lex_state = 17}, - [2681] = {.lex_state = 17}, - [2682] = {.lex_state = 19}, - [2683] = {.lex_state = 17}, - [2684] = {.lex_state = 19}, - [2685] = {.lex_state = 19}, - [2686] = {.lex_state = 19}, - [2687] = {.lex_state = 17}, - [2688] = {.lex_state = 17}, + [2674] = {.lex_state = 72}, + [2675] = {.lex_state = 23}, + [2676] = {.lex_state = 23}, + [2677] = {.lex_state = 23, .external_lex_state = 5}, + [2678] = {.lex_state = 23, .external_lex_state = 5}, + [2679] = {.lex_state = 23}, + [2680] = {.lex_state = 23}, + [2681] = {.lex_state = 18}, + [2682] = {.lex_state = 31}, + [2683] = {.lex_state = 23}, + [2684] = {.lex_state = 17}, + [2685] = {.lex_state = 72}, + [2686] = {.lex_state = 23}, + [2687] = {.lex_state = 23}, + [2688] = {.lex_state = 23}, [2689] = {.lex_state = 17}, - [2690] = {.lex_state = 23}, - [2691] = {.lex_state = 17}, - [2692] = {.lex_state = 17}, - [2693] = {.lex_state = 17}, - [2694] = {.lex_state = 17}, - [2695] = {.lex_state = 31}, - [2696] = {.lex_state = 17}, - [2697] = {.lex_state = 72}, - [2698] = {.lex_state = 8}, - [2699] = {.lex_state = 72}, - [2700] = {.lex_state = 8}, - [2701] = {.lex_state = 23}, - [2702] = {.lex_state = 23}, - [2703] = {.lex_state = 23, .external_lex_state = 4}, - [2704] = {.lex_state = 72}, - [2705] = {.lex_state = 23}, - [2706] = {.lex_state = 23}, - [2707] = {.lex_state = 18}, + [2690] = {.lex_state = 23, .external_lex_state = 5}, + [2691] = {.lex_state = 72}, + [2692] = {.lex_state = 8}, + [2693] = {.lex_state = 8}, + [2694] = {.lex_state = 8}, + [2695] = {.lex_state = 8}, + [2696] = {.lex_state = 72}, + [2697] = {.lex_state = 5}, + [2698] = {.lex_state = 72}, + [2699] = {.lex_state = 8}, + [2700] = {.lex_state = 17}, + [2701] = {.lex_state = 8}, + [2702] = {.lex_state = 8}, + [2703] = {.lex_state = 23}, + [2704] = {.lex_state = 23}, + [2705] = {.lex_state = 17}, + [2706] = {.lex_state = 18}, + [2707] = {.lex_state = 23}, [2708] = {.lex_state = 72}, - [2709] = {.lex_state = 23}, + [2709] = {.lex_state = 72}, [2710] = {.lex_state = 31}, - [2711] = {.lex_state = 72}, - [2712] = {.lex_state = 23}, - [2713] = {.lex_state = 23}, - [2714] = {.lex_state = 23}, - [2715] = {.lex_state = 23, .external_lex_state = 4}, - [2716] = {.lex_state = 72}, - [2717] = {.lex_state = 8}, - [2718] = {.lex_state = 8}, - [2719] = {.lex_state = 31}, - [2720] = {.lex_state = 8}, - [2721] = {.lex_state = 8}, - [2722] = {.lex_state = 72}, - [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 8}, - [2725] = {.lex_state = 8}, - [2726] = {.lex_state = 8}, + [2711] = {.lex_state = 23}, + [2712] = {.lex_state = 72}, + [2713] = {.lex_state = 72}, + [2714] = {.lex_state = 17}, + [2715] = {.lex_state = 17}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 17}, + [2718] = {.lex_state = 72}, + [2719] = {.lex_state = 8}, + [2720] = {.lex_state = 23}, + [2721] = {.lex_state = 23}, + [2722] = {.lex_state = 23, .external_lex_state = 5}, + [2723] = {.lex_state = 23}, + [2724] = {.lex_state = 23}, + [2725] = {.lex_state = 72}, + [2726] = {.lex_state = 23}, [2727] = {.lex_state = 23}, [2728] = {.lex_state = 23}, - [2729] = {.lex_state = 23}, + [2729] = {.lex_state = 23, .external_lex_state = 5}, [2730] = {.lex_state = 72}, - [2731] = {.lex_state = 23, .external_lex_state = 4}, - [2732] = {.lex_state = 17}, - [2733] = {.lex_state = 23}, - [2734] = {.lex_state = 33}, - [2735] = {.lex_state = 72}, - [2736] = {.lex_state = 17}, - [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 72}, - [2739] = {.lex_state = 17}, - [2740] = {.lex_state = 17}, + [2731] = {.lex_state = 8}, + [2732] = {.lex_state = 72}, + [2733] = {.lex_state = 17}, + [2734] = {.lex_state = 8}, + [2735] = {.lex_state = 23}, + [2736] = {.lex_state = 31}, + [2737] = {.lex_state = 23}, + [2738] = {.lex_state = 8}, + [2739] = {.lex_state = 23}, + [2740] = {.lex_state = 23, .external_lex_state = 5}, [2741] = {.lex_state = 23}, - [2742] = {.lex_state = 23}, - [2743] = {.lex_state = 23, .external_lex_state = 4}, - [2744] = {.lex_state = 23}, + [2742] = {.lex_state = 72}, + [2743] = {.lex_state = 23, .external_lex_state = 5}, + [2744] = {.lex_state = 72}, [2745] = {.lex_state = 23}, - [2746] = {.lex_state = 72}, - [2747] = {.lex_state = 23}, - [2748] = {.lex_state = 23}, - [2749] = {.lex_state = 23}, - [2750] = {.lex_state = 23, .external_lex_state = 4}, - [2751] = {.lex_state = 72}, - [2752] = {.lex_state = 8}, + [2746] = {.lex_state = 8}, + [2747] = {.lex_state = 8}, + [2748] = {.lex_state = 8}, + [2749] = {.lex_state = 8}, + [2750] = {.lex_state = 72}, + [2751] = {.lex_state = 23, .external_lex_state = 5}, + [2752] = {.lex_state = 23, .external_lex_state = 5}, [2753] = {.lex_state = 8}, [2754] = {.lex_state = 8}, - [2755] = {.lex_state = 8}, - [2756] = {.lex_state = 23}, - [2757] = {.lex_state = 72}, - [2758] = {.lex_state = 23}, - [2759] = {.lex_state = 23, .external_lex_state = 4}, - [2760] = {.lex_state = 23}, - [2761] = {.lex_state = 23}, - [2762] = {.lex_state = 72}, - [2763] = {.lex_state = 23, .external_lex_state = 4}, - [2764] = {.lex_state = 72}, - [2765] = {.lex_state = 8}, - [2766] = {.lex_state = 8}, - [2767] = {.lex_state = 8}, - [2768] = {.lex_state = 8}, - [2769] = {.lex_state = 72}, - [2770] = {.lex_state = 23, .external_lex_state = 4}, - [2771] = {.lex_state = 23, .external_lex_state = 4}, - [2772] = {.lex_state = 8}, - [2773] = {.lex_state = 8}, - [2774] = {.lex_state = 72}, - [2775] = {.lex_state = 31}, - [2776] = {.lex_state = 8}, + [2755] = {.lex_state = 72}, + [2756] = {.lex_state = 72}, + [2757] = {.lex_state = 31}, + [2758] = {.lex_state = 72}, + [2759] = {.lex_state = 8}, + [2760] = {.lex_state = 8}, + [2761] = {.lex_state = 72}, + [2762] = {.lex_state = 23}, + [2763] = {.lex_state = 8}, + [2764] = {.lex_state = 23}, + [2765] = {.lex_state = 5}, + [2766] = {.lex_state = 72}, + [2767] = {.lex_state = 23, .external_lex_state = 5}, + [2768] = {.lex_state = 17}, + [2769] = {.lex_state = 23}, + [2770] = {.lex_state = 17}, + [2771] = {.lex_state = 23}, + [2772] = {.lex_state = 23}, + [2773] = {.lex_state = 17}, + [2774] = {.lex_state = 23}, + [2775] = {.lex_state = 72}, + [2776] = {.lex_state = 31}, [2777] = {.lex_state = 72}, - [2778] = {.lex_state = 23}, - [2779] = {.lex_state = 23, .external_lex_state = 4}, - [2780] = {.lex_state = 8}, - [2781] = {.lex_state = 8}, - [2782] = {.lex_state = 17}, - [2783] = {.lex_state = 18}, - [2784] = {.lex_state = 23}, - [2785] = {.lex_state = 5}, - [2786] = {.lex_state = 72}, - [2787] = {.lex_state = 72}, - [2788] = {.lex_state = 17}, + [2778] = {.lex_state = 17}, + [2779] = {.lex_state = 19}, + [2780] = {.lex_state = 23}, + [2781] = {.lex_state = 72}, + [2782] = {.lex_state = 19}, + [2783] = {.lex_state = 19}, + [2784] = {.lex_state = 19}, + [2785] = {.lex_state = 18}, + [2786] = {.lex_state = 23}, + [2787] = {.lex_state = 17}, + [2788] = {.lex_state = 23}, [2789] = {.lex_state = 17}, - [2790] = {.lex_state = 72}, + [2790] = {.lex_state = 8}, [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 23}, - [2793] = {.lex_state = 17}, + [2792] = {.lex_state = 8}, + [2793] = {.lex_state = 72}, [2794] = {.lex_state = 19}, - [2795] = {.lex_state = 23}, + [2795] = {.lex_state = 19}, [2796] = {.lex_state = 19}, - [2797] = {.lex_state = 19}, - [2798] = {.lex_state = 31}, - [2799] = {.lex_state = 72}, - [2800] = {.lex_state = 23}, - [2801] = {.lex_state = 19}, - [2802] = {.lex_state = 72}, - [2803] = {.lex_state = 8}, - [2804] = {.lex_state = 8}, - [2805] = {.lex_state = 19}, - [2806] = {.lex_state = 17}, - [2807] = {.lex_state = 23}, - [2808] = {.lex_state = 17}, - [2809] = {.lex_state = 19}, - [2810] = {.lex_state = 19}, - [2811] = {.lex_state = 19}, - [2812] = {.lex_state = 72}, - [2813] = {.lex_state = 72}, - [2814] = {.lex_state = 23}, + [2797] = {.lex_state = 23}, + [2798] = {.lex_state = 23}, + [2799] = {.lex_state = 19}, + [2800] = {.lex_state = 17}, + [2801] = {.lex_state = 23}, + [2802] = {.lex_state = 23}, + [2803] = {.lex_state = 23, .external_lex_state = 5}, + [2804] = {.lex_state = 23}, + [2805] = {.lex_state = 23}, + [2806] = {.lex_state = 72}, + [2807] = {.lex_state = 8}, + [2808] = {.lex_state = 8}, + [2809] = {.lex_state = 8}, + [2810] = {.lex_state = 23}, + [2811] = {.lex_state = 31}, + [2812] = {.lex_state = 23}, + [2813] = {.lex_state = 18}, + [2814] = {.lex_state = 18}, [2815] = {.lex_state = 23}, - [2816] = {.lex_state = 31}, - [2817] = {.lex_state = 23}, - [2818] = {.lex_state = 23}, + [2816] = {.lex_state = 17}, + [2817] = {.lex_state = 5}, + [2818] = {.lex_state = 8}, [2819] = {.lex_state = 23}, - [2820] = {.lex_state = 23}, - [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 18}, - [2823] = {.lex_state = 18}, - [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 5}, + [2820] = {.lex_state = 72}, + [2821] = {.lex_state = 17}, + [2822] = {.lex_state = 72}, + [2823] = {.lex_state = 72}, + [2824] = {.lex_state = 5}, + [2825] = {.lex_state = 8}, [2826] = {.lex_state = 17}, [2827] = {.lex_state = 23}, - [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 5}, - [2830] = {.lex_state = 17}, - [2831] = {.lex_state = 17}, - [2832] = {.lex_state = 17}, - [2833] = {.lex_state = 31}, - [2834] = {.lex_state = 8}, - [2835] = {.lex_state = 17}, + [2828] = {.lex_state = 17}, + [2829] = {.lex_state = 8}, + [2830] = {.lex_state = 23, .external_lex_state = 5}, + [2831] = {.lex_state = 72}, + [2832] = {.lex_state = 72}, + [2833] = {.lex_state = 8}, + [2834] = {.lex_state = 72}, + [2835] = {.lex_state = 31}, [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 8}, - [2838] = {.lex_state = 31}, + [2837] = {.lex_state = 23}, + [2838] = {.lex_state = 8}, [2839] = {.lex_state = 8}, - [2840] = {.lex_state = 17}, - [2841] = {.lex_state = 17}, + [2840] = {.lex_state = 8}, + [2841] = {.lex_state = 8}, [2842] = {.lex_state = 23}, [2843] = {.lex_state = 8}, - [2844] = {.lex_state = 72}, - [2845] = {.lex_state = 17}, - [2846] = {.lex_state = 72}, - [2847] = {.lex_state = 72}, - [2848] = {.lex_state = 72}, - [2849] = {.lex_state = 72}, + [2844] = {.lex_state = 8}, + [2845] = {.lex_state = 8}, + [2846] = {.lex_state = 17}, + [2847] = {.lex_state = 17}, + [2848] = {.lex_state = 17}, + [2849] = {.lex_state = 8}, [2850] = {.lex_state = 72}, [2851] = {.lex_state = 72}, - [2852] = {.lex_state = 19}, + [2852] = {.lex_state = 72}, [2853] = {.lex_state = 72}, [2854] = {.lex_state = 72}, [2855] = {.lex_state = 72}, [2856] = {.lex_state = 72}, [2857] = {.lex_state = 72}, - [2858] = {.lex_state = 19}, + [2858] = {.lex_state = 72}, [2859] = {.lex_state = 72}, - [2860] = {.lex_state = 19}, + [2860] = {.lex_state = 72}, [2861] = {.lex_state = 72}, [2862] = {.lex_state = 72}, [2863] = {.lex_state = 72}, [2864] = {.lex_state = 72}, [2865] = {.lex_state = 72}, [2866] = {.lex_state = 72}, - [2867] = {.lex_state = 8}, + [2867] = {.lex_state = 72}, [2868] = {.lex_state = 72}, - [2869] = {.lex_state = 19}, + [2869] = {.lex_state = 17}, [2870] = {.lex_state = 19}, [2871] = {.lex_state = 72}, [2872] = {.lex_state = 72}, - [2873] = {.lex_state = 19}, + [2873] = {.lex_state = 72}, [2874] = {.lex_state = 72}, - [2875] = {.lex_state = 19}, - [2876] = {.lex_state = 72}, + [2875] = {.lex_state = 72}, + [2876] = {.lex_state = 19}, [2877] = {.lex_state = 72}, [2878] = {.lex_state = 72}, [2879] = {.lex_state = 17}, - [2880] = {.lex_state = 72}, + [2880] = {.lex_state = 19}, [2881] = {.lex_state = 17}, - [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 23, .external_lex_state = 4}, - [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 17}, - [2886] = {.lex_state = 31}, + [2882] = {.lex_state = 19}, + [2883] = {.lex_state = 72}, + [2884] = {.lex_state = 19}, + [2885] = {.lex_state = 19}, + [2886] = {.lex_state = 72}, [2887] = {.lex_state = 72}, - [2888] = {.lex_state = 72}, + [2888] = {.lex_state = 17}, [2889] = {.lex_state = 72}, - [2890] = {.lex_state = 17}, - [2891] = {.lex_state = 17}, - [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 21}, + [2890] = {.lex_state = 72}, + [2891] = {.lex_state = 72}, + [2892] = {.lex_state = 8}, + [2893] = {.lex_state = 72}, [2894] = {.lex_state = 72}, [2895] = {.lex_state = 21}, [2896] = {.lex_state = 72}, [2897] = {.lex_state = 72}, [2898] = {.lex_state = 72}, [2899] = {.lex_state = 72}, - [2900] = {.lex_state = 72}, + [2900] = {.lex_state = 17}, [2901] = {.lex_state = 72}, [2902] = {.lex_state = 72}, [2903] = {.lex_state = 72}, [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 17}, + [2905] = {.lex_state = 72}, [2906] = {.lex_state = 72}, [2907] = {.lex_state = 72}, [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 17}, - [2910] = {.lex_state = 72}, + [2909] = {.lex_state = 72}, + [2910] = {.lex_state = 19}, [2911] = {.lex_state = 72}, [2912] = {.lex_state = 72}, [2913] = {.lex_state = 72}, - [2914] = {.lex_state = 72}, + [2914] = {.lex_state = 21}, [2915] = {.lex_state = 72}, [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 21}, + [2917] = {.lex_state = 72}, [2918] = {.lex_state = 72}, [2919] = {.lex_state = 72}, - [2920] = {.lex_state = 72}, + [2920] = {.lex_state = 8}, [2921] = {.lex_state = 72}, - [2922] = {.lex_state = 72}, + [2922] = {.lex_state = 8}, [2923] = {.lex_state = 72}, - [2924] = {.lex_state = 72}, + [2924] = {.lex_state = 17}, [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 17}, + [2926] = {.lex_state = 72}, [2927] = {.lex_state = 72}, - [2928] = {.lex_state = 31}, + [2928] = {.lex_state = 72}, [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 17}, - [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 19}, - [2933] = {.lex_state = 19}, - [2934] = {.lex_state = 17}, + [2930] = {.lex_state = 72}, + [2931] = {.lex_state = 17}, + [2932] = {.lex_state = 17}, + [2933] = {.lex_state = 17}, + [2934] = {.lex_state = 72}, [2935] = {.lex_state = 72}, - [2936] = {.lex_state = 17}, - [2937] = {.lex_state = 19}, + [2936] = {.lex_state = 72}, + [2937] = {.lex_state = 72}, [2938] = {.lex_state = 72}, [2939] = {.lex_state = 72}, [2940] = {.lex_state = 72}, - [2941] = {.lex_state = 72}, + [2941] = {.lex_state = 21}, [2942] = {.lex_state = 72}, [2943] = {.lex_state = 72}, - [2944] = {.lex_state = 19}, - [2945] = {.lex_state = 72}, + [2944] = {.lex_state = 72}, + [2945] = {.lex_state = 19}, [2946] = {.lex_state = 19}, - [2947] = {.lex_state = 8}, - [2948] = {.lex_state = 72}, + [2947] = {.lex_state = 72}, + [2948] = {.lex_state = 19}, [2949] = {.lex_state = 72}, [2950] = {.lex_state = 19}, - [2951] = {.lex_state = 72}, - [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 17}, - [2954] = {.lex_state = 72}, + [2951] = {.lex_state = 19}, + [2952] = {.lex_state = 19}, + [2953] = {.lex_state = 19}, + [2954] = {.lex_state = 17}, [2955] = {.lex_state = 19}, - [2956] = {.lex_state = 72}, + [2956] = {.lex_state = 19}, [2957] = {.lex_state = 72}, [2958] = {.lex_state = 72}, - [2959] = {.lex_state = 72}, + [2959] = {.lex_state = 19}, [2960] = {.lex_state = 72}, [2961] = {.lex_state = 72}, [2962] = {.lex_state = 72}, - [2963] = {.lex_state = 72}, + [2963] = {.lex_state = 19}, [2964] = {.lex_state = 72}, [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, - [2967] = {.lex_state = 72}, + [2967] = {.lex_state = 19}, [2968] = {.lex_state = 72}, [2969] = {.lex_state = 72}, - [2970] = {.lex_state = 72}, - [2971] = {.lex_state = 72}, + [2970] = {.lex_state = 31}, + [2971] = {.lex_state = 23, .external_lex_state = 5}, [2972] = {.lex_state = 72}, [2973] = {.lex_state = 72}, [2974] = {.lex_state = 17}, [2975] = {.lex_state = 72}, - [2976] = {.lex_state = 72}, - [2977] = {.lex_state = 72}, - [2978] = {.lex_state = 8}, + [2976] = {.lex_state = 17}, + [2977] = {.lex_state = 17}, + [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, [2980] = {.lex_state = 72}, - [2981] = {.lex_state = 19}, + [2981] = {.lex_state = 72}, [2982] = {.lex_state = 72}, [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 72}, + [2984] = {.lex_state = 17}, [2985] = {.lex_state = 72}, - [2986] = {.lex_state = 72}, + [2986] = {.lex_state = 31}, [2987] = {.lex_state = 72}, - [2988] = {.lex_state = 8}, + [2988] = {.lex_state = 72}, [2989] = {.lex_state = 72}, - [2990] = {.lex_state = 19}, + [2990] = {.lex_state = 8}, [2991] = {.lex_state = 72}, [2992] = {.lex_state = 72}, [2993] = {.lex_state = 72}, @@ -13386,8 +13420,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2997] = {.lex_state = 72}, [2998] = {.lex_state = 72}, [2999] = {.lex_state = 72}, - [3000] = {.lex_state = 17}, - [3001] = {.lex_state = 17}, + [3000] = {.lex_state = 72}, + [3001] = {.lex_state = 19}, [3002] = {.lex_state = 72}, [3003] = {.lex_state = 72}, [3004] = {.lex_state = 72}, @@ -13396,111 +13430,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3007] = {.lex_state = 72}, [3008] = {.lex_state = 72}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 17}, + [3010] = {.lex_state = 72}, [3011] = {.lex_state = 72}, - [3012] = {.lex_state = 19}, - [3013] = {.lex_state = 8}, + [3012] = {.lex_state = 72}, + [3013] = {.lex_state = 17}, [3014] = {.lex_state = 72}, [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 17}, + [3016] = {.lex_state = 72}, [3017] = {.lex_state = 72}, [3018] = {.lex_state = 72}, [3019] = {.lex_state = 72}, - [3020] = {.lex_state = 72}, - [3021] = {.lex_state = 8}, - [3022] = {.lex_state = 17}, - [3023] = {.lex_state = 72}, + [3020] = {.lex_state = 8}, + [3021] = {.lex_state = 72}, + [3022] = {.lex_state = 72}, + [3023] = {.lex_state = 17}, [3024] = {.lex_state = 72}, [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, [3027] = {.lex_state = 72}, [3028] = {.lex_state = 72}, - [3029] = {.lex_state = 23}, + [3029] = {.lex_state = 72}, [3030] = {.lex_state = 72}, [3031] = {.lex_state = 72}, [3032] = {.lex_state = 17}, - [3033] = {.lex_state = 72}, + [3033] = {.lex_state = 17}, [3034] = {.lex_state = 72}, - [3035] = {.lex_state = 19}, + [3035] = {.lex_state = 17}, [3036] = {.lex_state = 72}, - [3037] = {.lex_state = 19}, - [3038] = {.lex_state = 17}, + [3037] = {.lex_state = 72}, + [3038] = {.lex_state = 72}, [3039] = {.lex_state = 72}, - [3040] = {.lex_state = 72}, + [3040] = {.lex_state = 17}, [3041] = {.lex_state = 72}, [3042] = {.lex_state = 72}, [3043] = {.lex_state = 72}, [3044] = {.lex_state = 72}, [3045] = {.lex_state = 8}, - [3046] = {.lex_state = 19}, - [3047] = {.lex_state = 19}, + [3046] = {.lex_state = 72}, + [3047] = {.lex_state = 72}, [3048] = {.lex_state = 72}, [3049] = {.lex_state = 72}, [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, - [3052] = {.lex_state = 8}, + [3052] = {.lex_state = 72}, [3053] = {.lex_state = 72}, - [3054] = {.lex_state = 72}, - [3055] = {.lex_state = 21}, - [3056] = {.lex_state = 72}, + [3054] = {.lex_state = 21}, + [3055] = {.lex_state = 72}, + [3056] = {.lex_state = 23}, [3057] = {.lex_state = 72}, [3058] = {.lex_state = 72}, - [3059] = {.lex_state = 21}, + [3059] = {.lex_state = 72}, [3060] = {.lex_state = 72}, - [3061] = {.lex_state = 72}, + [3061] = {.lex_state = 17}, [3062] = {.lex_state = 72}, - [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 8}, - [3065] = {.lex_state = 19}, + [3063] = {.lex_state = 8}, + [3064] = {.lex_state = 72}, + [3065] = {.lex_state = 72}, [3066] = {.lex_state = 72}, [3067] = {.lex_state = 72}, [3068] = {.lex_state = 72}, - [3069] = {.lex_state = 72}, + [3069] = {.lex_state = 23}, [3070] = {.lex_state = 72}, - [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 23}, - [3073] = {.lex_state = 23}, - [3074] = {.lex_state = 72}, + [3071] = {.lex_state = 23}, + [3072] = {.lex_state = 72}, + [3073] = {.lex_state = 72}, + [3074] = {.lex_state = 21}, [3075] = {.lex_state = 72}, - [3076] = {.lex_state = 19}, - [3077] = {.lex_state = 19}, - [3078] = {.lex_state = 72}, - [3079] = {.lex_state = 72}, + [3076] = {.lex_state = 72}, + [3077] = {.lex_state = 72}, + [3078] = {.lex_state = 19}, + [3079] = {.lex_state = 19}, [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 17}, - [3082] = {.lex_state = 72}, - [3083] = {.lex_state = 72}, - [3084] = {.lex_state = 72}, - [3085] = {.lex_state = 17}, + [3081] = {.lex_state = 72}, + [3082] = {.lex_state = 8}, + [3083] = {.lex_state = 19}, + [3084] = {.lex_state = 23}, + [3085] = {.lex_state = 72}, [3086] = {.lex_state = 19}, - [3087] = {.lex_state = 72}, + [3087] = {.lex_state = 8}, [3088] = {.lex_state = 72}, - [3089] = {.lex_state = 19}, - [3090] = {.lex_state = 23}, - [3091] = {.lex_state = 72}, + [3089] = {.lex_state = 72}, + [3090] = {.lex_state = 72}, + [3091] = {.lex_state = 19}, [3092] = {.lex_state = 19}, [3093] = {.lex_state = 19}, [3094] = {.lex_state = 19}, - [3095] = {.lex_state = 72}, - [3096] = {.lex_state = 72}, - [3097] = {.lex_state = 17}, + [3095] = {.lex_state = 19}, + [3096] = {.lex_state = 19}, + [3097] = {.lex_state = 72}, [3098] = {.lex_state = 72}, [3099] = {.lex_state = 72}, [3100] = {.lex_state = 19}, [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 19}, - [3103] = {.lex_state = 19}, - [3104] = {.lex_state = 72}, + [3102] = {.lex_state = 72}, + [3103] = {.lex_state = 72}, + [3104] = {.lex_state = 19}, [3105] = {.lex_state = 72}, - [3106] = {.lex_state = 72}, - [3107] = {.lex_state = 19}, + [3106] = {.lex_state = 17}, + [3107] = {.lex_state = 72}, [3108] = {.lex_state = 19}, - [3109] = {.lex_state = 72}, - [3110] = {.lex_state = 72}, + [3109] = {.lex_state = 19}, + [3110] = {.lex_state = 19}, [3111] = {.lex_state = 72}, - [3112] = {.lex_state = 72}, + [3112] = {.lex_state = 17}, [3113] = {.lex_state = 72}, - [3114] = {.lex_state = 72}, + [3114] = {.lex_state = 17}, [3115] = {.lex_state = 19}, [3116] = {.lex_state = 72}, [3117] = {.lex_state = 72}, @@ -13508,169 +13542,169 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3119] = {.lex_state = 72}, [3120] = {.lex_state = 72}, [3121] = {.lex_state = 72}, - [3122] = {.lex_state = 17}, - [3123] = {.lex_state = 8}, + [3122] = {.lex_state = 72}, + [3123] = {.lex_state = 72}, [3124] = {.lex_state = 72}, - [3125] = {.lex_state = 17}, + [3125] = {.lex_state = 72}, [3126] = {.lex_state = 72}, [3127] = {.lex_state = 72}, [3128] = {.lex_state = 72}, [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 72}, + [3130] = {.lex_state = 19}, [3131] = {.lex_state = 72}, - [3132] = {.lex_state = 19}, + [3132] = {.lex_state = 17}, [3133] = {.lex_state = 72}, - [3134] = {.lex_state = 72}, + [3134] = {.lex_state = 17}, [3135] = {.lex_state = 72}, - [3136] = {.lex_state = 72}, + [3136] = {.lex_state = 8}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, [3139] = {.lex_state = 72}, - [3140] = {.lex_state = 19}, + [3140] = {.lex_state = 72}, [3141] = {.lex_state = 72}, [3142] = {.lex_state = 72}, - [3143] = {.lex_state = 72}, + [3143] = {.lex_state = 8}, [3144] = {.lex_state = 8}, - [3145] = {.lex_state = 72}, + [3145] = {.lex_state = 8}, [3146] = {.lex_state = 72}, - [3147] = {.lex_state = 8}, - [3148] = {.lex_state = 8}, + [3147] = {.lex_state = 17}, + [3148] = {.lex_state = 72}, [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 17}, - [3151] = {.lex_state = 8}, - [3152] = {.lex_state = 72}, - [3153] = {.lex_state = 17}, + [3150] = {.lex_state = 8}, + [3151] = {.lex_state = 72}, + [3152] = {.lex_state = 17}, + [3153] = {.lex_state = 72}, [3154] = {.lex_state = 72}, - [3155] = {.lex_state = 17}, + [3155] = {.lex_state = 72}, [3156] = {.lex_state = 72}, - [3157] = {.lex_state = 17}, + [3157] = {.lex_state = 72}, [3158] = {.lex_state = 72}, [3159] = {.lex_state = 72}, [3160] = {.lex_state = 72}, [3161] = {.lex_state = 17}, - [3162] = {.lex_state = 7}, + [3162] = {.lex_state = 72}, [3163] = {.lex_state = 72}, [3164] = {.lex_state = 72}, - [3165] = {.lex_state = 7}, + [3165] = {.lex_state = 72}, [3166] = {.lex_state = 72}, [3167] = {.lex_state = 72}, - [3168] = {.lex_state = 72}, - [3169] = {.lex_state = 17}, - [3170] = {.lex_state = 17}, - [3171] = {.lex_state = 17}, + [3168] = {.lex_state = 31}, + [3169] = {.lex_state = 72}, + [3170] = {.lex_state = 72}, + [3171] = {.lex_state = 72}, [3172] = {.lex_state = 17}, [3173] = {.lex_state = 17}, [3174] = {.lex_state = 17}, [3175] = {.lex_state = 17}, - [3176] = {.lex_state = 72}, - [3177] = {.lex_state = 72}, + [3176] = {.lex_state = 17}, + [3177] = {.lex_state = 17}, [3178] = {.lex_state = 72}, - [3179] = {.lex_state = 72}, - [3180] = {.lex_state = 72}, - [3181] = {.lex_state = 72}, + [3179] = {.lex_state = 17}, + [3180] = {.lex_state = 17}, + [3181] = {.lex_state = 17}, [3182] = {.lex_state = 17}, - [3183] = {.lex_state = 72}, - [3184] = {.lex_state = 17}, - [3185] = {.lex_state = 17}, + [3183] = {.lex_state = 17}, + [3184] = {.lex_state = 72}, + [3185] = {.lex_state = 72}, [3186] = {.lex_state = 72}, - [3187] = {.lex_state = 72}, + [3187] = {.lex_state = 72, .external_lex_state = 6}, [3188] = {.lex_state = 72}, - [3189] = {.lex_state = 72}, - [3190] = {.lex_state = 72}, - [3191] = {.lex_state = 17}, + [3189] = {.lex_state = 17}, + [3190] = {.lex_state = 31}, + [3191] = {.lex_state = 72}, [3192] = {.lex_state = 72}, - [3193] = {.lex_state = 72}, - [3194] = {.lex_state = 23}, - [3195] = {.lex_state = 72}, - [3196] = {.lex_state = 17}, - [3197] = {.lex_state = 72}, + [3193] = {.lex_state = 17}, + [3194] = {.lex_state = 17}, + [3195] = {.lex_state = 17}, + [3196] = {.lex_state = 72}, + [3197] = {.lex_state = 17}, [3198] = {.lex_state = 72}, [3199] = {.lex_state = 17}, [3200] = {.lex_state = 72}, - [3201] = {.lex_state = 17}, + [3201] = {.lex_state = 72}, [3202] = {.lex_state = 72}, [3203] = {.lex_state = 72}, [3204] = {.lex_state = 72}, - [3205] = {.lex_state = 17}, + [3205] = {.lex_state = 72}, [3206] = {.lex_state = 72}, - [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 17}, + [3207] = {.lex_state = 17}, + [3208] = {.lex_state = 23}, [3209] = {.lex_state = 72}, - [3210] = {.lex_state = 72}, - [3211] = {.lex_state = 8}, + [3210] = {.lex_state = 17}, + [3211] = {.lex_state = 72, .external_lex_state = 6}, [3212] = {.lex_state = 72}, - [3213] = {.lex_state = 31}, + [3213] = {.lex_state = 72}, [3214] = {.lex_state = 72}, [3215] = {.lex_state = 72}, [3216] = {.lex_state = 17}, - [3217] = {.lex_state = 17}, - [3218] = {.lex_state = 72}, - [3219] = {.lex_state = 17}, + [3217] = {.lex_state = 7}, + [3218] = {.lex_state = 7}, + [3219] = {.lex_state = 72}, [3220] = {.lex_state = 72}, [3221] = {.lex_state = 72}, [3222] = {.lex_state = 72}, - [3223] = {.lex_state = 72}, + [3223] = {.lex_state = 17}, [3224] = {.lex_state = 17}, [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 17}, - [3227] = {.lex_state = 17}, - [3228] = {.lex_state = 17}, - [3229] = {.lex_state = 72}, - [3230] = {.lex_state = 72}, - [3231] = {.lex_state = 72}, + [3226] = {.lex_state = 72}, + [3227] = {.lex_state = 72}, + [3228] = {.lex_state = 72}, + [3229] = {.lex_state = 17}, + [3230] = {.lex_state = 23}, + [3231] = {.lex_state = 17}, [3232] = {.lex_state = 72}, [3233] = {.lex_state = 17}, - [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 17}, + [3234] = {.lex_state = 17}, + [3235] = {.lex_state = 72}, [3236] = {.lex_state = 72}, [3237] = {.lex_state = 72}, - [3238] = {.lex_state = 17}, - [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 17}, + [3238] = {.lex_state = 72}, + [3239] = {.lex_state = 17}, + [3240] = {.lex_state = 72}, [3241] = {.lex_state = 72}, [3242] = {.lex_state = 72}, [3243] = {.lex_state = 72}, [3244] = {.lex_state = 72}, - [3245] = {.lex_state = 17}, - [3246] = {.lex_state = 17}, + [3245] = {.lex_state = 72}, + [3246] = {.lex_state = 72}, [3247] = {.lex_state = 72}, [3248] = {.lex_state = 72}, - [3249] = {.lex_state = 72}, - [3250] = {.lex_state = 17}, - [3251] = {.lex_state = 17}, - [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 17}, + [3249] = {.lex_state = 17}, + [3250] = {.lex_state = 72}, + [3251] = {.lex_state = 72}, + [3252] = {.lex_state = 72}, + [3253] = {.lex_state = 72}, [3254] = {.lex_state = 72}, [3255] = {.lex_state = 72}, [3256] = {.lex_state = 72}, - [3257] = {.lex_state = 17}, + [3257] = {.lex_state = 72}, [3258] = {.lex_state = 72}, [3259] = {.lex_state = 17}, [3260] = {.lex_state = 17}, - [3261] = {.lex_state = 17}, - [3262] = {.lex_state = 72}, - [3263] = {.lex_state = 17}, + [3261] = {.lex_state = 72}, + [3262] = {.lex_state = 17}, + [3263] = {.lex_state = 72}, [3264] = {.lex_state = 17}, [3265] = {.lex_state = 17}, [3266] = {.lex_state = 17}, - [3267] = {.lex_state = 17}, - [3268] = {.lex_state = 17}, + [3267] = {.lex_state = 8}, + [3268] = {.lex_state = 72}, [3269] = {.lex_state = 72}, [3270] = {.lex_state = 17}, - [3271] = {.lex_state = 72}, - [3272] = {.lex_state = 72}, + [3271] = {.lex_state = 17}, + [3272] = {.lex_state = 17}, [3273] = {.lex_state = 17}, [3274] = {.lex_state = 17}, - [3275] = {.lex_state = 17}, + [3275] = {.lex_state = 72}, [3276] = {.lex_state = 17}, [3277] = {.lex_state = 72}, - [3278] = {.lex_state = 72}, + [3278] = {.lex_state = 17}, [3279] = {.lex_state = 72}, [3280] = {.lex_state = 17}, [3281] = {.lex_state = 17}, [3282] = {.lex_state = 17}, [3283] = {.lex_state = 17}, - [3284] = {.lex_state = 17}, + [3284] = {.lex_state = 72}, [3285] = {.lex_state = 17}, [3286] = {.lex_state = 17}, [3287] = {.lex_state = 17}, @@ -13683,98 +13717,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3294] = {.lex_state = 17}, [3295] = {.lex_state = 17}, [3296] = {.lex_state = 17}, - [3297] = {.lex_state = 23, .external_lex_state = 5}, - [3298] = {.lex_state = 72}, - [3299] = {.lex_state = 72}, + [3297] = {.lex_state = 17}, + [3298] = {.lex_state = 17}, + [3299] = {.lex_state = 17}, [3300] = {.lex_state = 17}, [3301] = {.lex_state = 72}, - [3302] = {.lex_state = 72}, - [3303] = {.lex_state = 72}, - [3304] = {.lex_state = 17}, - [3305] = {.lex_state = 72}, + [3302] = {.lex_state = 17}, + [3303] = {.lex_state = 17}, + [3304] = {.lex_state = 72}, + [3305] = {.lex_state = 17}, [3306] = {.lex_state = 72}, - [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 72}, + [3307] = {.lex_state = 17}, + [3308] = {.lex_state = 17}, [3309] = {.lex_state = 72}, [3310] = {.lex_state = 72}, [3311] = {.lex_state = 17}, - [3312] = {.lex_state = 72}, + [3312] = {.lex_state = 17}, [3313] = {.lex_state = 72}, [3314] = {.lex_state = 72}, [3315] = {.lex_state = 72}, - [3316] = {.lex_state = 72, .external_lex_state = 6}, + [3316] = {.lex_state = 17}, [3317] = {.lex_state = 72}, [3318] = {.lex_state = 72}, [3319] = {.lex_state = 72}, - [3320] = {.lex_state = 8}, + [3320] = {.lex_state = 17}, [3321] = {.lex_state = 72}, - [3322] = {.lex_state = 23, .external_lex_state = 5}, - [3323] = {.lex_state = 72}, + [3322] = {.lex_state = 72}, + [3323] = {.lex_state = 17}, [3324] = {.lex_state = 72}, [3325] = {.lex_state = 17}, [3326] = {.lex_state = 72}, - [3327] = {.lex_state = 72}, + [3327] = {.lex_state = 17}, [3328] = {.lex_state = 72}, - [3329] = {.lex_state = 17}, + [3329] = {.lex_state = 72}, [3330] = {.lex_state = 72}, - [3331] = {.lex_state = 72}, + [3331] = {.lex_state = 8}, [3332] = {.lex_state = 72}, - [3333] = {.lex_state = 17}, + [3333] = {.lex_state = 23, .external_lex_state = 7}, [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 17}, - [3336] = {.lex_state = 72}, - [3337] = {.lex_state = 17}, + [3335] = {.lex_state = 72}, + [3336] = {.lex_state = 17}, + [3337] = {.lex_state = 72}, [3338] = {.lex_state = 72}, [3339] = {.lex_state = 72}, - [3340] = {.lex_state = 72}, - [3341] = {.lex_state = 17}, + [3340] = {.lex_state = 17}, + [3341] = {.lex_state = 72}, [3342] = {.lex_state = 72}, - [3343] = {.lex_state = 72}, + [3343] = {.lex_state = 17}, [3344] = {.lex_state = 17}, - [3345] = {.lex_state = 31}, - [3346] = {.lex_state = 72}, + [3345] = {.lex_state = 72}, + [3346] = {.lex_state = 17}, [3347] = {.lex_state = 72}, - [3348] = {.lex_state = 72, .external_lex_state = 6}, + [3348] = {.lex_state = 72}, [3349] = {.lex_state = 72}, [3350] = {.lex_state = 72}, - [3351] = {.lex_state = 17}, + [3351] = {.lex_state = 72}, [3352] = {.lex_state = 72}, - [3353] = {.lex_state = 72}, + [3353] = {.lex_state = 31}, [3354] = {.lex_state = 72}, - [3355] = {.lex_state = 72}, + [3355] = {.lex_state = 17}, [3356] = {.lex_state = 72}, [3357] = {.lex_state = 72}, [3358] = {.lex_state = 72}, [3359] = {.lex_state = 72}, [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 17}, - [3362] = {.lex_state = 17}, + [3361] = {.lex_state = 72}, + [3362] = {.lex_state = 72}, [3363] = {.lex_state = 72}, [3364] = {.lex_state = 72}, [3365] = {.lex_state = 72}, [3366] = {.lex_state = 72}, - [3367] = {.lex_state = 72}, - [3368] = {.lex_state = 72}, - [3369] = {.lex_state = 23, .external_lex_state = 5}, + [3367] = {.lex_state = 23, .external_lex_state = 7}, + [3368] = {.lex_state = 17}, + [3369] = {.lex_state = 72}, [3370] = {.lex_state = 17}, [3371] = {.lex_state = 72}, [3372] = {.lex_state = 72}, [3373] = {.lex_state = 72}, - [3374] = {.lex_state = 17}, - [3375] = {.lex_state = 17}, - [3376] = {.lex_state = 31}, - [3377] = {.lex_state = 17}, + [3374] = {.lex_state = 72}, + [3375] = {.lex_state = 72}, + [3376] = {.lex_state = 72}, + [3377] = {.lex_state = 23, .external_lex_state = 7}, [3378] = {.lex_state = 72}, [3379] = {.lex_state = 72}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 17}, + [3382] = {.lex_state = 72}, [3383] = {.lex_state = 72}, [3384] = {.lex_state = 72}, [3385] = {.lex_state = 72}, [3386] = {.lex_state = 72}, [3387] = {.lex_state = 72}, - [3388] = {.lex_state = 72}, + [3388] = {.lex_state = 17}, [3389] = {.lex_state = 17}, [3390] = {.lex_state = 72}, [3391] = {.lex_state = 72}, @@ -13787,162 +13821,162 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3398] = {.lex_state = 72}, [3399] = {.lex_state = 72}, [3400] = {.lex_state = 72}, - [3401] = {.lex_state = 31}, - [3402] = {.lex_state = 31}, - [3403] = {.lex_state = 72}, - [3404] = {.lex_state = 72}, - [3405] = {.lex_state = 21}, - [3406] = {.lex_state = 72}, - [3407] = {.lex_state = 72}, + [3401] = {.lex_state = 72}, + [3402] = {.lex_state = 72}, + [3403] = {.lex_state = 17}, + [3404] = {.lex_state = 31}, + [3405] = {.lex_state = 31}, + [3406] = {.lex_state = 17}, + [3407] = {.lex_state = 17}, [3408] = {.lex_state = 72}, - [3409] = {.lex_state = 17}, + [3409] = {.lex_state = 72}, [3410] = {.lex_state = 17}, - [3411] = {.lex_state = 17}, - [3412] = {.lex_state = 17}, - [3413] = {.lex_state = 17}, - [3414] = {.lex_state = 17}, + [3411] = {.lex_state = 72}, + [3412] = {.lex_state = 21}, + [3413] = {.lex_state = 72}, + [3414] = {.lex_state = 72}, [3415] = {.lex_state = 72}, - [3416] = {.lex_state = 17}, + [3416] = {.lex_state = 72}, [3417] = {.lex_state = 72}, - [3418] = {.lex_state = 72}, - [3419] = {.lex_state = 72}, - [3420] = {.lex_state = 23}, + [3418] = {.lex_state = 17}, + [3419] = {.lex_state = 17}, + [3420] = {.lex_state = 17}, [3421] = {.lex_state = 72}, [3422] = {.lex_state = 17}, [3423] = {.lex_state = 72}, [3424] = {.lex_state = 17}, - [3425] = {.lex_state = 72}, - [3426] = {.lex_state = 72}, + [3425] = {.lex_state = 17}, + [3426] = {.lex_state = 17}, [3427] = {.lex_state = 72}, [3428] = {.lex_state = 17}, - [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 17}, + [3429] = {.lex_state = 17}, + [3430] = {.lex_state = 72}, [3431] = {.lex_state = 72}, - [3432] = {.lex_state = 17}, + [3432] = {.lex_state = 31}, [3433] = {.lex_state = 17}, - [3434] = {.lex_state = 31}, - [3435] = {.lex_state = 17}, - [3436] = {.lex_state = 17}, - [3437] = {.lex_state = 72}, - [3438] = {.lex_state = 17}, + [3434] = {.lex_state = 72}, + [3435] = {.lex_state = 72}, + [3436] = {.lex_state = 72}, + [3437] = {.lex_state = 17}, + [3438] = {.lex_state = 72}, [3439] = {.lex_state = 17}, - [3440] = {.lex_state = 72}, + [3440] = {.lex_state = 17}, [3441] = {.lex_state = 17}, [3442] = {.lex_state = 17}, [3443] = {.lex_state = 17}, - [3444] = {.lex_state = 17}, + [3444] = {.lex_state = 72}, [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 17}, + [3446] = {.lex_state = 72}, [3447] = {.lex_state = 17}, - [3448] = {.lex_state = 17}, + [3448] = {.lex_state = 72}, [3449] = {.lex_state = 72}, - [3450] = {.lex_state = 72}, - [3451] = {.lex_state = 72}, + [3450] = {.lex_state = 17}, + [3451] = {.lex_state = 17}, [3452] = {.lex_state = 72}, [3453] = {.lex_state = 17}, - [3454] = {.lex_state = 17}, - [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 72}, - [3457] = {.lex_state = 72}, + [3454] = {.lex_state = 72}, + [3455] = {.lex_state = 17}, + [3456] = {.lex_state = 17}, + [3457] = {.lex_state = 17}, [3458] = {.lex_state = 72}, [3459] = {.lex_state = 72}, [3460] = {.lex_state = 72}, - [3461] = {.lex_state = 72}, - [3462] = {.lex_state = 17}, - [3463] = {.lex_state = 72}, - [3464] = {.lex_state = 72}, - [3465] = {.lex_state = 72}, - [3466] = {.lex_state = 72}, + [3461] = {.lex_state = 17}, + [3462] = {.lex_state = 72}, + [3463] = {.lex_state = 21}, + [3464] = {.lex_state = 17}, + [3465] = {.lex_state = 17}, + [3466] = {.lex_state = 167}, [3467] = {.lex_state = 72}, [3468] = {.lex_state = 72}, [3469] = {.lex_state = 72}, - [3470] = {.lex_state = 21}, + [3470] = {.lex_state = 72}, [3471] = {.lex_state = 72}, - [3472] = {.lex_state = 8}, + [3472] = {.lex_state = 72}, [3473] = {.lex_state = 72}, - [3474] = {.lex_state = 72}, - [3475] = {.lex_state = 17}, + [3474] = {.lex_state = 21}, + [3475] = {.lex_state = 72}, [3476] = {.lex_state = 72}, - [3477] = {.lex_state = 72}, - [3478] = {.lex_state = 17}, - [3479] = {.lex_state = 17}, + [3477] = {.lex_state = 17}, + [3478] = {.lex_state = 21}, + [3479] = {.lex_state = 72}, [3480] = {.lex_state = 72}, - [3481] = {.lex_state = 72, .external_lex_state = 7}, + [3481] = {.lex_state = 72}, [3482] = {.lex_state = 72}, [3483] = {.lex_state = 72}, - [3484] = {.lex_state = 72}, - [3485] = {.lex_state = 17}, + [3484] = {.lex_state = 17}, + [3485] = {.lex_state = 72}, [3486] = {.lex_state = 72}, - [3487] = {.lex_state = 72}, + [3487] = {.lex_state = 17}, [3488] = {.lex_state = 72, .external_lex_state = 8}, - [3489] = {.lex_state = 72, .external_lex_state = 8}, + [3489] = {.lex_state = 72}, [3490] = {.lex_state = 72}, - [3491] = {.lex_state = 72}, + [3491] = {.lex_state = 73}, [3492] = {.lex_state = 72}, [3493] = {.lex_state = 72}, [3494] = {.lex_state = 72}, - [3495] = {.lex_state = 17}, - [3496] = {.lex_state = 17}, + [3495] = {.lex_state = 72}, + [3496] = {.lex_state = 72}, [3497] = {.lex_state = 72}, [3498] = {.lex_state = 72}, [3499] = {.lex_state = 72}, - [3500] = {.lex_state = 17}, - [3501] = {.lex_state = 17}, - [3502] = {.lex_state = 72}, + [3500] = {.lex_state = 72}, + [3501] = {.lex_state = 21}, + [3502] = {.lex_state = 17}, [3503] = {.lex_state = 17}, - [3504] = {.lex_state = 72}, - [3505] = {.lex_state = 72}, - [3506] = {.lex_state = 17}, - [3507] = {.lex_state = 72}, - [3508] = {.lex_state = 17}, - [3509] = {.lex_state = 73}, - [3510] = {.lex_state = 72}, - [3511] = {.lex_state = 72}, - [3512] = {.lex_state = 72}, - [3513] = {.lex_state = 72}, + [3504] = {.lex_state = 17}, + [3505] = {.lex_state = 73}, + [3506] = {.lex_state = 72}, + [3507] = {.lex_state = 73}, + [3508] = {.lex_state = 72}, + [3509] = {.lex_state = 72}, + [3510] = {.lex_state = 73}, + [3511] = {.lex_state = 17}, + [3512] = {.lex_state = 17}, + [3513] = {.lex_state = 21}, [3514] = {.lex_state = 72}, [3515] = {.lex_state = 72}, - [3516] = {.lex_state = 17}, + [3516] = {.lex_state = 72}, [3517] = {.lex_state = 72}, - [3518] = {.lex_state = 72}, - [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 73}, - [3521] = {.lex_state = 72}, - [3522] = {.lex_state = 17}, - [3523] = {.lex_state = 17}, - [3524] = {.lex_state = 72, .external_lex_state = 7}, - [3525] = {.lex_state = 17}, - [3526] = {.lex_state = 72}, + [3518] = {.lex_state = 17}, + [3519] = {.lex_state = 17}, + [3520] = {.lex_state = 72}, + [3521] = {.lex_state = 72, .external_lex_state = 9}, + [3522] = {.lex_state = 72}, + [3523] = {.lex_state = 72}, + [3524] = {.lex_state = 72}, + [3525] = {.lex_state = 72}, + [3526] = {.lex_state = 17}, [3527] = {.lex_state = 72}, [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 21}, + [3529] = {.lex_state = 72}, [3530] = {.lex_state = 72}, - [3531] = {.lex_state = 17}, - [3532] = {.lex_state = 21}, - [3533] = {.lex_state = 17}, + [3531] = {.lex_state = 72}, + [3532] = {.lex_state = 72}, + [3533] = {.lex_state = 72}, [3534] = {.lex_state = 72}, - [3535] = {.lex_state = 23}, - [3536] = {.lex_state = 17}, - [3537] = {.lex_state = 72, .external_lex_state = 8}, + [3535] = {.lex_state = 72}, + [3536] = {.lex_state = 72}, + [3537] = {.lex_state = 72}, [3538] = {.lex_state = 72}, - [3539] = {.lex_state = 72, .external_lex_state = 7}, + [3539] = {.lex_state = 17}, [3540] = {.lex_state = 72}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 17}, - [3543] = {.lex_state = 72, .external_lex_state = 9}, + [3542] = {.lex_state = 72}, + [3543] = {.lex_state = 72, .external_lex_state = 8}, [3544] = {.lex_state = 17}, - [3545] = {.lex_state = 72}, - [3546] = {.lex_state = 72}, - [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 72}, - [3549] = {.lex_state = 72, .external_lex_state = 8}, - [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 17}, + [3545] = {.lex_state = 17}, + [3546] = {.lex_state = 21}, + [3547] = {.lex_state = 72, .external_lex_state = 8}, + [3548] = {.lex_state = 17}, + [3549] = {.lex_state = 72}, + [3550] = {.lex_state = 23}, + [3551] = {.lex_state = 72}, [3552] = {.lex_state = 72}, - [3553] = {.lex_state = 17}, - [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 17}, - [3556] = {.lex_state = 21}, + [3553] = {.lex_state = 72}, + [3554] = {.lex_state = 17}, + [3555] = {.lex_state = 73}, + [3556] = {.lex_state = 72, .external_lex_state = 10}, [3557] = {.lex_state = 72}, [3558] = {.lex_state = 72}, [3559] = {.lex_state = 72}, @@ -13950,100 +13984,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3561] = {.lex_state = 17}, [3562] = {.lex_state = 72}, [3563] = {.lex_state = 72}, - [3564] = {.lex_state = 73}, + [3564] = {.lex_state = 72}, [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 23}, + [3566] = {.lex_state = 17}, [3567] = {.lex_state = 72}, - [3568] = {.lex_state = 72, .external_lex_state = 7}, - [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 73}, - [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 72}, + [3568] = {.lex_state = 72, .external_lex_state = 9}, + [3569] = {.lex_state = 17}, + [3570] = {.lex_state = 72}, + [3571] = {.lex_state = 21}, + [3572] = {.lex_state = 17}, [3573] = {.lex_state = 72}, - [3574] = {.lex_state = 21}, - [3575] = {.lex_state = 72, .external_lex_state = 8}, - [3576] = {.lex_state = 72}, + [3574] = {.lex_state = 17}, + [3575] = {.lex_state = 72}, + [3576] = {.lex_state = 17}, [3577] = {.lex_state = 72}, - [3578] = {.lex_state = 72}, + [3578] = {.lex_state = 23}, [3579] = {.lex_state = 72}, [3580] = {.lex_state = 72}, - [3581] = {.lex_state = 72}, - [3582] = {.lex_state = 21}, + [3581] = {.lex_state = 72, .external_lex_state = 9}, + [3582] = {.lex_state = 17}, [3583] = {.lex_state = 17}, [3584] = {.lex_state = 72}, - [3585] = {.lex_state = 72, .external_lex_state = 9}, - [3586] = {.lex_state = 72}, - [3587] = {.lex_state = 72}, + [3585] = {.lex_state = 72}, + [3586] = {.lex_state = 17}, + [3587] = {.lex_state = 72, .external_lex_state = 9}, [3588] = {.lex_state = 72}, [3589] = {.lex_state = 72}, - [3590] = {.lex_state = 72}, - [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 17}, - [3593] = {.lex_state = 17}, + [3590] = {.lex_state = 72, .external_lex_state = 10}, + [3591] = {.lex_state = 72, .external_lex_state = 8}, + [3592] = {.lex_state = 72}, + [3593] = {.lex_state = 72}, [3594] = {.lex_state = 72}, - [3595] = {.lex_state = 17}, - [3596] = {.lex_state = 72}, + [3595] = {.lex_state = 72}, + [3596] = {.lex_state = 73}, [3597] = {.lex_state = 72}, [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 8}, + [3600] = {.lex_state = 72}, [3601] = {.lex_state = 72}, - [3602] = {.lex_state = 17}, - [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 72}, - [3605] = {.lex_state = 72}, - [3606] = {.lex_state = 72}, - [3607] = {.lex_state = 72}, + [3602] = {.lex_state = 8}, + [3603] = {.lex_state = 17}, + [3604] = {.lex_state = 17}, + [3605] = {.lex_state = 8}, + [3606] = {.lex_state = 17}, + [3607] = {.lex_state = 17}, [3608] = {.lex_state = 72}, [3609] = {.lex_state = 72}, [3610] = {.lex_state = 72}, - [3611] = {.lex_state = 72}, + [3611] = {.lex_state = 21}, [3612] = {.lex_state = 72}, - [3613] = {.lex_state = 17}, + [3613] = {.lex_state = 72, .external_lex_state = 8}, [3614] = {.lex_state = 72}, - [3615] = {.lex_state = 72}, + [3615] = {.lex_state = 17}, [3616] = {.lex_state = 72}, [3617] = {.lex_state = 72}, - [3618] = {.lex_state = 72}, + [3618] = {.lex_state = 17}, [3619] = {.lex_state = 72}, - [3620] = {.lex_state = 17}, - [3621] = {.lex_state = 17}, + [3620] = {.lex_state = 72}, + [3621] = {.lex_state = 72}, [3622] = {.lex_state = 72}, - [3623] = {.lex_state = 17}, - [3624] = {.lex_state = 72, .external_lex_state = 9}, + [3623] = {.lex_state = 72, .external_lex_state = 11}, + [3624] = {.lex_state = 72}, [3625] = {.lex_state = 72}, - [3626] = {.lex_state = 17}, - [3627] = {.lex_state = 17}, + [3626] = {.lex_state = 72}, + [3627] = {.lex_state = 21}, [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 72}, + [3629] = {.lex_state = 72, .external_lex_state = 10}, [3630] = {.lex_state = 72}, [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 17}, - [3633] = {.lex_state = 17}, - [3634] = {.lex_state = 72}, + [3632] = {.lex_state = 72}, + [3633] = {.lex_state = 72}, + [3634] = {.lex_state = 17}, [3635] = {.lex_state = 17}, - [3636] = {.lex_state = 21}, - [3637] = {.lex_state = 17}, + [3636] = {.lex_state = 17}, + [3637] = {.lex_state = 72}, [3638] = {.lex_state = 17}, [3639] = {.lex_state = 72}, - [3640] = {.lex_state = 72}, + [3640] = {.lex_state = 21}, [3641] = {.lex_state = 72}, - [3642] = {.lex_state = 17}, - [3643] = {.lex_state = 72}, + [3642] = {.lex_state = 72}, + [3643] = {.lex_state = 21}, [3644] = {.lex_state = 72}, - [3645] = {.lex_state = 72, .external_lex_state = 9}, - [3646] = {.lex_state = 72}, + [3645] = {.lex_state = 72}, + [3646] = {.lex_state = 17}, [3647] = {.lex_state = 72}, - [3648] = {.lex_state = 72}, - [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 21}, + [3648] = {.lex_state = 73}, + [3649] = {.lex_state = 17}, + [3650] = {.lex_state = 72, .external_lex_state = 10}, [3651] = {.lex_state = 72}, - [3652] = {.lex_state = 72, .external_lex_state = 9}, + [3652] = {.lex_state = 17}, [3653] = {.lex_state = 72}, [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 72, .external_lex_state = 9}, + [3655] = {.lex_state = 72}, [3656] = {.lex_state = 72}, - [3657] = {.lex_state = 72}, + [3657] = {.lex_state = 72, .external_lex_state = 10}, [3658] = {.lex_state = 72}, [3659] = {.lex_state = 72}, [3660] = {.lex_state = 72}, @@ -14052,125 +14086,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3663] = {.lex_state = 72}, [3664] = {.lex_state = 72}, [3665] = {.lex_state = 72}, - [3666] = {.lex_state = 17}, + [3666] = {.lex_state = 72}, [3667] = {.lex_state = 72}, - [3668] = {.lex_state = 17}, - [3669] = {.lex_state = 21}, + [3668] = {.lex_state = 72}, + [3669] = {.lex_state = 72}, [3670] = {.lex_state = 72}, [3671] = {.lex_state = 72}, [3672] = {.lex_state = 72}, [3673] = {.lex_state = 72}, - [3674] = {.lex_state = 17}, + [3674] = {.lex_state = 21}, [3675] = {.lex_state = 72}, - [3676] = {.lex_state = 72}, - [3677] = {.lex_state = 21}, - [3678] = {.lex_state = 21}, - [3679] = {.lex_state = 17}, + [3676] = {.lex_state = 72, .external_lex_state = 12}, + [3677] = {.lex_state = 17}, + [3678] = {.lex_state = 72}, + [3679] = {.lex_state = 72}, [3680] = {.lex_state = 17}, - [3681] = {.lex_state = 17}, + [3681] = {.lex_state = 72}, [3682] = {.lex_state = 21}, [3683] = {.lex_state = 21}, - [3684] = {.lex_state = 17}, - [3685] = {.lex_state = 17}, - [3686] = {.lex_state = 17}, + [3684] = {.lex_state = 72}, + [3685] = {.lex_state = 72}, + [3686] = {.lex_state = 72}, [3687] = {.lex_state = 72}, [3688] = {.lex_state = 21}, [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 8}, + [3690] = {.lex_state = 72, .external_lex_state = 10}, [3691] = {.lex_state = 72}, - [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 21}, - [3694] = {.lex_state = 73}, + [3692] = {.lex_state = 17}, + [3693] = {.lex_state = 17}, + [3694] = {.lex_state = 17}, [3695] = {.lex_state = 72}, - [3696] = {.lex_state = 72}, + [3696] = {.lex_state = 21}, [3697] = {.lex_state = 17}, - [3698] = {.lex_state = 21}, - [3699] = {.lex_state = 72}, - [3700] = {.lex_state = 72}, - [3701] = {.lex_state = 72}, - [3702] = {.lex_state = 21}, - [3703] = {.lex_state = 72}, + [3698] = {.lex_state = 17}, + [3699] = {.lex_state = 17}, + [3700] = {.lex_state = 17}, + [3701] = {.lex_state = 17}, + [3702] = {.lex_state = 17}, + [3703] = {.lex_state = 21}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 73}, - [3706] = {.lex_state = 17}, - [3707] = {.lex_state = 72}, + [3705] = {.lex_state = 72}, + [3706] = {.lex_state = 72}, + [3707] = {.lex_state = 21}, [3708] = {.lex_state = 72}, [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 21}, + [3711] = {.lex_state = 72}, [3712] = {.lex_state = 72}, - [3713] = {.lex_state = 72}, + [3713] = {.lex_state = 17}, [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 167}, - [3716] = {.lex_state = 72}, - [3717] = {.lex_state = 72}, + [3715] = {.lex_state = 72}, + [3716] = {.lex_state = 21}, + [3717] = {.lex_state = 17}, [3718] = {.lex_state = 72}, [3719] = {.lex_state = 72}, - [3720] = {.lex_state = 73}, - [3721] = {.lex_state = 17}, + [3720] = {.lex_state = 17}, + [3721] = {.lex_state = 21}, [3722] = {.lex_state = 72}, [3723] = {.lex_state = 72}, - [3724] = {.lex_state = 72}, - [3725] = {.lex_state = 8}, - [3726] = {.lex_state = 21}, - [3727] = {.lex_state = 72}, - [3728] = {.lex_state = 72}, - [3729] = {.lex_state = 21}, + [3724] = {.lex_state = 17}, + [3725] = {.lex_state = 72}, + [3726] = {.lex_state = 72}, + [3727] = {.lex_state = 72, .external_lex_state = 8}, + [3728] = {.lex_state = 17}, + [3729] = {.lex_state = 72}, [3730] = {.lex_state = 72}, [3731] = {.lex_state = 72}, [3732] = {.lex_state = 21}, - [3733] = {.lex_state = 17}, + [3733] = {.lex_state = 72}, [3734] = {.lex_state = 72}, [3735] = {.lex_state = 21}, - [3736] = {.lex_state = 21}, + [3736] = {.lex_state = 72}, [3737] = {.lex_state = 72}, - [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 21}, - [3740] = {.lex_state = 21}, + [3738] = {.lex_state = 21}, + [3739] = {.lex_state = 72}, + [3740] = {.lex_state = 72}, [3741] = {.lex_state = 21}, - [3742] = {.lex_state = 17}, - [3743] = {.lex_state = 17}, + [3742] = {.lex_state = 72}, + [3743] = {.lex_state = 72}, [3744] = {.lex_state = 72}, - [3745] = {.lex_state = 72}, - [3746] = {.lex_state = 17}, - [3747] = {.lex_state = 72}, - [3748] = {.lex_state = 73}, - [3749] = {.lex_state = 72, .external_lex_state = 7}, - [3750] = {.lex_state = 17}, + [3745] = {.lex_state = 21}, + [3746] = {.lex_state = 21}, + [3747] = {.lex_state = 21}, + [3748] = {.lex_state = 72}, + [3749] = {.lex_state = 17}, + [3750] = {.lex_state = 8}, [3751] = {.lex_state = 72}, [3752] = {.lex_state = 72}, - [3753] = {.lex_state = 17}, + [3753] = {.lex_state = 21}, [3754] = {.lex_state = 17}, [3755] = {.lex_state = 72}, - [3756] = {.lex_state = 21}, + [3756] = {.lex_state = 17}, [3757] = {.lex_state = 72}, [3758] = {.lex_state = 72}, - [3759] = {.lex_state = 72}, - [3760] = {.lex_state = 72}, + [3759] = {.lex_state = 17}, + [3760] = {.lex_state = 17}, [3761] = {.lex_state = 72}, - [3762] = {.lex_state = 21}, - [3763] = {.lex_state = 17}, - [3764] = {.lex_state = 17}, + [3762] = {.lex_state = 17}, + [3763] = {.lex_state = 72}, + [3764] = {.lex_state = 72}, [3765] = {.lex_state = 72}, - [3766] = {.lex_state = 17}, - [3767] = {.lex_state = 17}, - [3768] = {.lex_state = 17}, + [3766] = {.lex_state = 73}, + [3767] = {.lex_state = 72}, + [3768] = {.lex_state = 72, .external_lex_state = 9}, [3769] = {.lex_state = 17}, - [3770] = {.lex_state = 72}, - [3771] = {.lex_state = 17}, + [3770] = {.lex_state = 17}, + [3771] = {.lex_state = 72}, [3772] = {.lex_state = 17}, - [3773] = {.lex_state = 72}, - [3774] = {.lex_state = 17}, - [3775] = {.lex_state = 72}, + [3773] = {.lex_state = 17}, + [3774] = {.lex_state = 72}, + [3775] = {.lex_state = 17}, [3776] = {.lex_state = 17}, [3777] = {.lex_state = 72}, - [3778] = {(TSStateId)(-1),}, - [3779] = {(TSStateId)(-1),}, - [3780] = {(TSStateId)(-1),}, - [3781] = {(TSStateId)(-1),}, - [3782] = {(TSStateId)(-1),}, - [3783] = {(TSStateId)(-1),}, + [3778] = {.lex_state = 72}, + [3779] = {.lex_state = 72}, + [3780] = {.lex_state = 17}, + [3781] = {.lex_state = 17}, + [3782] = {.lex_state = 17}, + [3783] = {.lex_state = 72}, [3784] = {(TSStateId)(-1),}, + [3785] = {(TSStateId)(-1),}, + [3786] = {(TSStateId)(-1),}, + [3787] = {(TSStateId)(-1),}, + [3788] = {(TSStateId)(-1),}, + [3789] = {(TSStateId)(-1),}, + [3790] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14326,86 +14366,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inner_block_doc_comment_marker] = ACTIONS(1), [sym__block_comment_content] = ACTIONS(1), [sym__line_doc_content] = ACTIONS(1), + [sym__frontmatter_start] = ACTIONS(1), + [sym_frontmatter_content] = ACTIONS(1), + [sym__frontmatter_end] = ACTIONS(1), [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3483), - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_source_file] = STATE(3527), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_frontmatter] = STATE(3), + [aux_sym_source_file_repeat1] = STATE(37), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14483,85 +14527,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), + [sym__frontmatter_start] = ACTIONS(119), }, [STATE(2)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), + [sym_frontmatter] = STATE(7), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [ts_builtin_sym_end] = ACTIONS(121), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14593,7 +14639,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14637,91 +14683,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), + [sym__frontmatter_start] = ACTIONS(119), }, [STATE(3)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [ts_builtin_sym_end] = ACTIONS(121), [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(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14747,7 +14794,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14793,89 +14840,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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), @@ -14901,7 +14948,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14947,89 +14994,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15055,7 +15102,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15101,89 +15148,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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_RBRACE] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15209,7 +15256,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15255,83 +15302,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(129), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15363,7 +15410,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15409,243 +15456,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(8)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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), + [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_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(123), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [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(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(9)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_macro_rules_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(150), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_u8] = ACTIONS(156), + [anon_sym_i8] = ACTIONS(156), + [anon_sym_u16] = ACTIONS(156), + [anon_sym_i16] = ACTIONS(156), + [anon_sym_u32] = ACTIONS(156), + [anon_sym_i32] = ACTIONS(156), + [anon_sym_u64] = ACTIONS(156), + [anon_sym_i64] = ACTIONS(156), + [anon_sym_u128] = ACTIONS(156), + [anon_sym_i128] = ACTIONS(156), + [anon_sym_isize] = ACTIONS(156), + [anon_sym_usize] = ACTIONS(156), + [anon_sym_f32] = ACTIONS(156), + [anon_sym_f64] = ACTIONS(156), + [anon_sym_bool] = ACTIONS(156), + [anon_sym_str] = ACTIONS(156), + [anon_sym_char] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(177), + [anon_sym_async] = ACTIONS(180), + [anon_sym_break] = ACTIONS(183), + [anon_sym_const] = ACTIONS(186), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_default] = ACTIONS(192), + [anon_sym_enum] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(198), + [anon_sym_for] = ACTIONS(201), + [anon_sym_gen] = ACTIONS(204), + [anon_sym_if] = ACTIONS(207), + [anon_sym_impl] = ACTIONS(210), + [anon_sym_let] = ACTIONS(213), + [anon_sym_loop] = ACTIONS(216), + [anon_sym_match] = ACTIONS(219), + [anon_sym_mod] = ACTIONS(222), + [anon_sym_pub] = ACTIONS(225), + [anon_sym_return] = ACTIONS(228), + [anon_sym_static] = ACTIONS(231), + [anon_sym_struct] = ACTIONS(234), + [anon_sym_trait] = ACTIONS(237), + [anon_sym_type] = ACTIONS(240), + [anon_sym_union] = ACTIONS(243), + [anon_sym_unsafe] = ACTIONS(246), + [anon_sym_use] = ACTIONS(249), + [anon_sym_while] = ACTIONS(252), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_move] = ACTIONS(261), + [anon_sym_try] = ACTIONS(264), + [sym_integer_literal] = ACTIONS(267), + [aux_sym_string_literal_token1] = ACTIONS(270), + [sym_char_literal] = ACTIONS(267), + [anon_sym_true] = ACTIONS(273), + [anon_sym_false] = ACTIONS(273), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(276), + [sym_super] = ACTIONS(279), + [sym_crate] = ACTIONS(282), + [sym_metavariable] = ACTIONS(285), + [sym__raw_string_literal_start] = ACTIONS(288), + [sym_float_literal] = ACTIONS(267), + }, + [STATE(10)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [ts_builtin_sym_end] = ACTIONS(291), [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(289), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15671,7 +15872,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15716,90 +15917,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), }, - [STATE(10)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(10), - [sym_block_comment] = STATE(10), + [STATE(11)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(11), + [sym_block_comment] = STATE(11), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [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(293), + [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(123), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [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(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(12)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(12), + [sym_block_comment] = STATE(12), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [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(295), + [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(123), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [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(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(13)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(291), + [anon_sym_RBRACE] = ACTIONS(297), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15825,7 +16334,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15870,90 +16379,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(11)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(11), - [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(14)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(293), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15979,7 +16488,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16024,90 +16533,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(12)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(12), - [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(15)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(426), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(15), + [sym_block_comment] = STATE(15), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_macro_rules_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_u8] = ACTIONS(156), + [anon_sym_i8] = ACTIONS(156), + [anon_sym_u16] = ACTIONS(156), + [anon_sym_i16] = ACTIONS(156), + [anon_sym_u32] = ACTIONS(156), + [anon_sym_i32] = ACTIONS(156), + [anon_sym_u64] = ACTIONS(156), + [anon_sym_i64] = ACTIONS(156), + [anon_sym_u128] = ACTIONS(156), + [anon_sym_i128] = ACTIONS(156), + [anon_sym_isize] = ACTIONS(156), + [anon_sym_usize] = ACTIONS(156), + [anon_sym_f32] = ACTIONS(156), + [anon_sym_f64] = ACTIONS(156), + [anon_sym_bool] = ACTIONS(156), + [anon_sym_str] = ACTIONS(156), + [anon_sym_char] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(177), + [anon_sym_async] = ACTIONS(180), + [anon_sym_break] = ACTIONS(183), + [anon_sym_const] = ACTIONS(186), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_default] = ACTIONS(192), + [anon_sym_enum] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(198), + [anon_sym_for] = ACTIONS(201), + [anon_sym_gen] = ACTIONS(204), + [anon_sym_if] = ACTIONS(207), + [anon_sym_impl] = ACTIONS(210), + [anon_sym_let] = ACTIONS(213), + [anon_sym_loop] = ACTIONS(216), + [anon_sym_match] = ACTIONS(219), + [anon_sym_mod] = ACTIONS(222), + [anon_sym_pub] = ACTIONS(225), + [anon_sym_return] = ACTIONS(228), + [anon_sym_static] = ACTIONS(231), + [anon_sym_struct] = ACTIONS(234), + [anon_sym_trait] = ACTIONS(237), + [anon_sym_type] = ACTIONS(240), + [anon_sym_union] = ACTIONS(243), + [anon_sym_unsafe] = ACTIONS(246), + [anon_sym_use] = ACTIONS(249), + [anon_sym_while] = ACTIONS(252), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_move] = ACTIONS(261), + [anon_sym_try] = ACTIONS(264), + [sym_integer_literal] = ACTIONS(267), + [aux_sym_string_literal_token1] = ACTIONS(270), + [sym_char_literal] = ACTIONS(267), + [anon_sym_true] = ACTIONS(273), + [anon_sym_false] = ACTIONS(273), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(276), + [sym_super] = ACTIONS(279), + [sym_crate] = ACTIONS(282), + [sym_metavariable] = ACTIONS(285), + [sym__raw_string_literal_start] = ACTIONS(288), + [sym_float_literal] = ACTIONS(267), + }, + [STATE(16)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(16), + [sym_block_comment] = STATE(16), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(295), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16133,7 +16796,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16178,90 +16841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(13)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(17)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(17), + [sym_block_comment] = STATE(17), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(297), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16287,7 +16950,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16332,244 +16995,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(14)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(423), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [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), - }, - [STATE(15)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(15), - [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(18)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(18), + [sym_block_comment] = STATE(18), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(299), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16595,7 +17104,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16640,90 +17149,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(16)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(16), - [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(19)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(19), + [sym_block_comment] = STATE(19), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(301), + [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16749,7 +17258,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16794,90 +17303,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(17)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(17), - [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(20)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(20), + [sym_block_comment] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(303), + [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16903,7 +17412,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16948,90 +17457,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(18)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(18), - [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(21)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(21), + [sym_block_comment] = STATE(21), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(305), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17057,7 +17566,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17102,90 +17611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(19)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(19), - [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(22)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(22), + [sym_block_comment] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(307), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17211,7 +17720,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17256,90 +17765,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(20)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(20), - [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(23)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(23), + [sym_block_comment] = STATE(23), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(309), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17365,7 +17874,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17410,90 +17919,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(21)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(21), - [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(24)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(24), + [sym_block_comment] = STATE(24), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(311), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17519,7 +18028,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17564,90 +18073,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(22)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(22), - [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(25)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(25), + [sym_block_comment] = STATE(25), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(313), + [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17673,7 +18182,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17718,90 +18227,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(23)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(23), - [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(26)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(315), + [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17827,7 +18336,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17872,90 +18381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(24)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(24), - [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(27)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(317), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17981,7 +18490,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18026,90 +18535,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(25)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(25), - [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(28)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(28), + [sym_block_comment] = STATE(28), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(319), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18135,7 +18644,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18180,90 +18689,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(26)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(26), - [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(29)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(321), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18289,7 +18798,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18334,90 +18843,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(27)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(27), - [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(30)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(323), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18443,7 +18952,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18488,90 +18997,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(28)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(28), - [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(31)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(325), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18597,7 +19106,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18642,90 +19151,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(29)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(32)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(32), + [sym_block_comment] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(327), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18751,7 +19260,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18796,90 +19305,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(30)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(33)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(33), + [sym_block_comment] = STATE(33), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(329), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18905,7 +19414,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18950,90 +19459,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(31)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(31), - [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(34)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(34), + [sym_block_comment] = STATE(34), + [aux_sym_source_file_repeat1] = STATE(35), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(331), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19059,7 +19568,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19104,90 +19613,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(32)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(32), - [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(35)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(35), + [sym_block_comment] = STATE(35), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(333), + [anon_sym_RBRACE] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19213,7 +19722,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19258,90 +19767,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(33)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(33), - [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(36)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(36), + [sym_block_comment] = STATE(36), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [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(335), + [anon_sym_RBRACE] = ACTIONS(341), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19367,7 +19876,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19412,90 +19921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(34)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(34), - [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(37)] = { + [sym__statement] = STATE(608), + [sym_empty_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_macro_definition] = STATE(616), + [sym_attribute_item] = STATE(616), + [sym_inner_attribute_item] = STATE(616), + [sym_mod_item] = STATE(616), + [sym_foreign_mod_item] = STATE(616), + [sym_struct_item] = STATE(616), + [sym_union_item] = STATE(616), + [sym_enum_item] = STATE(616), + [sym_extern_crate_declaration] = STATE(616), + [sym_const_item] = STATE(616), + [sym_static_item] = STATE(616), + [sym_type_item] = STATE(616), + [sym_function_item] = STATE(616), + [sym_function_signature_item] = STATE(616), + [sym_function_modifiers] = STATE(3487), + [sym_impl_item] = STATE(616), + [sym_trait_item] = STATE(616), + [sym_associated_type] = STATE(616), + [sym_let_declaration] = STATE(616), + [sym_use_declaration] = STATE(616), + [sym_extern_modifier] = STATE(2225), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3696), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(37), + [sym_block_comment] = STATE(37), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [ts_builtin_sym_end] = ACTIONS(121), [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(337), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19521,7 +20030,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(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19566,215 +20075,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(35)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1568), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(35), - [sym_block_comment] = STATE(35), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = 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(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(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(349), - [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_COMMA] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [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_else] = ACTIONS(347), - [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), - }, - [STATE(36)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(36), - [sym_block_comment] = STATE(36), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = 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(349), - [anon_sym_QMARK] = ACTIONS(375), + [STATE(38)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1573), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(38), + [sym_block_comment] = STATE(38), + [sym_identifier] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_RBRACK] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_COLON] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(345), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19792,61 +20154,61 @@ 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(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(349), - [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), - [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(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_PERCENT_EQ] = ACTIONS(345), + [anon_sym_CARET_EQ] = ACTIONS(345), + [anon_sym_AMP_EQ] = ACTIONS(345), + [anon_sym_PIPE_EQ] = ACTIONS(345), + [anon_sym_LT_LT_EQ] = ACTIONS(345), + [anon_sym_GT_GT_EQ] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_COMMA] = ACTIONS(345), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_else] = ACTIONS(377), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_else] = ACTIONS(351), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -19861,67 +20223,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(37)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(37), - [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), + [STATE(39)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(39), + [sym_block_comment] = STATE(39), + [sym_identifier] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(379), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(353), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19939,61 +20301,61 @@ 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(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_else] = ACTIONS(389), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_else] = ACTIONS(381), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20008,63 +20370,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(38)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(38), - [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(339), + [STATE(40)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(38), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(40), + [sym_block_comment] = STATE(40), + [sym_identifier] = ACTIONS(343), [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_LBRACE] = ACTIONS(347), [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_PLUS] = ACTIONS(393), [anon_sym_STAR] = ACTIONS(393), @@ -20090,7 +20452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(393), [anon_sym_PERCENT] = ACTIONS(393), [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(353), [anon_sym_AMP] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(393), [anon_sym_AMP_AMP] = ACTIONS(391), @@ -20122,25 +20484,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(395), [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_else] = ACTIONS(393), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20155,210 +20517,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(39)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(39), - [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(339), + [STATE(41)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(41), + [sym_block_comment] = STATE(41), + [sym_identifier] = ACTIONS(343), [anon_sym_SEMI] = ACTIONS(397), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(397), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [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_else] = ACTIONS(399), - [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), - }, - [STATE(40)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(40), - [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(399), [anon_sym_STAR] = ACTIONS(399), @@ -20384,7 +20599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(399), [anon_sym_PERCENT] = ACTIONS(399), [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(353), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -20416,172 +20631,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_else] = ACTIONS(399), [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), - }, - [STATE(41)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(41), - [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), - [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(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [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(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [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_else] = ACTIONS(403), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20597,62 +20665,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(343), [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_RBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(403), @@ -20678,7 +20746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(353), [anon_sym_AMP] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), @@ -20710,25 +20778,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_else] = ACTIONS(403), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -20744,228 +20812,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [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(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(413), - [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(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [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), - }, - [STATE(44)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(44), - [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(401), + [sym_identifier] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), - [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_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(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(353), [anon_sym_AMP] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), @@ -20993,121 +20921,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(403), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_else] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), }, - [STATE(45)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(45), - [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(405), + [STATE(44)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(44), + [sym_block_comment] = STATE(44), + [sym_identifier] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(397), [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(399), [anon_sym_STAR] = ACTIONS(399), [anon_sym_QMARK] = ACTIONS(397), - [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_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(399), [anon_sym_SLASH] = ACTIONS(399), [anon_sym_PERCENT] = ACTIONS(399), [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(353), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -21135,169 +21068,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(397), [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(399), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_else] = ACTIONS(399), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), + }, + [STATE(45)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(45), + [sym_block_comment] = STATE(45), + [sym_identifier] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(353), + [anon_sym_QMARK] = ACTIONS(405), + [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(353), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(407), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_else] = ACTIONS(407), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [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), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_EQ_GT] = ACTIONS(345), + [anon_sym_COLON] = ACTIONS(413), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_PERCENT_EQ] = ACTIONS(345), + [anon_sym_CARET_EQ] = ACTIONS(345), + [anon_sym_AMP_EQ] = ACTIONS(345), + [anon_sym_PIPE_EQ] = ACTIONS(345), + [anon_sym_LT_LT_EQ] = ACTIONS(345), + [anon_sym_GT_GT_EQ] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(419), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(351), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(47)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_COLON] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_PERCENT_EQ] = ACTIONS(345), + [anon_sym_CARET_EQ] = ACTIONS(345), + [anon_sym_AMP_EQ] = ACTIONS(345), + [anon_sym_PIPE_EQ] = ACTIONS(345), + [anon_sym_LT_LT_EQ] = ACTIONS(345), + [anon_sym_GT_GT_EQ] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -21305,93 +21530,377 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(47)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), + [STATE(48)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), [sym_string_literal] = STATE(1819), [sym_raw_string_literal] = STATE(1819), [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(405), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(49)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_EQ_GT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(501), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(407), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(50)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(46), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym_identifier] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(411), [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_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), [anon_sym_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_BANG] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(393), [anon_sym_AMP_AMP] = ACTIONS(391), @@ -21419,547 +21928,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(493), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(505), [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(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), - }, - [STATE(48)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [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), - [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_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [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(501), - [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(377), - [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), - }, - [STATE(49)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(387), - [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_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(501), - [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(389), - [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), - }, - [STATE(50)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), - [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(503), - [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(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), }, [STATE(51)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), [sym_string_literal] = STATE(1819), [sym_raw_string_literal] = STATE(1819), [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(411), [anon_sym_EQ_GT] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(399), [anon_sym_STAR] = ACTIONS(399), [anon_sym_QMARK] = ACTIONS(397), - [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_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), [anon_sym_DASH] = ACTIONS(399), [anon_sym_SLASH] = ACTIONS(399), [anon_sym_PERCENT] = ACTIONS(399), [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -21987,121 +22070,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(397), [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(419), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(399), - [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), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), }, [STATE(52)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), [sym_string_literal] = STATE(1819), [sym_raw_string_literal] = STATE(1819), [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(411), [anon_sym_EQ_GT] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), - [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_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), [anon_sym_DASH] = ACTIONS(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), @@ -22129,261 +22212,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(419), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(403), - [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), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), }, [STATE(53)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), - [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(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [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(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [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(477), - [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(475), - [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), - }, - [STATE(54)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(397), [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_EQ_GT] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(399), [anon_sym_STAR] = ACTIONS(399), [anon_sym_QMARK] = ACTIONS(397), - [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_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), [anon_sym_DASH] = ACTIONS(399), [anon_sym_SLASH] = ACTIONS(399), [anon_sym_PERCENT] = ACTIONS(399), [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -22411,27 +22354,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(397), [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(54)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_COLON] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(345), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_CARET] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_LT_LT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(345), + [anon_sym_DASH_EQ] = ACTIONS(345), + [anon_sym_STAR_EQ] = ACTIONS(345), + [anon_sym_SLASH_EQ] = ACTIONS(345), + [anon_sym_PERCENT_EQ] = ACTIONS(345), + [anon_sym_CARET_EQ] = ACTIONS(345), + [anon_sym_AMP_EQ] = ACTIONS(345), + [anon_sym_PIPE_EQ] = ACTIONS(345), + [anon_sym_LT_LT_EQ] = ACTIONS(345), + [anon_sym_GT_GT_EQ] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_EQ_EQ] = ACTIONS(345), + [anon_sym_BANG_EQ] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT_EQ] = ACTIONS(345), + [anon_sym_LT_EQ] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_as] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -22439,140 +22524,282 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(46), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(465), - [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), - [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(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(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(395), - [anon_sym_as] = ACTIONS(393), - [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(477), - [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(475), - [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_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [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(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(56)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1674), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(407), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -22580,140 +22807,140 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(56)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(56), - [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(465), + [STATE(57)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [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), - [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_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(469), - [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(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_LBRACE] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(405), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(405), + [anon_sym_PIPE_PIPE] = ACTIONS(405), + [anon_sym_LT_LT] = ACTIONS(407), + [anon_sym_GT_GT] = ACTIONS(407), + [anon_sym_PLUS_EQ] = ACTIONS(405), + [anon_sym_DASH_EQ] = ACTIONS(405), + [anon_sym_STAR_EQ] = ACTIONS(405), + [anon_sym_SLASH_EQ] = ACTIONS(405), + [anon_sym_PERCENT_EQ] = ACTIONS(405), + [anon_sym_CARET_EQ] = ACTIONS(405), + [anon_sym_AMP_EQ] = ACTIONS(405), + [anon_sym_PIPE_EQ] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(405), + [anon_sym_GT_GT_EQ] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(407), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -22721,92 +22948,92 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(57)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(57), - [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), + [STATE(58)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), - [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_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(473), [anon_sym_AMP] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), @@ -22834,168 +23061,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), - }, - [STATE(58)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23003,92 +23089,92 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(401), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), - [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_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), @@ -23116,27 +23202,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(403), [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23144,92 +23230,92 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(397), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(399), [anon_sym_STAR] = ACTIONS(399), [anon_sym_QMARK] = ACTIONS(397), - [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_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(399), [anon_sym_SLASH] = ACTIONS(399), [anon_sym_PERCENT] = ACTIONS(399), [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -23257,27 +23343,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(397), [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(399), [anon_sym_as] = ACTIONS(399), - [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23285,92 +23371,92 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), - [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_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(403), [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), @@ -23398,27 +23484,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(403), [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23426,92 +23512,92 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(397), [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(397), [anon_sym_PLUS] = ACTIONS(399), [anon_sym_STAR] = ACTIONS(399), [anon_sym_QMARK] = ACTIONS(397), - [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_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(399), [anon_sym_SLASH] = ACTIONS(399), [anon_sym_PERCENT] = ACTIONS(399), [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(507), [anon_sym_AMP] = ACTIONS(399), [anon_sym_PIPE] = ACTIONS(399), [anon_sym_AMP_AMP] = ACTIONS(397), @@ -23539,27 +23625,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(397), [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(399), [anon_sym_as] = ACTIONS(399), - [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23567,140 +23653,140 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(387), - [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_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), - [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(477), - [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(475), - [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), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23708,240 +23794,381 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(387), - [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(503), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(525), - [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(389), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(65)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(50), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(465), - [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), - [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(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(503), - [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), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(65)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(66)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(54), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_identifier] = ACTIONS(469), + [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(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(507), + [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), @@ -23962,27 +24189,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(393), [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -23990,140 +24217,140 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(66)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(66), - [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(465), + [STATE(67)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(67), + [sym_block_comment] = STATE(67), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(375), - [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(503), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(523), - [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(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [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(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -24131,8865 +24358,8562 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(67)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [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(137), - [sym_identifier] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_RPAREN] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_RBRACK] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_isize] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_f32] = ACTIONS(527), - [anon_sym_f64] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_str] = ACTIONS(527), - [anon_sym_char] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS_EQ] = ACTIONS(530), - [anon_sym_DASH_EQ] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(530), - [anon_sym_SLASH_EQ] = ACTIONS(530), - [anon_sym_PERCENT_EQ] = ACTIONS(530), - [anon_sym_CARET_EQ] = ACTIONS(530), - [anon_sym_AMP_EQ] = ACTIONS(530), - [anon_sym_PIPE_EQ] = ACTIONS(530), - [anon_sym_LT_LT_EQ] = ACTIONS(530), - [anon_sym_GT_GT_EQ] = ACTIONS(530), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(530), - [anon_sym__] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT_EQ] = ACTIONS(530), - [anon_sym_COMMA] = ACTIONS(530), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym_DASH_GT] = ACTIONS(530), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_as] = ACTIONS(527), - [anon_sym_async] = ACTIONS(527), - [anon_sym_await] = ACTIONS(527), - [anon_sym_break] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_enum] = ACTIONS(527), - [anon_sym_fn] = ACTIONS(527), - [anon_sym_for] = ACTIONS(527), - [anon_sym_gen] = ACTIONS(527), - [anon_sym_if] = ACTIONS(527), - [anon_sym_impl] = ACTIONS(527), - [anon_sym_let] = ACTIONS(527), - [anon_sym_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_mod] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_static] = ACTIONS(527), - [anon_sym_struct] = ACTIONS(527), - [anon_sym_trait] = ACTIONS(527), - [anon_sym_type] = ACTIONS(527), - [anon_sym_union] = ACTIONS(527), - [anon_sym_unsafe] = ACTIONS(527), - [anon_sym_use] = ACTIONS(527), - [anon_sym_where] = ACTIONS(527), - [anon_sym_while] = ACTIONS(527), - [sym_mutable_specifier] = ACTIONS(527), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(553), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(527), - [sym_super] = ACTIONS(527), - [sym_crate] = ACTIONS(527), - [sym_metavariable] = ACTIONS(559), - [sym__raw_string_literal_start] = ACTIONS(562), - [sym_float_literal] = ACTIONS(550), - }, [STATE(68)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(47), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(75), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym_identifier] = ACTIONS(469), + [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(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(473), + [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(475), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(69)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(76), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(70)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(531), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_EQ_GT] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(534), + [anon_sym_u8] = ACTIONS(531), + [anon_sym_i8] = ACTIONS(531), + [anon_sym_u16] = ACTIONS(531), + [anon_sym_i16] = ACTIONS(531), + [anon_sym_u32] = ACTIONS(531), + [anon_sym_i32] = ACTIONS(531), + [anon_sym_u64] = ACTIONS(531), + [anon_sym_i64] = ACTIONS(531), + [anon_sym_u128] = ACTIONS(531), + [anon_sym_i128] = ACTIONS(531), + [anon_sym_isize] = ACTIONS(531), + [anon_sym_usize] = ACTIONS(531), + [anon_sym_f32] = ACTIONS(531), + [anon_sym_f64] = ACTIONS(531), + [anon_sym_bool] = ACTIONS(531), + [anon_sym_str] = ACTIONS(531), + [anon_sym_char] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_PERCENT] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(534), + [anon_sym_PIPE_PIPE] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(534), + [anon_sym_DASH_EQ] = ACTIONS(534), + [anon_sym_STAR_EQ] = ACTIONS(534), + [anon_sym_SLASH_EQ] = ACTIONS(534), + [anon_sym_PERCENT_EQ] = ACTIONS(534), + [anon_sym_CARET_EQ] = ACTIONS(534), + [anon_sym_AMP_EQ] = ACTIONS(534), + [anon_sym_PIPE_EQ] = ACTIONS(534), + [anon_sym_LT_LT_EQ] = ACTIONS(534), + [anon_sym_GT_GT_EQ] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(534), + [anon_sym__] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COLON_COLON] = ACTIONS(534), + [anon_sym_DASH_GT] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_as] = ACTIONS(531), + [anon_sym_async] = ACTIONS(531), + [anon_sym_await] = ACTIONS(531), + [anon_sym_break] = ACTIONS(531), + [anon_sym_const] = ACTIONS(531), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_default] = ACTIONS(531), + [anon_sym_enum] = ACTIONS(531), + [anon_sym_fn] = ACTIONS(531), + [anon_sym_for] = ACTIONS(531), + [anon_sym_gen] = ACTIONS(531), + [anon_sym_if] = ACTIONS(531), + [anon_sym_impl] = ACTIONS(531), + [anon_sym_let] = ACTIONS(531), + [anon_sym_loop] = ACTIONS(531), + [anon_sym_match] = ACTIONS(531), + [anon_sym_mod] = ACTIONS(531), + [anon_sym_pub] = ACTIONS(531), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(531), + [anon_sym_trait] = ACTIONS(531), + [anon_sym_type] = ACTIONS(531), + [anon_sym_union] = ACTIONS(531), + [anon_sym_unsafe] = ACTIONS(531), + [anon_sym_use] = ACTIONS(531), + [anon_sym_where] = ACTIONS(531), + [anon_sym_while] = ACTIONS(531), + [sym_mutable_specifier] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(557), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(531), + [sym_super] = ACTIONS(531), + [sym_crate] = ACTIONS(531), + [sym_metavariable] = ACTIONS(563), + [sym__raw_string_literal_start] = ACTIONS(566), + [sym_float_literal] = ACTIONS(554), }, [STATE(71)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(72)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(575), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(73)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(74)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(75)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(76)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(77)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(78)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_EQ_GT] = ACTIONS(600), - [anon_sym_COLON] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(597), - [anon_sym_i8] = ACTIONS(597), - [anon_sym_u16] = ACTIONS(597), - [anon_sym_i16] = ACTIONS(597), - [anon_sym_u32] = ACTIONS(597), - [anon_sym_i32] = ACTIONS(597), - [anon_sym_u64] = ACTIONS(597), - [anon_sym_i64] = ACTIONS(597), - [anon_sym_u128] = ACTIONS(597), - [anon_sym_i128] = ACTIONS(597), - [anon_sym_isize] = ACTIONS(597), - [anon_sym_usize] = ACTIONS(597), - [anon_sym_f32] = ACTIONS(597), - [anon_sym_f64] = ACTIONS(597), - [anon_sym_bool] = ACTIONS(597), - [anon_sym_str] = ACTIONS(597), - [anon_sym_char] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_AT] = ACTIONS(600), - [anon_sym__] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_SQUOTE] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_async] = ACTIONS(597), - [anon_sym_await] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_default] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_gen] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_impl] = ACTIONS(597), - [anon_sym_let] = ACTIONS(597), - [anon_sym_loop] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_mod] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_static] = ACTIONS(597), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_trait] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_union] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_use] = ACTIONS(597), - [anon_sym_where] = ACTIONS(597), - [anon_sym_while] = ACTIONS(597), - [sym_mutable_specifier] = ACTIONS(597), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(623), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(597), - [sym_super] = ACTIONS(597), - [sym_crate] = ACTIONS(597), - [sym__raw_string_literal_start] = ACTIONS(629), - [sym_float_literal] = ACTIONS(620), + [aux_sym_token_tree_pattern_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(79)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(80)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(81)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [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(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(82)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(647), - [anon_sym_RBRACK] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_EQ_GT] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_u8] = ACTIONS(636), - [anon_sym_i8] = ACTIONS(636), - [anon_sym_u16] = ACTIONS(636), - [anon_sym_i16] = ACTIONS(636), - [anon_sym_u32] = ACTIONS(636), - [anon_sym_i32] = ACTIONS(636), - [anon_sym_u64] = ACTIONS(636), - [anon_sym_i64] = ACTIONS(636), - [anon_sym_u128] = ACTIONS(636), - [anon_sym_i128] = ACTIONS(636), - [anon_sym_isize] = ACTIONS(636), - [anon_sym_usize] = ACTIONS(636), - [anon_sym_f32] = ACTIONS(636), - [anon_sym_f64] = ACTIONS(636), - [anon_sym_bool] = ACTIONS(636), - [anon_sym_str] = ACTIONS(636), - [anon_sym_char] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [anon_sym_DASH_EQ] = ACTIONS(639), - [anon_sym_STAR_EQ] = ACTIONS(639), - [anon_sym_SLASH_EQ] = ACTIONS(639), - [anon_sym_PERCENT_EQ] = ACTIONS(639), - [anon_sym_CARET_EQ] = ACTIONS(639), - [anon_sym_AMP_EQ] = ACTIONS(639), - [anon_sym_PIPE_EQ] = ACTIONS(639), - [anon_sym_LT_LT_EQ] = ACTIONS(639), - [anon_sym_GT_GT_EQ] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym__] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(639), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(636), - [anon_sym_as] = ACTIONS(636), - [anon_sym_async] = ACTIONS(636), - [anon_sym_await] = ACTIONS(636), - [anon_sym_break] = ACTIONS(636), - [anon_sym_const] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_enum] = ACTIONS(636), - [anon_sym_fn] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_gen] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_impl] = ACTIONS(636), - [anon_sym_let] = ACTIONS(636), - [anon_sym_loop] = ACTIONS(636), - [anon_sym_match] = ACTIONS(636), - [anon_sym_mod] = ACTIONS(636), - [anon_sym_pub] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_static] = ACTIONS(636), - [anon_sym_struct] = ACTIONS(636), - [anon_sym_trait] = ACTIONS(636), - [anon_sym_type] = ACTIONS(636), - [anon_sym_union] = ACTIONS(636), - [anon_sym_unsafe] = ACTIONS(636), - [anon_sym_use] = ACTIONS(636), - [anon_sym_where] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(636), - [sym_integer_literal] = ACTIONS(659), - [aux_sym_string_literal_token1] = ACTIONS(662), - [sym_char_literal] = ACTIONS(659), - [anon_sym_true] = ACTIONS(665), - [anon_sym_false] = ACTIONS(665), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_crate] = ACTIONS(636), - [sym_metavariable] = ACTIONS(668), - [sym__raw_string_literal_start] = ACTIONS(671), - [sym_float_literal] = ACTIONS(659), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(83)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym__token_pattern] = STATE(157), + [sym_token_tree_pattern] = STATE(154), + [sym_token_binding_pattern] = STATE(154), + [sym_token_repetition_pattern] = STATE(154), + [sym__literal] = STATE(154), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_pattern_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(85)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_RBRACK] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_EQ_GT] = ACTIONS(608), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(605), + [anon_sym_i8] = ACTIONS(605), + [anon_sym_u16] = ACTIONS(605), + [anon_sym_i16] = ACTIONS(605), + [anon_sym_u32] = ACTIONS(605), + [anon_sym_i32] = ACTIONS(605), + [anon_sym_u64] = ACTIONS(605), + [anon_sym_i64] = ACTIONS(605), + [anon_sym_u128] = ACTIONS(605), + [anon_sym_i128] = ACTIONS(605), + [anon_sym_isize] = ACTIONS(605), + [anon_sym_usize] = ACTIONS(605), + [anon_sym_f32] = ACTIONS(605), + [anon_sym_f64] = ACTIONS(605), + [anon_sym_bool] = ACTIONS(605), + [anon_sym_str] = ACTIONS(605), + [anon_sym_char] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym__] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_DASH_GT] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_async] = ACTIONS(605), + [anon_sym_await] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_default] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_gen] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_impl] = ACTIONS(605), + [anon_sym_let] = ACTIONS(605), + [anon_sym_loop] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_mod] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_static] = ACTIONS(605), + [anon_sym_struct] = ACTIONS(605), + [anon_sym_trait] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_union] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_use] = ACTIONS(605), + [anon_sym_where] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [sym_mutable_specifier] = ACTIONS(605), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(631), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(605), + [sym_super] = ACTIONS(605), + [sym_crate] = ACTIONS(605), + [sym_metavariable] = ACTIONS(637), + [sym__raw_string_literal_start] = ACTIONS(640), + [sym_float_literal] = ACTIONS(628), }, [STATE(86)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(657), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_EQ_GT] = ACTIONS(646), + [anon_sym_COLON] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_QMARK] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(643), + [anon_sym_i8] = ACTIONS(643), + [anon_sym_u16] = ACTIONS(643), + [anon_sym_i16] = ACTIONS(643), + [anon_sym_u32] = ACTIONS(643), + [anon_sym_i32] = ACTIONS(643), + [anon_sym_u64] = ACTIONS(643), + [anon_sym_i64] = ACTIONS(643), + [anon_sym_u128] = ACTIONS(643), + [anon_sym_i128] = ACTIONS(643), + [anon_sym_isize] = ACTIONS(643), + [anon_sym_usize] = ACTIONS(643), + [anon_sym_f32] = ACTIONS(643), + [anon_sym_f64] = ACTIONS(643), + [anon_sym_bool] = ACTIONS(643), + [anon_sym_str] = ACTIONS(643), + [anon_sym_char] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(660), + [anon_sym_PERCENT] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_PLUS_EQ] = ACTIONS(646), + [anon_sym_DASH_EQ] = ACTIONS(646), + [anon_sym_STAR_EQ] = ACTIONS(646), + [anon_sym_SLASH_EQ] = ACTIONS(646), + [anon_sym_PERCENT_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(660), + [anon_sym_EQ_EQ] = ACTIONS(646), + [anon_sym_BANG_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym__] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(646), + [anon_sym_DASH_GT] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_as] = ACTIONS(643), + [anon_sym_async] = ACTIONS(643), + [anon_sym_await] = ACTIONS(643), + [anon_sym_break] = ACTIONS(643), + [anon_sym_const] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_default] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_fn] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_gen] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_impl] = ACTIONS(643), + [anon_sym_let] = ACTIONS(643), + [anon_sym_loop] = ACTIONS(643), + [anon_sym_match] = ACTIONS(643), + [anon_sym_mod] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(643), + [anon_sym_return] = ACTIONS(643), + [anon_sym_static] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_trait] = ACTIONS(643), + [anon_sym_type] = ACTIONS(643), + [anon_sym_union] = ACTIONS(643), + [anon_sym_unsafe] = ACTIONS(643), + [anon_sym_use] = ACTIONS(643), + [anon_sym_where] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [sym_mutable_specifier] = ACTIONS(643), + [sym_integer_literal] = ACTIONS(666), + [aux_sym_string_literal_token1] = ACTIONS(669), + [sym_char_literal] = ACTIONS(666), + [anon_sym_true] = ACTIONS(672), + [anon_sym_false] = ACTIONS(672), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(643), + [sym_super] = ACTIONS(643), + [sym_crate] = ACTIONS(643), + [sym__raw_string_literal_start] = ACTIONS(675), + [sym_float_literal] = ACTIONS(666), }, [STATE(87)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [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_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(88)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(89)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [STATE(90)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(191), + [aux_sym_delim_token_tree_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), + }, + [STATE(90)] = { + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(92)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(93)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(94)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(95)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(98)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(99)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(100)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(101)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(102)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(103)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(104)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(105)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym_token_tree_repeat1] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(106)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(107)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(108)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [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_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(109)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [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_token_tree_repeat1] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(110)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [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_token_tree_repeat1] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(112)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), + [aux_sym__non_special_token_repeat1] = STATE(191), [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(113)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(191), [aux_sym_delim_token_tree_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), + [aux_sym__non_special_token_repeat1] = STATE(191), [aux_sym_delim_token_tree_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(115)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(117)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(118)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(119)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(134), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(120)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(121)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [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_token_tree_repeat1] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(122)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(127)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(128)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(129)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [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_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(131)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [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(184), - [aux_sym_delim_token_tree_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), [sym__literal] = STATE(209), [sym_string_literal] = STATE(202), [sym_raw_string_literal] = STATE(202), [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(744), - [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_COMMA] = ACTIONS(746), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [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), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(135)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_token_tree] = STATE(189), + [sym_token_repetition] = STATE(189), + [sym__literal] = STATE(189), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_async] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(803), - [anon_sym_for] = ACTIONS(806), - [anon_sym_gen] = ACTIONS(809), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_match] = ACTIONS(818), - [anon_sym_return] = ACTIONS(821), - [anon_sym_static] = ACTIONS(824), - [anon_sym_union] = ACTIONS(803), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_move] = ACTIONS(836), - [anon_sym_try] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(845), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(851), - [sym_super] = ACTIONS(854), - [sym_crate] = ACTIONS(854), - [sym_metavariable] = ACTIONS(857), - [sym__raw_string_literal_start] = ACTIONS(860), - [sym_float_literal] = ACTIONS(842), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(136)] = { + [sym_delim_token_tree] = STATE(211), + [sym__delim_tokens] = STATE(213), + [sym__non_delim_token] = STATE(211), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [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(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [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(865), - [aux_sym_string_literal_token1] = ACTIONS(865), - [sym_char_literal] = ACTIONS(865), - [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(865), - [sym__raw_string_literal_start] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), + [aux_sym__non_special_token_repeat1] = STATE(191), + [aux_sym_delim_token_tree_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(137)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), - }, - [STATE(138)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_async] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(803), - [anon_sym_for] = ACTIONS(806), - [anon_sym_gen] = ACTIONS(809), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_match] = ACTIONS(818), - [anon_sym_return] = ACTIONS(821), - [anon_sym_static] = ACTIONS(824), - [anon_sym_union] = ACTIONS(803), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_move] = ACTIONS(836), - [anon_sym_try] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(845), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(851), - [sym_super] = ACTIONS(854), - [sym_crate] = ACTIONS(854), - [sym_metavariable] = ACTIONS(857), - [sym__raw_string_literal_start] = ACTIONS(860), - [sym_float_literal] = ACTIONS(842), - }, - [STATE(139)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(871), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33014,28 +32938,28 @@ 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(873), + [anon_sym_COMMA] = ACTIONS(750), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33050,63 +32974,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(140)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(339), + [STATE(138)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(217), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(754), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33131,28 +33055,28 @@ 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(756), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33167,63 +33091,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(139)] = { + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_gen] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), + }, + [STATE(140)] = { + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_EQ_GT] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u128] = ACTIONS(762), + [anon_sym_i128] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_str] = ACTIONS(762), + [anon_sym_char] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_AMP] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_AMP_AMP] = ACTIONS(764), + [anon_sym_PIPE_PIPE] = ACTIONS(764), + [anon_sym_LT_LT] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(769), + [anon_sym_PLUS_EQ] = ACTIONS(764), + [anon_sym_DASH_EQ] = ACTIONS(764), + [anon_sym_STAR_EQ] = ACTIONS(764), + [anon_sym_SLASH_EQ] = ACTIONS(764), + [anon_sym_PERCENT_EQ] = ACTIONS(764), + [anon_sym_CARET_EQ] = ACTIONS(764), + [anon_sym_AMP_EQ] = ACTIONS(764), + [anon_sym_PIPE_EQ] = ACTIONS(764), + [anon_sym_LT_LT_EQ] = ACTIONS(764), + [anon_sym_GT_GT_EQ] = ACTIONS(764), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(764), + [anon_sym_BANG_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym__] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_COLON_COLON] = ACTIONS(764), + [anon_sym_DASH_GT] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_as] = ACTIONS(762), + [anon_sym_async] = ACTIONS(762), + [anon_sym_await] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_default] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_fn] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_gen] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_impl] = ACTIONS(762), + [anon_sym_let] = ACTIONS(762), + [anon_sym_loop] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_mod] = ACTIONS(762), + [anon_sym_pub] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_trait] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [anon_sym_unsafe] = ACTIONS(762), + [anon_sym_use] = ACTIONS(762), + [anon_sym_where] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [sym_mutable_specifier] = ACTIONS(762), + [sym_integer_literal] = ACTIONS(767), + [aux_sym_string_literal_token1] = ACTIONS(767), + [sym_char_literal] = ACTIONS(767), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(762), + [sym_super] = ACTIONS(762), + [sym_crate] = ACTIONS(762), + [sym_metavariable] = ACTIONS(767), + [sym__raw_string_literal_start] = ACTIONS(767), + [sym_float_literal] = ACTIONS(767), + }, [STATE(141)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(879), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33248,28 +33406,28 @@ 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(881), + [anon_sym_COMMA] = ACTIONS(774), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33285,62 +33443,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(142)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_u8] = ACTIONS(793), + [anon_sym_i8] = ACTIONS(793), + [anon_sym_u16] = ACTIONS(793), + [anon_sym_i16] = ACTIONS(793), + [anon_sym_u32] = ACTIONS(793), + [anon_sym_i32] = ACTIONS(793), + [anon_sym_u64] = ACTIONS(793), + [anon_sym_i64] = ACTIONS(793), + [anon_sym_u128] = ACTIONS(793), + [anon_sym_i128] = ACTIONS(793), + [anon_sym_isize] = ACTIONS(793), + [anon_sym_usize] = ACTIONS(793), + [anon_sym_f32] = ACTIONS(793), + [anon_sym_f64] = ACTIONS(793), + [anon_sym_bool] = ACTIONS(793), + [anon_sym_str] = ACTIONS(793), + [anon_sym_char] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_DOT_DOT] = ACTIONS(805), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_POUND] = ACTIONS(811), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_async] = ACTIONS(817), + [anon_sym_break] = ACTIONS(820), + [anon_sym_const] = ACTIONS(823), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_default] = ACTIONS(829), + [anon_sym_for] = ACTIONS(832), + [anon_sym_gen] = ACTIONS(835), + [anon_sym_if] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(841), + [anon_sym_match] = ACTIONS(844), + [anon_sym_return] = ACTIONS(847), + [anon_sym_static] = ACTIONS(850), + [anon_sym_union] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_while] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_move] = ACTIONS(862), + [anon_sym_try] = ACTIONS(865), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(871), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(877), + [sym_super] = ACTIONS(880), + [sym_crate] = ACTIONS(880), + [sym_metavariable] = ACTIONS(883), + [sym__raw_string_literal_start] = ACTIONS(886), + [sym_float_literal] = ACTIONS(868), + }, + [STATE(143)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33365,28 +33640,28 @@ 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(891), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33401,180 +33676,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(143)] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym__non_special_token_repeat1] = STATE(143), - [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), - }, [STATE(144)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1623), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33599,28 +33757,28 @@ 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(899), + [anon_sym_COMMA] = ACTIONS(895), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33636,62 +33794,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(145)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(571), + [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(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [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(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [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_metavariable] = ACTIONS(899), + [sym__raw_string_literal_start] = ACTIONS(899), + [sym_float_literal] = ACTIONS(899), + }, + [STATE(146)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [aux_sym_enum_variant_list_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33716,27 +33991,28 @@ 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(903), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -33751,920 +34027,689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(146)] = { - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [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), - }, [STATE(147)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_u8] = ACTIONS(793), + [anon_sym_i8] = ACTIONS(793), + [anon_sym_u16] = ACTIONS(793), + [anon_sym_i16] = ACTIONS(793), + [anon_sym_u32] = ACTIONS(793), + [anon_sym_i32] = ACTIONS(793), + [anon_sym_u64] = ACTIONS(793), + [anon_sym_i64] = ACTIONS(793), + [anon_sym_u128] = ACTIONS(793), + [anon_sym_i128] = ACTIONS(793), + [anon_sym_isize] = ACTIONS(793), + [anon_sym_usize] = ACTIONS(793), + [anon_sym_f32] = ACTIONS(793), + [anon_sym_f64] = ACTIONS(793), + [anon_sym_bool] = ACTIONS(793), + [anon_sym_str] = ACTIONS(793), + [anon_sym_char] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_DOT_DOT] = ACTIONS(805), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(808), + [anon_sym_POUND] = ACTIONS(811), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_async] = ACTIONS(817), + [anon_sym_break] = ACTIONS(820), + [anon_sym_const] = ACTIONS(823), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_default] = ACTIONS(829), + [anon_sym_for] = ACTIONS(832), + [anon_sym_gen] = ACTIONS(835), + [anon_sym_if] = ACTIONS(838), + [anon_sym_loop] = ACTIONS(841), + [anon_sym_match] = ACTIONS(844), + [anon_sym_return] = ACTIONS(847), + [anon_sym_static] = ACTIONS(850), + [anon_sym_union] = ACTIONS(829), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_while] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_move] = ACTIONS(862), + [anon_sym_try] = ACTIONS(865), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(871), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(877), + [sym_super] = ACTIONS(880), + [sym_crate] = ACTIONS(880), + [sym_metavariable] = ACTIONS(883), + [sym__raw_string_literal_start] = ACTIONS(886), + [sym_float_literal] = ACTIONS(868), }, [STATE(148)] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_EQ_GT] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(863), - [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(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_PERCENT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_LT_LT] = ACTIONS(863), - [anon_sym_GT_GT] = ACTIONS(863), - [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(863), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(865), - [anon_sym__] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [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(865), - [aux_sym_string_literal_token1] = ACTIONS(865), - [sym_char_literal] = ACTIONS(865), - [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(865), - [sym__raw_string_literal_start] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), + [sym_identifier] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_EQ_GT] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(905), + [anon_sym_i8] = ACTIONS(905), + [anon_sym_u16] = ACTIONS(905), + [anon_sym_i16] = ACTIONS(905), + [anon_sym_u32] = ACTIONS(905), + [anon_sym_i32] = ACTIONS(905), + [anon_sym_u64] = ACTIONS(905), + [anon_sym_i64] = ACTIONS(905), + [anon_sym_u128] = ACTIONS(905), + [anon_sym_i128] = ACTIONS(905), + [anon_sym_isize] = ACTIONS(905), + [anon_sym_usize] = ACTIONS(905), + [anon_sym_f32] = ACTIONS(905), + [anon_sym_f64] = ACTIONS(905), + [anon_sym_bool] = ACTIONS(905), + [anon_sym_str] = ACTIONS(905), + [anon_sym_char] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_STAR_EQ] = ACTIONS(907), + [anon_sym_SLASH_EQ] = ACTIONS(907), + [anon_sym_PERCENT_EQ] = ACTIONS(907), + [anon_sym_CARET_EQ] = ACTIONS(907), + [anon_sym_AMP_EQ] = ACTIONS(907), + [anon_sym_PIPE_EQ] = ACTIONS(907), + [anon_sym_LT_LT_EQ] = ACTIONS(907), + [anon_sym_GT_GT_EQ] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym__] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(907), + [anon_sym_DASH_GT] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(905), + [anon_sym_as] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_await] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_fn] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_gen] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_impl] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_loop] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_pub] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_static] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_trait] = ACTIONS(905), + [anon_sym_type] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_unsafe] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_where] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [sym_mutable_specifier] = ACTIONS(905), + [sym_integer_literal] = ACTIONS(907), + [aux_sym_string_literal_token1] = ACTIONS(907), + [sym_char_literal] = ACTIONS(907), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_crate] = ACTIONS(905), + [sym_metavariable] = ACTIONS(907), + [sym__raw_string_literal_start] = ACTIONS(907), + [sym_float_literal] = ACTIONS(907), }, [STATE(149)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2739), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_PERCENT_EQ] = ACTIONS(913), - [anon_sym_CARET_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym__] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym_DASH_GT] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_as] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_await] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_fn] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_gen] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_impl] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_pub] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_trait] = ACTIONS(911), - [anon_sym_type] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [anon_sym_unsafe] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym_mutable_specifier] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(913), - [aux_sym_string_literal_token1] = ACTIONS(913), - [sym_char_literal] = ACTIONS(913), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_crate] = ACTIONS(911), - [sym_metavariable] = ACTIONS(913), - [sym__raw_string_literal_start] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(150)] = { [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_RPAREN] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(919), + [anon_sym_RBRACK] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_COLON] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_u8] = ACTIONS(917), + [anon_sym_i8] = ACTIONS(917), + [anon_sym_u16] = ACTIONS(917), + [anon_sym_i16] = ACTIONS(917), + [anon_sym_u32] = ACTIONS(917), + [anon_sym_i32] = ACTIONS(917), + [anon_sym_u64] = ACTIONS(917), + [anon_sym_i64] = ACTIONS(917), + [anon_sym_u128] = ACTIONS(917), + [anon_sym_i128] = ACTIONS(917), + [anon_sym_isize] = ACTIONS(917), + [anon_sym_usize] = ACTIONS(917), + [anon_sym_f32] = ACTIONS(917), + [anon_sym_f64] = ACTIONS(917), + [anon_sym_bool] = ACTIONS(917), + [anon_sym_str] = ACTIONS(917), + [anon_sym_char] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_PERCENT] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_AMP] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(917), + [anon_sym_GT_GT] = ACTIONS(917), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_AMP_EQ] = ACTIONS(919), + [anon_sym_PIPE_EQ] = ACTIONS(919), + [anon_sym_LT_LT_EQ] = ACTIONS(919), + [anon_sym_GT_GT_EQ] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [anon_sym__] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_COLON_COLON] = ACTIONS(919), + [anon_sym_DASH_GT] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_async] = ACTIONS(917), + [anon_sym_await] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(917), + [anon_sym_fn] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_gen] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_impl] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_pub] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_static] = ACTIONS(917), + [anon_sym_struct] = ACTIONS(917), + [anon_sym_trait] = ACTIONS(917), + [anon_sym_type] = ACTIONS(917), + [anon_sym_union] = ACTIONS(917), + [anon_sym_unsafe] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [sym_mutable_specifier] = ACTIONS(917), + [sym_integer_literal] = ACTIONS(919), + [aux_sym_string_literal_token1] = ACTIONS(919), + [sym_char_literal] = ACTIONS(919), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(917), + [sym_super] = ACTIONS(917), + [sym_crate] = ACTIONS(917), + [sym_metavariable] = ACTIONS(919), + [sym__raw_string_literal_start] = ACTIONS(919), + [sym_float_literal] = ACTIONS(919), }, [STATE(151)] = { [sym_line_comment] = STATE(151), [sym_block_comment] = STATE(151), - [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_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), + [sym_identifier] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(921), + [anon_sym_i8] = ACTIONS(921), + [anon_sym_u16] = ACTIONS(921), + [anon_sym_i16] = ACTIONS(921), + [anon_sym_u32] = ACTIONS(921), + [anon_sym_i32] = ACTIONS(921), + [anon_sym_u64] = ACTIONS(921), + [anon_sym_i64] = ACTIONS(921), + [anon_sym_u128] = ACTIONS(921), + [anon_sym_i128] = ACTIONS(921), + [anon_sym_isize] = ACTIONS(921), + [anon_sym_usize] = ACTIONS(921), + [anon_sym_f32] = ACTIONS(921), + [anon_sym_f64] = ACTIONS(921), + [anon_sym_bool] = ACTIONS(921), + [anon_sym_str] = ACTIONS(921), + [anon_sym_char] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_PERCENT_EQ] = ACTIONS(923), + [anon_sym_CARET_EQ] = ACTIONS(923), + [anon_sym_AMP_EQ] = ACTIONS(923), + [anon_sym_PIPE_EQ] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(923), + [anon_sym_GT_GT_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym__] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_COLON_COLON] = ACTIONS(923), + [anon_sym_DASH_GT] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_as] = ACTIONS(921), + [anon_sym_async] = ACTIONS(921), + [anon_sym_await] = ACTIONS(921), + [anon_sym_break] = ACTIONS(921), + [anon_sym_const] = ACTIONS(921), + [anon_sym_continue] = ACTIONS(921), + [anon_sym_default] = ACTIONS(921), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_fn] = ACTIONS(921), + [anon_sym_for] = ACTIONS(921), + [anon_sym_gen] = ACTIONS(921), + [anon_sym_if] = ACTIONS(921), + [anon_sym_impl] = ACTIONS(921), + [anon_sym_let] = ACTIONS(921), + [anon_sym_loop] = ACTIONS(921), + [anon_sym_match] = ACTIONS(921), + [anon_sym_mod] = ACTIONS(921), + [anon_sym_pub] = ACTIONS(921), + [anon_sym_return] = ACTIONS(921), + [anon_sym_static] = ACTIONS(921), + [anon_sym_struct] = ACTIONS(921), + [anon_sym_trait] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_union] = ACTIONS(921), + [anon_sym_unsafe] = ACTIONS(921), + [anon_sym_use] = ACTIONS(921), + [anon_sym_where] = ACTIONS(921), + [anon_sym_while] = ACTIONS(921), + [sym_mutable_specifier] = ACTIONS(921), + [sym_integer_literal] = ACTIONS(923), + [aux_sym_string_literal_token1] = ACTIONS(923), + [sym_char_literal] = ACTIONS(923), + [anon_sym_true] = ACTIONS(921), + [anon_sym_false] = ACTIONS(921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(921), + [sym_super] = ACTIONS(921), + [sym_crate] = ACTIONS(921), + [sym_metavariable] = ACTIONS(923), + [sym__raw_string_literal_start] = ACTIONS(923), + [sym_float_literal] = ACTIONS(923), }, [STATE(152)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [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(919), - [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_metavariable] = ACTIONS(921), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - }, - [STATE(153)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2792), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(465), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(925), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [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(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -34672,418 +34717,418 @@ 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), }, + [STATE(153)] = { + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym_identifier] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_COLON] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(927), + [anon_sym_i8] = ACTIONS(927), + [anon_sym_u16] = ACTIONS(927), + [anon_sym_i16] = ACTIONS(927), + [anon_sym_u32] = ACTIONS(927), + [anon_sym_i32] = ACTIONS(927), + [anon_sym_u64] = ACTIONS(927), + [anon_sym_i64] = ACTIONS(927), + [anon_sym_u128] = ACTIONS(927), + [anon_sym_i128] = ACTIONS(927), + [anon_sym_isize] = ACTIONS(927), + [anon_sym_usize] = ACTIONS(927), + [anon_sym_f32] = ACTIONS(927), + [anon_sym_f64] = ACTIONS(927), + [anon_sym_bool] = ACTIONS(927), + [anon_sym_str] = ACTIONS(927), + [anon_sym_char] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_PERCENT_EQ] = ACTIONS(929), + [anon_sym_CARET_EQ] = ACTIONS(929), + [anon_sym_AMP_EQ] = ACTIONS(929), + [anon_sym_PIPE_EQ] = ACTIONS(929), + [anon_sym_LT_LT_EQ] = ACTIONS(929), + [anon_sym_GT_GT_EQ] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym__] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(929), + [anon_sym_DASH_GT] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(927), + [anon_sym_as] = ACTIONS(927), + [anon_sym_async] = ACTIONS(927), + [anon_sym_await] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_default] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_fn] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_gen] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_impl] = ACTIONS(927), + [anon_sym_let] = ACTIONS(927), + [anon_sym_loop] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mod] = ACTIONS(927), + [anon_sym_pub] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_static] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_trait] = ACTIONS(927), + [anon_sym_type] = ACTIONS(927), + [anon_sym_union] = ACTIONS(927), + [anon_sym_unsafe] = ACTIONS(927), + [anon_sym_use] = ACTIONS(927), + [anon_sym_where] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [sym_mutable_specifier] = ACTIONS(927), + [sym_integer_literal] = ACTIONS(929), + [aux_sym_string_literal_token1] = ACTIONS(929), + [sym_char_literal] = ACTIONS(929), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(927), + [sym_super] = ACTIONS(927), + [sym_crate] = ACTIONS(927), + [sym_metavariable] = ACTIONS(929), + [sym__raw_string_literal_start] = ACTIONS(929), + [sym_float_literal] = ACTIONS(929), + }, [STATE(154)] = { [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_PERCENT_EQ] = ACTIONS(760), + [anon_sym_CARET_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym__] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_gen] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), }, [STATE(155)] = { [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(935), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_u8] = ACTIONS(933), - [anon_sym_i8] = ACTIONS(933), - [anon_sym_u16] = ACTIONS(933), - [anon_sym_i16] = ACTIONS(933), - [anon_sym_u32] = ACTIONS(933), - [anon_sym_i32] = ACTIONS(933), - [anon_sym_u64] = ACTIONS(933), - [anon_sym_i64] = ACTIONS(933), - [anon_sym_u128] = ACTIONS(933), - [anon_sym_i128] = ACTIONS(933), - [anon_sym_isize] = ACTIONS(933), - [anon_sym_usize] = ACTIONS(933), - [anon_sym_f32] = ACTIONS(933), - [anon_sym_f64] = ACTIONS(933), - [anon_sym_bool] = ACTIONS(933), - [anon_sym_str] = ACTIONS(933), - [anon_sym_char] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(935), - [anon_sym__] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_COLON_COLON] = ACTIONS(935), - [anon_sym_DASH_GT] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(933), - [anon_sym_as] = ACTIONS(933), - [anon_sym_async] = ACTIONS(933), - [anon_sym_await] = ACTIONS(933), - [anon_sym_break] = ACTIONS(933), - [anon_sym_const] = ACTIONS(933), - [anon_sym_continue] = ACTIONS(933), - [anon_sym_default] = ACTIONS(933), - [anon_sym_enum] = ACTIONS(933), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_for] = ACTIONS(933), - [anon_sym_gen] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(933), - [anon_sym_let] = ACTIONS(933), - [anon_sym_loop] = ACTIONS(933), - [anon_sym_match] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_pub] = ACTIONS(933), - [anon_sym_return] = ACTIONS(933), - [anon_sym_static] = ACTIONS(933), - [anon_sym_struct] = ACTIONS(933), - [anon_sym_trait] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(933), - [anon_sym_use] = ACTIONS(933), - [anon_sym_where] = ACTIONS(933), - [anon_sym_while] = ACTIONS(933), - [sym_mutable_specifier] = ACTIONS(933), - [sym_integer_literal] = ACTIONS(935), - [aux_sym_string_literal_token1] = ACTIONS(935), - [sym_char_literal] = ACTIONS(935), - [anon_sym_true] = ACTIONS(933), - [anon_sym_false] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(933), - [sym_super] = ACTIONS(933), - [sym_crate] = ACTIONS(933), - [sym_metavariable] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(935), - [sym_float_literal] = ACTIONS(935), + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_PERCENT_EQ] = ACTIONS(760), + [anon_sym_CARET_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym__] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_gen] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), }, [STATE(156)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(937), - [anon_sym_i8] = ACTIONS(937), - [anon_sym_u16] = ACTIONS(937), - [anon_sym_i16] = ACTIONS(937), - [anon_sym_u32] = ACTIONS(937), - [anon_sym_i32] = ACTIONS(937), - [anon_sym_u64] = ACTIONS(937), - [anon_sym_i64] = ACTIONS(937), - [anon_sym_u128] = ACTIONS(937), - [anon_sym_i128] = ACTIONS(937), - [anon_sym_isize] = ACTIONS(937), - [anon_sym_usize] = ACTIONS(937), - [anon_sym_f32] = ACTIONS(937), - [anon_sym_f64] = ACTIONS(937), - [anon_sym_bool] = ACTIONS(937), - [anon_sym_str] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym__] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_await] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_fn] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_gen] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_impl] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_loop] = ACTIONS(937), - [anon_sym_match] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(937), - [anon_sym_pub] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_trait] = ACTIONS(937), - [anon_sym_type] = ACTIONS(937), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsafe] = ACTIONS(937), - [anon_sym_use] = ACTIONS(937), - [anon_sym_where] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [sym_mutable_specifier] = ACTIONS(937), - [sym_integer_literal] = ACTIONS(939), - [aux_sym_string_literal_token1] = ACTIONS(939), - [sym_char_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_crate] = ACTIONS(937), - [sym_metavariable] = ACTIONS(939), - [sym__raw_string_literal_start] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), - }, - [STATE(157)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35109,26 +35154,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35143,63 +35188,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), }, + [STATE(157)] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u128] = ACTIONS(935), + [anon_sym_i128] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_str] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym__] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_async] = ACTIONS(935), + [anon_sym_await] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_fn] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_gen] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_pub] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_trait] = ACTIONS(935), + [anon_sym_type] = ACTIONS(935), + [anon_sym_union] = ACTIONS(935), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [sym_mutable_specifier] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(937), + [aux_sym_string_literal_token1] = ACTIONS(937), + [sym_char_literal] = ACTIONS(937), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_crate] = ACTIONS(935), + [sym_metavariable] = ACTIONS(937), + [sym__raw_string_literal_start] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), + }, [STATE(158)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(943), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35225,26 +35386,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35260,178 +35421,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(159)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [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), - }, - [STATE(160)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35457,26 +35502,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35491,63 +35536,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), }, + [STATE(160)] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [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), + }, [STATE(161)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(947), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35573,26 +35734,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35608,62 +35769,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(162)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(953), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35689,26 +35850,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35724,8 +35885,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(163)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(347), + [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(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), + }, + [STATE(164)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [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(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), + }, + [STATE(165)] = { + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), [sym_identifier] = ACTIONS(955), [anon_sym_SEMI] = ACTIONS(957), [anon_sym_LPAREN] = ACTIONS(957), @@ -35839,63 +36232,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(957), [sym_float_literal] = ACTIONS(957), }, - [STATE(164)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(166)] = { + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(959), + [anon_sym_i8] = ACTIONS(959), + [anon_sym_u16] = ACTIONS(959), + [anon_sym_i16] = ACTIONS(959), + [anon_sym_u32] = ACTIONS(959), + [anon_sym_i32] = ACTIONS(959), + [anon_sym_u64] = ACTIONS(959), + [anon_sym_i64] = ACTIONS(959), + [anon_sym_u128] = ACTIONS(959), + [anon_sym_i128] = ACTIONS(959), + [anon_sym_isize] = ACTIONS(959), + [anon_sym_usize] = ACTIONS(959), + [anon_sym_f32] = ACTIONS(959), + [anon_sym_f64] = ACTIONS(959), + [anon_sym_bool] = ACTIONS(959), + [anon_sym_str] = ACTIONS(959), + [anon_sym_char] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(961), + [anon_sym__] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_async] = ACTIONS(959), + [anon_sym_await] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_fn] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_gen] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_impl] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_pub] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_static] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_union] = ACTIONS(959), + [anon_sym_unsafe] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [sym_mutable_specifier] = ACTIONS(959), + [sym_integer_literal] = ACTIONS(961), + [aux_sym_string_literal_token1] = ACTIONS(961), + [sym_char_literal] = ACTIONS(961), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(959), + [sym_super] = ACTIONS(959), + [sym_crate] = ACTIONS(959), + [sym_metavariable] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(961), + [sym_float_literal] = ACTIONS(961), + }, + [STATE(167)] = { + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym_identifier] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_PERCENT] = ACTIONS(963), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(965), + [anon_sym_DASH_EQ] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(965), + [anon_sym_CARET_EQ] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(965), + [anon_sym_LT_LT_EQ] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym__] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_COLON_COLON] = ACTIONS(965), + [anon_sym_DASH_GT] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_as] = ACTIONS(963), + [anon_sym_async] = ACTIONS(963), + [anon_sym_await] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_gen] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(963), + [anon_sym_let] = ACTIONS(963), + [anon_sym_loop] = ACTIONS(963), + [anon_sym_match] = ACTIONS(963), + [anon_sym_mod] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_static] = ACTIONS(963), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_trait] = ACTIONS(963), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(963), + [anon_sym_unsafe] = ACTIONS(963), + [anon_sym_use] = ACTIONS(963), + [anon_sym_where] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [sym_mutable_specifier] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(965), + [aux_sym_string_literal_token1] = ACTIONS(965), + [sym_char_literal] = ACTIONS(965), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(963), + [sym_super] = ACTIONS(963), + [sym_crate] = ACTIONS(963), + [sym_metavariable] = ACTIONS(965), + [sym__raw_string_literal_start] = ACTIONS(965), + [sym_float_literal] = ACTIONS(965), + }, + [STATE(168)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(959), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35921,26 +36546,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -35955,179 +36580,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(165)] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [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), - [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), - }, - [STATE(166)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(169)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(969), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36153,26 +36662,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36187,241 +36696,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), }, - [STATE(167)] = { - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_gen] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [STATE(168)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2592), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), + [STATE(170)] = { + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), [sym_identifier] = ACTIONS(971), [anon_sym_SEMI] = ACTIONS(973), [anon_sym_LPAREN] = ACTIONS(973), @@ -36535,9 +36812,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(973), [sym_float_literal] = ACTIONS(973), }, - [STATE(170)] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), + [STATE(171)] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), [sym_identifier] = ACTIONS(975), [anon_sym_SEMI] = ACTIONS(977), [anon_sym_LPAREN] = ACTIONS(977), @@ -36651,63 +36928,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(977), [sym_float_literal] = ACTIONS(977), }, - [STATE(171)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(172)] = { + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [aux_sym__non_special_token_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(762), + [anon_sym_i8] = ACTIONS(762), + [anon_sym_u16] = ACTIONS(762), + [anon_sym_i16] = ACTIONS(762), + [anon_sym_u32] = ACTIONS(762), + [anon_sym_i32] = ACTIONS(762), + [anon_sym_u64] = ACTIONS(762), + [anon_sym_i64] = ACTIONS(762), + [anon_sym_u128] = ACTIONS(762), + [anon_sym_i128] = ACTIONS(762), + [anon_sym_isize] = ACTIONS(762), + [anon_sym_usize] = ACTIONS(762), + [anon_sym_f32] = ACTIONS(762), + [anon_sym_f64] = ACTIONS(762), + [anon_sym_bool] = ACTIONS(762), + [anon_sym_str] = ACTIONS(762), + [anon_sym_char] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym_PERCENT] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [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(982), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym__] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(982), + [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(762), + [anon_sym_as] = ACTIONS(762), + [anon_sym_async] = ACTIONS(762), + [anon_sym_await] = ACTIONS(762), + [anon_sym_break] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(762), + [anon_sym_default] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_fn] = ACTIONS(762), + [anon_sym_for] = ACTIONS(762), + [anon_sym_gen] = ACTIONS(762), + [anon_sym_if] = ACTIONS(762), + [anon_sym_impl] = ACTIONS(762), + [anon_sym_let] = ACTIONS(762), + [anon_sym_loop] = ACTIONS(762), + [anon_sym_match] = ACTIONS(762), + [anon_sym_mod] = ACTIONS(762), + [anon_sym_pub] = ACTIONS(762), + [anon_sym_return] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_trait] = ACTIONS(762), + [anon_sym_type] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [anon_sym_unsafe] = ACTIONS(762), + [anon_sym_use] = ACTIONS(762), + [anon_sym_where] = ACTIONS(762), + [anon_sym_while] = ACTIONS(762), + [sym_mutable_specifier] = ACTIONS(762), + [sym_integer_literal] = ACTIONS(767), + [aux_sym_string_literal_token1] = ACTIONS(767), + [sym_char_literal] = ACTIONS(767), + [anon_sym_true] = ACTIONS(762), + [anon_sym_false] = ACTIONS(762), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(762), + [sym_super] = ACTIONS(762), + [sym_crate] = ACTIONS(762), + [sym__raw_string_literal_start] = ACTIONS(767), + [sym_float_literal] = ACTIONS(767), + }, + [STATE(173)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36733,26 +37126,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36767,179 +37160,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(172)] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [aux_sym__non_special_token_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(981), - [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(981), - [anon_sym_COLON] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(981), - [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(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(984), - [anon_sym_GT_GT] = ACTIONS(984), - [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(984), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(981), - [anon_sym__] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [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(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), + [STATE(174)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2707), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(173)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(175)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_let_condition] = STATE(3217), + [sym__let_chain] = STATE(3218), + [sym__condition] = STATE(3596), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(176)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2639), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(177)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2772), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(178)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36965,26 +37706,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -36999,179 +37740,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), }, - [STATE(174)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1927), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(3162), - [sym__let_chain] = STATE(3165), - [sym__condition] = STATE(3509), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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(995), - [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), + [STATE(179)] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_gen] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym_metavariable] = ACTIONS(999), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), }, - [STATE(175)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(180)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(997), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37197,26 +37938,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37231,63 +37972,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(176)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(181)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37313,26 +38054,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37347,295 +38088,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(177)] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_EQ_GT] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1001), - [anon_sym_i8] = ACTIONS(1001), - [anon_sym_u16] = ACTIONS(1001), - [anon_sym_i16] = ACTIONS(1001), - [anon_sym_u32] = ACTIONS(1001), - [anon_sym_i32] = ACTIONS(1001), - [anon_sym_u64] = ACTIONS(1001), - [anon_sym_i64] = ACTIONS(1001), - [anon_sym_u128] = ACTIONS(1001), - [anon_sym_i128] = ACTIONS(1001), - [anon_sym_isize] = ACTIONS(1001), - [anon_sym_usize] = ACTIONS(1001), - [anon_sym_f32] = ACTIONS(1001), - [anon_sym_f64] = ACTIONS(1001), - [anon_sym_bool] = ACTIONS(1001), - [anon_sym_str] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1001), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym__] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_DASH_GT] = ACTIONS(1003), - [anon_sym_POUND] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_fn] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_gen] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_impl] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_pub] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_trait] = ACTIONS(1001), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [sym_mutable_specifier] = ACTIONS(1001), - [sym_integer_literal] = ACTIONS(1003), - [aux_sym_string_literal_token1] = ACTIONS(1003), - [sym_char_literal] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_crate] = ACTIONS(1001), - [sym_metavariable] = ACTIONS(1003), - [sym__raw_string_literal_start] = ACTIONS(1003), - [sym_float_literal] = ACTIONS(1003), - }, - [STATE(178)] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_EQ_GT] = ACTIONS(1007), - [anon_sym_COLON] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(1007), - [anon_sym_u8] = ACTIONS(1005), - [anon_sym_i8] = ACTIONS(1005), - [anon_sym_u16] = ACTIONS(1005), - [anon_sym_i16] = ACTIONS(1005), - [anon_sym_u32] = ACTIONS(1005), - [anon_sym_i32] = ACTIONS(1005), - [anon_sym_u64] = ACTIONS(1005), - [anon_sym_i64] = ACTIONS(1005), - [anon_sym_u128] = ACTIONS(1005), - [anon_sym_i128] = ACTIONS(1005), - [anon_sym_isize] = ACTIONS(1005), - [anon_sym_usize] = ACTIONS(1005), - [anon_sym_f32] = ACTIONS(1005), - [anon_sym_f64] = ACTIONS(1005), - [anon_sym_bool] = ACTIONS(1005), - [anon_sym_str] = ACTIONS(1005), - [anon_sym_char] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_AMP_AMP] = ACTIONS(1007), - [anon_sym_PIPE_PIPE] = ACTIONS(1007), - [anon_sym_LT_LT] = ACTIONS(1005), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PERCENT_EQ] = ACTIONS(1007), - [anon_sym_CARET_EQ] = ACTIONS(1007), - [anon_sym_AMP_EQ] = ACTIONS(1007), - [anon_sym_PIPE_EQ] = ACTIONS(1007), - [anon_sym_LT_LT_EQ] = ACTIONS(1007), - [anon_sym_GT_GT_EQ] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_EQ_EQ] = ACTIONS(1007), - [anon_sym_BANG_EQ] = ACTIONS(1007), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1007), - [anon_sym_LT_EQ] = ACTIONS(1007), - [anon_sym_AT] = ACTIONS(1007), - [anon_sym__] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_COLON_COLON] = ACTIONS(1007), - [anon_sym_DASH_GT] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_await] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_fn] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_gen] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_impl] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_mod] = ACTIONS(1005), - [anon_sym_pub] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_struct] = ACTIONS(1005), - [anon_sym_trait] = ACTIONS(1005), - [anon_sym_type] = ACTIONS(1005), - [anon_sym_union] = ACTIONS(1005), - [anon_sym_unsafe] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [sym_mutable_specifier] = ACTIONS(1005), - [sym_integer_literal] = ACTIONS(1007), - [aux_sym_string_literal_token1] = ACTIONS(1007), - [sym_char_literal] = ACTIONS(1007), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1005), - [sym_super] = ACTIONS(1005), - [sym_crate] = ACTIONS(1005), - [sym_metavariable] = ACTIONS(1007), - [sym__raw_string_literal_start] = ACTIONS(1007), - [sym_float_literal] = ACTIONS(1007), - }, - [STATE(179)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(182)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1009), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37661,26 +38170,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37695,63 +38204,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), }, - [STATE(180)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(183)] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [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), + }, + [STATE(184)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(1011), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37777,26 +38402,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -37811,9 +38436,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), }, - [STATE(181)] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), + [STATE(185)] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), [sym_identifier] = ACTIONS(1013), [anon_sym_SEMI] = ACTIONS(1015), [anon_sym_LPAREN] = ACTIONS(1015), @@ -37927,9 +38552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1015), [sym_float_literal] = ACTIONS(1015), }, - [STATE(182)] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), + [STATE(186)] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), [sym_identifier] = ACTIONS(1017), [anon_sym_SEMI] = ACTIONS(1019), [anon_sym_LPAREN] = ACTIONS(1019), @@ -38043,9 +38668,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1019), [sym_float_literal] = ACTIONS(1019), }, - [STATE(183)] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), + [STATE(187)] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), [sym_identifier] = ACTIONS(1021), [anon_sym_SEMI] = ACTIONS(1023), [anon_sym_LPAREN] = ACTIONS(1023), @@ -38159,24 +38784,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1023), [sym_float_literal] = ACTIONS(1023), }, - [STATE(184)] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym__non_special_token_repeat1] = STATE(172), + [STATE(188)] = { + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), [sym_identifier] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(1027), [anon_sym_LPAREN] = ACTIONS(1027), [anon_sym_RPAREN] = ACTIONS(1027), [anon_sym_LBRACK] = ACTIONS(1027), [anon_sym_RBRACK] = ACTIONS(1027), [anon_sym_LBRACE] = ACTIONS(1027), [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1027), [anon_sym_u8] = ACTIONS(1025), [anon_sym_i8] = ACTIONS(1025), [anon_sym_u16] = ACTIONS(1025), @@ -38194,44 +38818,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1025), [anon_sym_str] = ACTIONS(1025), [anon_sym_char] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1025), + [anon_sym_PERCENT] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1025), + [anon_sym_PLUS_EQ] = ACTIONS(1027), + [anon_sym_DASH_EQ] = ACTIONS(1027), + [anon_sym_STAR_EQ] = ACTIONS(1027), + [anon_sym_SLASH_EQ] = ACTIONS(1027), + [anon_sym_PERCENT_EQ] = ACTIONS(1027), + [anon_sym_CARET_EQ] = ACTIONS(1027), + [anon_sym_AMP_EQ] = ACTIONS(1027), + [anon_sym_PIPE_EQ] = ACTIONS(1027), + [anon_sym_LT_LT_EQ] = ACTIONS(1027), + [anon_sym_GT_GT_EQ] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_EQ_EQ] = ACTIONS(1027), + [anon_sym_BANG_EQ] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT_EQ] = ACTIONS(1027), + [anon_sym_LT_EQ] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1027), + [anon_sym__] = ACTIONS(1025), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_COLON_COLON] = ACTIONS(1027), + [anon_sym_DASH_GT] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(1027), [anon_sym_SQUOTE] = ACTIONS(1025), [anon_sym_as] = ACTIONS(1025), [anon_sym_async] = ACTIONS(1025), @@ -38272,343 +38896,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1025), [sym_super] = ACTIONS(1025), [sym_crate] = ACTIONS(1025), + [sym_metavariable] = ACTIONS(1027), [sym__raw_string_literal_start] = ACTIONS(1027), [sym_float_literal] = ACTIONS(1027), }, - [STATE(185)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [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_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [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), + [STATE(189)] = { + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [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(897), + [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_metavariable] = ACTIONS(899), + [sym__raw_string_literal_start] = ACTIONS(899), + [sym_float_literal] = ACTIONS(899), }, - [STATE(186)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), + [STATE(190)] = { + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), [anon_sym_RPAREN] = ACTIONS(1031), - [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(748), - [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_LBRACK] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1029), + [anon_sym_i8] = ACTIONS(1029), + [anon_sym_u16] = ACTIONS(1029), + [anon_sym_i16] = ACTIONS(1029), + [anon_sym_u32] = ACTIONS(1029), + [anon_sym_i32] = ACTIONS(1029), + [anon_sym_u64] = ACTIONS(1029), + [anon_sym_i64] = ACTIONS(1029), + [anon_sym_u128] = ACTIONS(1029), + [anon_sym_i128] = ACTIONS(1029), + [anon_sym_isize] = ACTIONS(1029), + [anon_sym_usize] = ACTIONS(1029), + [anon_sym_f32] = ACTIONS(1029), + [anon_sym_f64] = ACTIONS(1029), + [anon_sym_bool] = ACTIONS(1029), + [anon_sym_str] = ACTIONS(1029), + [anon_sym_char] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym__] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [anon_sym_DASH_GT] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_fn] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_gen] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_impl] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_trait] = ACTIONS(1029), + [anon_sym_type] = ACTIONS(1029), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [sym_mutable_specifier] = ACTIONS(1029), + [sym_integer_literal] = ACTIONS(1031), + [aux_sym_string_literal_token1] = ACTIONS(1031), + [sym_char_literal] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1031), + [sym__raw_string_literal_start] = ACTIONS(1031), + [sym_float_literal] = ACTIONS(1031), + }, + [STATE(191)] = { + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [aux_sym__non_special_token_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [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(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_async] = ACTIONS(1033), + [anon_sym_await] = 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_where] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [sym_mutable_specifier] = 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(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(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1033), + [sym__raw_string_literal_start] = ACTIONS(1035), + [sym_float_literal] = ACTIONS(1035), }, - [STATE(187)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2614), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(465), + [STATE(192)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2771), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38616,115 +39357,115 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(188)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2618), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(465), + [STATE(193)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2801), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38732,115 +39473,115 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(189)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2727), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(465), + [STATE(194)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2621), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38848,115 +39589,115 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(190)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2663), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(465), + [STATE(195)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2687), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -38964,115 +39705,115 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(191)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2713), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(465), + [STATE(196)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2688), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39080,115 +39821,115 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(192)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2714), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(465), + [STATE(197)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2711), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39196,115 +39937,115 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(193)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2733), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(465), + [STATE(198)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2727), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39312,115 +40053,115 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(194)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2748), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(465), + [STATE(199)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(3069), + [sym__let_chain] = STATE(3071), + [sym__condition] = STATE(2728), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39428,231 +40169,920 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(195)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2749), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), + [STATE(200)] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym_metavariable] = ACTIONS(1039), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [STATE(201)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [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(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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_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), }, - [STATE(196)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2758), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(465), + [STATE(202)] = { + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_gen] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), + }, + [STATE(203)] = { + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [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(1009), + [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__raw_string_literal_start] = ACTIONS(1009), + [sym_float_literal] = ACTIONS(1009), + }, + [STATE(204)] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_identifier] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_RBRACK] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_EQ_GT] = ACTIONS(1019), + [anon_sym_COLON] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(1017), + [anon_sym_i8] = ACTIONS(1017), + [anon_sym_u16] = ACTIONS(1017), + [anon_sym_i16] = ACTIONS(1017), + [anon_sym_u32] = ACTIONS(1017), + [anon_sym_i32] = ACTIONS(1017), + [anon_sym_u64] = ACTIONS(1017), + [anon_sym_i64] = ACTIONS(1017), + [anon_sym_u128] = ACTIONS(1017), + [anon_sym_i128] = ACTIONS(1017), + [anon_sym_isize] = ACTIONS(1017), + [anon_sym_usize] = ACTIONS(1017), + [anon_sym_f32] = ACTIONS(1017), + [anon_sym_f64] = ACTIONS(1017), + [anon_sym_bool] = ACTIONS(1017), + [anon_sym_str] = ACTIONS(1017), + [anon_sym_char] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1017), + [anon_sym_PERCENT] = ACTIONS(1017), + [anon_sym_CARET] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_AMP_AMP] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1019), + [anon_sym_LT_LT] = ACTIONS(1017), + [anon_sym_GT_GT] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1019), + [anon_sym_DASH_EQ] = ACTIONS(1019), + [anon_sym_STAR_EQ] = ACTIONS(1019), + [anon_sym_SLASH_EQ] = ACTIONS(1019), + [anon_sym_PERCENT_EQ] = ACTIONS(1019), + [anon_sym_CARET_EQ] = ACTIONS(1019), + [anon_sym_AMP_EQ] = ACTIONS(1019), + [anon_sym_PIPE_EQ] = ACTIONS(1019), + [anon_sym_LT_LT_EQ] = ACTIONS(1019), + [anon_sym_GT_GT_EQ] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_EQ_EQ] = ACTIONS(1019), + [anon_sym_BANG_EQ] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1019), + [anon_sym_LT_EQ] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(1019), + [anon_sym__] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1019), + [anon_sym_COLON_COLON] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1019), + [anon_sym_POUND] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [anon_sym_async] = ACTIONS(1017), + [anon_sym_await] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_default] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_fn] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_gen] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_impl] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_mod] = ACTIONS(1017), + [anon_sym_pub] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_static] = ACTIONS(1017), + [anon_sym_struct] = ACTIONS(1017), + [anon_sym_trait] = ACTIONS(1017), + [anon_sym_type] = ACTIONS(1017), + [anon_sym_union] = ACTIONS(1017), + [anon_sym_unsafe] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_where] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [sym_mutable_specifier] = ACTIONS(1017), + [sym_integer_literal] = ACTIONS(1019), + [aux_sym_string_literal_token1] = ACTIONS(1019), + [sym_char_literal] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1017), + [sym_super] = ACTIONS(1017), + [sym_crate] = ACTIONS(1017), + [sym__raw_string_literal_start] = ACTIONS(1019), + [sym_float_literal] = ACTIONS(1019), + }, + [STATE(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1027), + [anon_sym_u8] = ACTIONS(1025), + [anon_sym_i8] = ACTIONS(1025), + [anon_sym_u16] = ACTIONS(1025), + [anon_sym_i16] = ACTIONS(1025), + [anon_sym_u32] = ACTIONS(1025), + [anon_sym_i32] = ACTIONS(1025), + [anon_sym_u64] = ACTIONS(1025), + [anon_sym_i64] = ACTIONS(1025), + [anon_sym_u128] = ACTIONS(1025), + [anon_sym_i128] = ACTIONS(1025), + [anon_sym_isize] = ACTIONS(1025), + [anon_sym_usize] = ACTIONS(1025), + [anon_sym_f32] = ACTIONS(1025), + [anon_sym_f64] = ACTIONS(1025), + [anon_sym_bool] = ACTIONS(1025), + [anon_sym_str] = ACTIONS(1025), + [anon_sym_char] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1025), + [anon_sym_PERCENT] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1025), + [anon_sym_PLUS_EQ] = ACTIONS(1027), + [anon_sym_DASH_EQ] = ACTIONS(1027), + [anon_sym_STAR_EQ] = ACTIONS(1027), + [anon_sym_SLASH_EQ] = ACTIONS(1027), + [anon_sym_PERCENT_EQ] = ACTIONS(1027), + [anon_sym_CARET_EQ] = ACTIONS(1027), + [anon_sym_AMP_EQ] = ACTIONS(1027), + [anon_sym_PIPE_EQ] = ACTIONS(1027), + [anon_sym_LT_LT_EQ] = ACTIONS(1027), + [anon_sym_GT_GT_EQ] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_EQ_EQ] = ACTIONS(1027), + [anon_sym_BANG_EQ] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT_EQ] = ACTIONS(1027), + [anon_sym_LT_EQ] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1027), + [anon_sym__] = ACTIONS(1025), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_COLON_COLON] = ACTIONS(1027), + [anon_sym_DASH_GT] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(1025), + [anon_sym_async] = ACTIONS(1025), + [anon_sym_await] = ACTIONS(1025), + [anon_sym_break] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1025), + [anon_sym_continue] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1025), + [anon_sym_fn] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_gen] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_impl] = ACTIONS(1025), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1025), + [anon_sym_mod] = ACTIONS(1025), + [anon_sym_pub] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1025), + [anon_sym_struct] = ACTIONS(1025), + [anon_sym_trait] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1025), + [anon_sym_union] = ACTIONS(1025), + [anon_sym_unsafe] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_where] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1025), + [sym_mutable_specifier] = ACTIONS(1025), + [sym_integer_literal] = ACTIONS(1027), + [aux_sym_string_literal_token1] = ACTIONS(1027), + [sym_char_literal] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1025), + [anon_sym_false] = ACTIONS(1025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1025), + [sym_super] = ACTIONS(1025), + [sym_crate] = ACTIONS(1025), + [sym__raw_string_literal_start] = ACTIONS(1027), + [sym_float_literal] = ACTIONS(1027), + }, + [STATE(206)] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1029), + [anon_sym_i8] = ACTIONS(1029), + [anon_sym_u16] = ACTIONS(1029), + [anon_sym_i16] = ACTIONS(1029), + [anon_sym_u32] = ACTIONS(1029), + [anon_sym_i32] = ACTIONS(1029), + [anon_sym_u64] = ACTIONS(1029), + [anon_sym_i64] = ACTIONS(1029), + [anon_sym_u128] = ACTIONS(1029), + [anon_sym_i128] = ACTIONS(1029), + [anon_sym_isize] = ACTIONS(1029), + [anon_sym_usize] = ACTIONS(1029), + [anon_sym_f32] = ACTIONS(1029), + [anon_sym_f64] = ACTIONS(1029), + [anon_sym_bool] = ACTIONS(1029), + [anon_sym_str] = ACTIONS(1029), + [anon_sym_char] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym__] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [anon_sym_DASH_GT] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_fn] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_gen] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_impl] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_trait] = ACTIONS(1029), + [anon_sym_type] = ACTIONS(1029), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [sym_mutable_specifier] = ACTIONS(1029), + [sym_integer_literal] = ACTIONS(1031), + [aux_sym_string_literal_token1] = ACTIONS(1031), + [sym_char_literal] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym__raw_string_literal_start] = ACTIONS(1031), + [sym_float_literal] = ACTIONS(1031), + }, + [STATE(207)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [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(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -39660,16 +41090,131 @@ 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), }, - [STATE(197)] = { - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), + [STATE(208)] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [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(945), + [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__raw_string_literal_start] = ACTIONS(945), + [sym_float_literal] = ACTIONS(945), + }, + [STATE(209)] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), [sym_identifier] = ACTIONS(1033), [anon_sym_SEMI] = ACTIONS(1035), [anon_sym_LPAREN] = ACTIONS(1035), @@ -39680,7 +41225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1035), [anon_sym_EQ_GT] = ACTIONS(1035), [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1035), [anon_sym_PLUS] = ACTIONS(1033), [anon_sym_STAR] = ACTIONS(1033), [anon_sym_QMARK] = ACTIONS(1035), @@ -39779,181 +41324,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [STATE(198)] = { - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_EQ_GT] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_DASH_GT] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_await] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_where] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [sym_mutable_specifier] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), - }, - [STATE(199)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1942), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(339), + [STATE(210)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -39979,26 +41408,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -40013,9 +41442,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), }, - [STATE(200)] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), + [STATE(211)] = { + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), [sym_identifier] = ACTIONS(1041), [anon_sym_SEMI] = ACTIONS(1043), [anon_sym_LPAREN] = ACTIONS(1043), @@ -40128,292 +41557,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1043), [sym_float_literal] = ACTIONS(1043), }, - [STATE(201)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [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(748), - [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), - }, - [STATE(202)] = { - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - }, - [STATE(203)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(212)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40439,26 +41638,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -40473,699 +41672,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), }, - [STATE(204)] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_EQ_GT] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1001), - [anon_sym_i8] = ACTIONS(1001), - [anon_sym_u16] = ACTIONS(1001), - [anon_sym_i16] = ACTIONS(1001), - [anon_sym_u32] = ACTIONS(1001), - [anon_sym_i32] = ACTIONS(1001), - [anon_sym_u64] = ACTIONS(1001), - [anon_sym_i64] = ACTIONS(1001), - [anon_sym_u128] = ACTIONS(1001), - [anon_sym_i128] = ACTIONS(1001), - [anon_sym_isize] = ACTIONS(1001), - [anon_sym_usize] = ACTIONS(1001), - [anon_sym_f32] = ACTIONS(1001), - [anon_sym_f64] = ACTIONS(1001), - [anon_sym_bool] = ACTIONS(1001), - [anon_sym_str] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1001), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym__] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_DASH_GT] = ACTIONS(1003), - [anon_sym_POUND] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_fn] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_gen] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_impl] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_pub] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_trait] = ACTIONS(1001), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [sym_mutable_specifier] = ACTIONS(1001), - [sym_integer_literal] = ACTIONS(1003), - [aux_sym_string_literal_token1] = ACTIONS(1003), - [sym_char_literal] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_crate] = ACTIONS(1001), - [sym__raw_string_literal_start] = ACTIONS(1003), - [sym_float_literal] = ACTIONS(1003), - }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [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(909), - [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__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), - }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_PERCENT_EQ] = ACTIONS(913), - [anon_sym_CARET_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym__] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym_DASH_GT] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_as] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_await] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_fn] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_gen] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_impl] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_pub] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_trait] = ACTIONS(911), - [anon_sym_type] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [anon_sym_unsafe] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym_mutable_specifier] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(913), - [aux_sym_string_literal_token1] = ACTIONS(913), - [sym_char_literal] = ACTIONS(913), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_crate] = ACTIONS(911), - [sym__raw_string_literal_start] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), - }, - [STATE(207)] = { - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [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(917), - [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_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__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(208)] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [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), - }, - [STATE(209)] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_PIPE_PIPE] = ACTIONS(1027), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_PLUS_EQ] = ACTIONS(1027), - [anon_sym_DASH_EQ] = ACTIONS(1027), - [anon_sym_STAR_EQ] = ACTIONS(1027), - [anon_sym_SLASH_EQ] = ACTIONS(1027), - [anon_sym_PERCENT_EQ] = ACTIONS(1027), - [anon_sym_CARET_EQ] = ACTIONS(1027), - [anon_sym_AMP_EQ] = ACTIONS(1027), - [anon_sym_PIPE_EQ] = ACTIONS(1027), - [anon_sym_LT_LT_EQ] = ACTIONS(1027), - [anon_sym_GT_GT_EQ] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1027), - [anon_sym_BANG_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1027), - [anon_sym_LT_EQ] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_COLON_COLON] = ACTIONS(1027), - [anon_sym_DASH_GT] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_fn] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_gen] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_impl] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_pub] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1025), - [anon_sym_trait] = ACTIONS(1025), - [anon_sym_type] = ACTIONS(1025), - [anon_sym_union] = ACTIONS(1025), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [sym_mutable_specifier] = ACTIONS(1025), - [sym_integer_literal] = ACTIONS(1027), - [aux_sym_string_literal_token1] = ACTIONS(1027), - [sym_char_literal] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), - [sym_crate] = ACTIONS(1025), - [sym__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), - }, - [STATE(210)] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), + [STATE(213)] = { + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), [sym_identifier] = ACTIONS(1045), [anon_sym_SEMI] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1047), @@ -41272,15 +41781,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [STATE(214)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [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(752), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), }, - [STATE(211)] = { - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), + [STATE(215)] = { + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), [sym_identifier] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1051), [anon_sym_LPAREN] = ACTIONS(1051), @@ -41393,62 +42017,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1051), [sym_float_literal] = ACTIONS(1051), }, - [STATE(212)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1937), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(339), + [STATE(216)] = { + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_EQ_GT] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_AMP_AMP] = ACTIONS(1055), + [anon_sym_PIPE_PIPE] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_PLUS_EQ] = ACTIONS(1055), + [anon_sym_DASH_EQ] = ACTIONS(1055), + [anon_sym_STAR_EQ] = ACTIONS(1055), + [anon_sym_SLASH_EQ] = ACTIONS(1055), + [anon_sym_PERCENT_EQ] = ACTIONS(1055), + [anon_sym_CARET_EQ] = ACTIONS(1055), + [anon_sym_AMP_EQ] = ACTIONS(1055), + [anon_sym_PIPE_EQ] = ACTIONS(1055), + [anon_sym_LT_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_GT_EQ] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_await] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_gen] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_impl] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_loop] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_pub] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [sym_mutable_specifier] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_crate] = ACTIONS(1053), + [sym__raw_string_literal_start] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), + }, + [STATE(217)] = { + [sym_attribute_item] = STATE(1055), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41474,26 +42213,26 @@ 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(748), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41508,62 +42247,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), }, - [STATE(213)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(339), + [STATE(218)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1536), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41582,33 +42319,34 @@ 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(353), [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_POUND] = ACTIONS(748), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41623,62 +42361,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(214)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(339), + [STATE(219)] = { + [sym_attribute_item] = STATE(402), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3159), + [sym_variadic_parameter] = STATE(3159), + [sym_parameter] = STATE(3159), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2831), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(220)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [aux_sym_tuple_expression_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1137), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41704,26 +42556,25 @@ 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(748), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41738,106 +42589,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), }, - [STATE(215)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(339), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1053), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [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(1143), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41845,67 +42696,69 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(216)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(339), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [aux_sym_tuple_expression_repeat1] = STATE(220), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1149), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41924,34 +42777,32 @@ 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(1055), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -41966,62 +42817,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), }, - [STATE(217)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(339), + [STATE(223)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [aux_sym_tuple_expression_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1137), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42048,24 +42899,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42080,106 +42931,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(339), + [STATE(224)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(2995), + [sym_variadic_parameter] = STATE(2995), + [sym_parameter] = STATE(2995), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1153), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1155), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(225)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [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(1157), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42187,113 +43152,455 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(219)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(465), + [STATE(226)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_let_condition] = STATE(2802), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(227)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_let_condition] = STATE(2802), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(228)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [aux_sym_tuple_expression_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_u8] = ACTIONS(1180), + [anon_sym_i8] = ACTIONS(1180), + [anon_sym_u16] = ACTIONS(1180), + [anon_sym_i16] = ACTIONS(1180), + [anon_sym_u32] = ACTIONS(1180), + [anon_sym_i32] = ACTIONS(1180), + [anon_sym_u64] = ACTIONS(1180), + [anon_sym_i64] = ACTIONS(1180), + [anon_sym_u128] = ACTIONS(1180), + [anon_sym_i128] = ACTIONS(1180), + [anon_sym_isize] = ACTIONS(1180), + [anon_sym_usize] = ACTIONS(1180), + [anon_sym_f32] = ACTIONS(1180), + [anon_sym_f64] = ACTIONS(1180), + [anon_sym_bool] = ACTIONS(1180), + [anon_sym_str] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_DOT_DOT] = ACTIONS(1192), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_gen] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1213), + [anon_sym_unsafe] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_yield] = ACTIONS(1243), + [anon_sym_move] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1249), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1255), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1261), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1270), + [sym_float_literal] = ACTIONS(1252), + }, + [STATE(229)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym__] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_DASH_GT] = ACTIONS(1159), [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(477), - [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(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1069), - [anon_sym_raw] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42301,113 +43608,227 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(465), + [STATE(230)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [sym_mutable_specifier] = ACTIONS(1275), + [anon_sym_raw] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(231)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1465), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1075), - [anon_sym_raw] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [sym_mutable_specifier] = ACTIONS(1279), + [anon_sym_raw] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42415,69 +43836,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(221)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(339), + [STATE(232)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1079), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42496,32 +43915,34 @@ 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(353), [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__] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42536,290 +43957,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), }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_u8] = ACTIONS(1098), - [anon_sym_i8] = ACTIONS(1098), - [anon_sym_u16] = ACTIONS(1098), - [anon_sym_i16] = ACTIONS(1098), - [anon_sym_u32] = ACTIONS(1098), - [anon_sym_i32] = ACTIONS(1098), - [anon_sym_u64] = ACTIONS(1098), - [anon_sym_i64] = ACTIONS(1098), - [anon_sym_u128] = ACTIONS(1098), - [anon_sym_i128] = ACTIONS(1098), - [anon_sym_isize] = ACTIONS(1098), - [anon_sym_usize] = ACTIONS(1098), - [anon_sym_f32] = ACTIONS(1098), - [anon_sym_f64] = ACTIONS(1098), - [anon_sym_bool] = ACTIONS(1098), - [anon_sym_str] = ACTIONS(1098), - [anon_sym_char] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1137), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_loop] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_unsafe] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1161), - [anon_sym_move] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1167), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1173), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1182), - [sym_crate] = ACTIONS(1182), - [sym_metavariable] = ACTIONS(1185), - [sym__raw_string_literal_start] = ACTIONS(1188), - [sym_float_literal] = ACTIONS(1170), - }, - [STATE(223)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1059), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(339), + [STATE(233)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [aux_sym_tuple_expression_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1285), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42846,24 +44039,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42878,62 +44071,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), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(232), - [sym_identifier] = ACTIONS(339), + [STATE(234)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [aux_sym_tuple_expression_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1193), + [anon_sym_RPAREN] = ACTIONS(1287), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42960,24 +44153,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -42992,790 +44185,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(226)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2995), - [sym_variadic_parameter] = STATE(2995), - [sym_parameter] = STATE(2995), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2730), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(227)] = { - [sym_attribute_item] = STATE(419), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2859), - [sym_variadic_parameter] = STATE(2859), - [sym_parameter] = STATE(2859), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2651), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(228)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1840), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1281), - [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), - }, - [STATE(229)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1913), - [sym__literal] = STATE(1711), + [STATE(235)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1846), + [sym__literal] = STATE(1831), [sym_string_literal] = STATE(1819), [sym_raw_string_literal] = STATE(1819), [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1285), - [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), - }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(1063), - [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(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1059), - [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(477), - [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(475), - [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), - }, - [STATE(231)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym__] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(1291), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), }, - [STATE(232)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(339), + [STATE(236)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(2802), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [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(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -43783,69 +44406,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(339), + [STATE(237)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43864,32 +44485,34 @@ 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(353), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1143), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1147), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -43904,62 +44527,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), }, - [STATE(234)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(238)] = { + [sym_attribute_item] = STATE(402), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3159), + [sym_variadic_parameter] = STATE(3159), + [sym_parameter] = STATE(3159), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2831), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2480), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [sym_identifier] = ACTIONS(1293), [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(1299), [anon_sym_i8] = ACTIONS(1299), [anon_sym_u16] = ACTIONS(1299), @@ -43977,375 +44600,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1299), [anon_sym_str] = ACTIONS(1299), [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1081), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), [anon_sym_COMMA] = ACTIONS(1305), [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1111), [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1313), [sym_super] = ACTIONS(1315), [sym_crate] = ACTIONS(1315), [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(235)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1858), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1321), - [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), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(465), + [STATE(239)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1465), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), - }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [sym_mutable_specifier] = ACTIONS(1319), + [anon_sym_raw] = ACTIONS(1321), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -44353,67 +44748,69 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(238)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(339), + [STATE(240)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [aux_sym_tuple_expression_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1323), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44432,34 +44829,32 @@ 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(1323), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -44474,334 +44869,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), }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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(995), - [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), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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(995), - [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), - }, [STATE(241)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_let_condition] = STATE(2802), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -44809,181 +44976,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(242)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(243)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45002,34 +45055,34 @@ 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(353), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45044,62 +45097,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(243)] = { + [sym_attribute_item] = STATE(402), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3159), + [sym_variadic_parameter] = STATE(3159), + [sym_parameter] = STATE(3159), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2831), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2480), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [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(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1313), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, [STATE(244)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(402), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3159), + [sym_variadic_parameter] = STATE(3159), + [sym_parameter] = STATE(3159), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2831), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2480), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [sym_identifier] = ACTIONS(1293), [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(1299), [anon_sym_i8] = ACTIONS(1299), [anon_sym_u16] = ACTIONS(1299), @@ -45117,101 +45284,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1299), [anon_sym_str] = ACTIONS(1299), [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1081), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1331), [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1111), [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1313), [sym_super] = ACTIONS(1315), [sym_crate] = ACTIONS(1315), [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(245)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45230,34 +45397,34 @@ 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(353), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1159), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45273,287 +45440,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(246)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1536), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_DASH_GT] = ACTIONS(1059), [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(1331), - [anon_sym_raw] = ACTIONS(1333), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(247)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [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(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(248)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(339), + [aux_sym_tuple_expression_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1333), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45572,34 +45627,32 @@ 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(1323), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45614,60 +45667,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(248)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, [STATE(249)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1759), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_DASH_GT] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(250)] = { + [sym_attribute_item] = STATE(411), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(2860), + [sym_variadic_parameter] = STATE(2860), + [sym_parameter] = STATE(2860), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2610), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(251)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1465), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45691,29 +46086,29 @@ 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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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(1339), - [anon_sym_raw] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [sym_mutable_specifier] = ACTIONS(1349), + [anon_sym_raw] = ACTIONS(1351), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45728,60 +46123,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), }, - [STATE(250)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(339), + [STATE(252)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1553), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1536), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45800,34 +46195,34 @@ 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(353), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -45842,220 +46237,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), }, - [STATE(251)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1345), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(465), + [STATE(253)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1480), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym__] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_DASH_GT] = ACTIONS(1147), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -46063,1084 +46344,183 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(253)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(254)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1536), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(255)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(256)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(257)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(258)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(259)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(260)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(261)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(262)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1925), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(339), + [aux_sym_tuple_expression_repeat1] = STATE(240), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1287), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47167,24 +46547,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47199,104 +46579,1233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(256)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(257)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(258)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(259)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(260)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(261)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(262)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, [STATE(263)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(465), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(264)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(265)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(266)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1634), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47304,67 +47813,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(264)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(339), + [STATE(267)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(493), + [sym_match_expression] = STATE(493), + [sym_while_expression] = STATE(493), + [sym_loop_expression] = STATE(493), + [sym_for_expression] = STATE(493), + [sym_const_block] = STATE(493), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(493), + [sym_async_block] = STATE(493), + [sym_gen_block] = STATE(493), + [sym_try_block] = STATE(493), + [sym_block] = STATE(493), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47391,24 +47900,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(1375), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1377), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_gen] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1387), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1391), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1393), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47423,60 +47932,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(265)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(339), + [STATE(268)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(269)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47500,27 +48121,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47535,60 +48156,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), }, - [STATE(266)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(339), + [STATE(270)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47612,27 +48233,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47647,60 +48268,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), }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(339), + [STATE(271)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47727,24 +48348,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47759,104 +48380,1224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(268)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(339), + [STATE(272)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(273)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(274)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(275)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(276)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(277)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(278)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(279)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(280)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(281)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(282)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(469), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [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(1395), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47864,67 +49605,291 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(269)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(339), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(284)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1621), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(285)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47951,24 +49916,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(1371), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47983,104 +49948,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(270)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(339), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(469), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48088,67 +50053,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(271)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), [sym__expression] = STATE(1922), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(339), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48175,24 +50140,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48207,60 +50172,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), }, - [STATE(272)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(339), + [STATE(288)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48284,27 +50249,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48319,60 +50284,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), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(339), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1425), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48396,27 +50361,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48431,60 +50396,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(339), + [STATE(290)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(292)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48508,27 +50697,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48543,104 +50732,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1614), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(465), + [STATE(293)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [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(927), - [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(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48648,67 +50837,179 @@ 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), }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(339), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(295)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48732,27 +51033,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48767,60 +51068,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), }, - [STATE(277)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(339), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48844,27 +51145,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48879,60 +51180,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(278)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(339), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), + }, + [STATE(298)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(475), + [sym_match_expression] = STATE(475), + [sym_while_expression] = STATE(475), + [sym_loop_expression] = STATE(475), + [sym_for_expression] = STATE(475), + [sym_const_block] = STATE(475), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(475), + [sym_async_block] = STATE(475), + [sym_gen_block] = STATE(475), + [sym_try_block] = STATE(475), + [sym_block] = STATE(475), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48956,27 +51369,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(1057), + [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(1375), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1377), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_gen] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1387), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1391), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1393), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48991,60 +51404,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), }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1548), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(339), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49068,27 +51481,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49103,60 +51516,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(280)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(339), + [STATE(300)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(301)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49180,27 +51705,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49215,60 +51740,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), }, - [STATE(281)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(339), + [STATE(302)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1565), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49292,27 +51817,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49327,60 +51852,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), }, - [STATE(282)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1558), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(339), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49404,27 +51929,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49439,60 +51964,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), }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(339), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49516,27 +52041,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49551,60 +52076,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(339), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1568), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [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(1283), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), + }, + [STATE(306)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1569), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49628,27 +52265,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49663,60 +52300,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), }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(339), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49740,27 +52377,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49775,60 +52412,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), }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(339), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49855,24 +52492,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(1371), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49887,60 +52524,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), }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1926), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(339), + [STATE(309)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1949), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49967,24 +52604,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49999,60 +52636,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1921), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(339), + [STATE(310)] = { + [sym_attribute_item] = STATE(404), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3246), + [sym_variadic_parameter] = STATE(3246), + [sym_parameter] = STATE(3246), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(311)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3031), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(2633), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [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(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(312)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50079,24 +52940,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50111,60 +52972,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), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(339), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(493), + [sym_match_expression] = STATE(493), + [sym_while_expression] = STATE(493), + [sym_loop_expression] = STATE(493), + [sym_for_expression] = STATE(493), + [sym_const_block] = STATE(493), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(493), + [sym_async_block] = STATE(493), + [sym_gen_block] = STATE(493), + [sym_try_block] = STATE(493), + [sym_block] = STATE(493), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50191,24 +53052,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(1375), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1377), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_gen] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1387), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1391), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1393), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50223,60 +53084,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), }, - [STATE(290)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(339), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50300,27 +53161,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50335,60 +53196,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(339), + [STATE(315)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3031), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(2633), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [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(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(316)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(475), + [sym_match_expression] = STATE(475), + [sym_while_expression] = STATE(475), + [sym_loop_expression] = STATE(475), + [sym_for_expression] = STATE(475), + [sym_const_block] = STATE(475), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(475), + [sym_async_block] = STATE(475), + [sym_gen_block] = STATE(475), + [sym_try_block] = STATE(475), + [sym_block] = STATE(475), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50415,24 +53388,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(1375), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1377), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_gen] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1387), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1391), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1393), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50447,172 +53420,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), }, - [STATE(292)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(339), + [STATE(317)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1956), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50639,24 +53500,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50671,60 +53532,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), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(339), + [STATE(318)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50751,24 +53612,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(1371), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50783,60 +53644,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), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(339), + [STATE(319)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50863,24 +53724,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50895,60 +53756,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), }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(339), + [STATE(320)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50972,27 +53833,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51007,60 +53868,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), }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(339), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51084,27 +53945,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51119,60 +53980,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), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(339), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51196,27 +54057,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51231,1448 +54092,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), [sym_string_literal] = STATE(1819), [sym_raw_string_literal] = STATE(1819), [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1731), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(477), - [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(475), - [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), - }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1161), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(465), + [STATE(324)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [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(1073), - [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(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52680,67 +54309,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), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(339), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52764,27 +54393,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52799,104 +54428,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(465), + [STATE(326)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52904,223 +54533,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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), - }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(465), + [STATE(327)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53128,111 +54645,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(465), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [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(927), - [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(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53240,67 +54757,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), }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(339), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53324,27 +54841,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(1057), + [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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53359,104 +54876,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(465), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53464,223 +54981,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(319)] = { - [sym_else_clause] = STATE(414), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(1393), - [sym_identifier] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_macro_rules_BANG] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [anon_sym_u8] = ACTIONS(1395), - [anon_sym_i8] = ACTIONS(1395), - [anon_sym_u16] = ACTIONS(1395), - [anon_sym_i16] = ACTIONS(1395), - [anon_sym_u32] = ACTIONS(1395), - [anon_sym_i32] = ACTIONS(1395), - [anon_sym_u64] = ACTIONS(1395), - [anon_sym_i64] = ACTIONS(1395), - [anon_sym_u128] = ACTIONS(1395), - [anon_sym_i128] = ACTIONS(1395), - [anon_sym_isize] = ACTIONS(1395), - [anon_sym_usize] = ACTIONS(1395), - [anon_sym_f32] = ACTIONS(1395), - [anon_sym_f64] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_str] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_impl] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_pub] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_trait] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_unsafe] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), - }, - [STATE(320)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(465), + [STATE(331)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1425), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53688,111 +55093,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(465), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53800,111 +55205,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(465), + [STATE(333)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1652), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53912,111 +55317,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1729), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(465), + [STATE(334)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54024,111 +55429,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(465), + [STATE(335)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54136,111 +55541,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(465), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54248,111 +55653,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(465), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54360,111 +55765,223 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(465), + [STATE(338)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3031), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(2633), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [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(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(339)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54472,111 +55989,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(465), + [STATE(340)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54584,111 +56101,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(465), + [STATE(341)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54696,111 +56213,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(465), + [STATE(342)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54808,111 +56325,111 @@ 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), }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(465), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54920,67 +56437,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(339), + [STATE(344)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55007,24 +56524,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55039,1448 +56556,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), }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(338)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(340)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [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(1279), - [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), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), + [STATE(346)] = { + [sym_bracketed_type] = STATE(3633), + [sym_generic_function] = STATE(1831), + [sym_generic_type_with_turbofish] = STATE(2983), + [sym__expression_except_range] = STATE(1668), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(1705), + [sym_scoped_identifier] = STATE(1610), + [sym_scoped_type_identifier_in_expression_position] = STATE(3165), + [sym_range_expression] = STATE(1839), + [sym_unary_expression] = STATE(1831), + [sym_try_expression] = STATE(1831), + [sym_reference_expression] = STATE(1831), + [sym_binary_expression] = STATE(1831), + [sym_assignment_expression] = STATE(1831), + [sym_compound_assignment_expr] = STATE(1831), + [sym_type_cast_expression] = STATE(1831), + [sym_return_expression] = STATE(1831), + [sym_yield_expression] = STATE(1831), + [sym_call_expression] = STATE(1831), + [sym_array_expression] = STATE(1831), + [sym_parenthesized_expression] = STATE(1831), + [sym_tuple_expression] = STATE(1831), + [sym_unit_expression] = STATE(1831), + [sym_struct_expression] = STATE(1831), + [sym_if_expression] = STATE(1831), + [sym_match_expression] = STATE(1831), + [sym_while_expression] = STATE(1831), + [sym_loop_expression] = STATE(1831), + [sym_for_expression] = STATE(1831), + [sym_const_block] = STATE(1831), + [sym_closure_expression] = STATE(1831), + [sym_closure_parameters] = STATE(248), + [sym_label] = STATE(3741), + [sym_break_expression] = STATE(1831), + [sym_continue_expression] = STATE(1831), + [sym_index_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_field_expression] = STATE(1667), + [sym_unsafe_block] = STATE(1831), + [sym_async_block] = STATE(1831), + [sym_gen_block] = STATE(1831), + [sym_try_block] = STATE(1831), + [sym_block] = STATE(1831), + [sym__literal] = STATE(1831), [sym_string_literal] = STATE(1819), [sym_raw_string_literal] = STATE(1819), [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(989), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(419), [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), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(423), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(427), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_gen] = ACTIONS(433), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(439), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(443), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_while] = ACTIONS(447), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_move] = ACTIONS(451), + [anon_sym_try] = ACTIONS(453), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(457), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(459), + [anon_sym_false] = ACTIONS(459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(463), + [sym_crate] = ACTIONS(463), + [sym_metavariable] = ACTIONS(465), + [sym__raw_string_literal_start] = ACTIONS(467), + [sym_float_literal] = ACTIONS(455), }, - [STATE(344)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [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(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [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), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(377), + [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), }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(465), + [STATE(348)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1613), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56488,223 +56997,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(465), + [STATE(349)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56712,67 +57109,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(339), + [STATE(350)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56796,27 +57193,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(31), + [anon_sym_DOT_DOT] = ACTIONS(1283), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56831,104 +57228,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(465), + [STATE(351)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [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(475), - [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -56936,335 +57333,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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), - }, - [STATE(351)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, [STATE(352)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1425), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57272,111 +57445,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(353)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1933), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1730), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(469), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [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(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57384,223 +57557,223 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(354)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [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(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(355)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(469), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [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(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57608,179 +57781,851 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(356)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [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(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(357)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(358)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(359)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1736), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(360)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(361)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(362)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(363)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1924), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57807,24 +58652,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57839,60 +58684,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), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(339), + [STATE(364)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57919,24 +58764,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57951,328 +58796,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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(477), - [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(475), - [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), - }, - [STATE(360)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [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(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(365)] = { + [sym_else_clause] = STATE(401), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_macro_rules_BANG] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_gen] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_impl] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_pub] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_trait] = ACTIONS(1419), + [anon_sym_type] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1419), + [anon_sym_move] = ACTIONS(1419), + [anon_sym_try] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym__raw_string_literal_start] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(465), + [STATE(366)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58280,67 +59013,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(339), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58367,24 +59100,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58399,60 +59132,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(339), + [STATE(368)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(369)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58479,24 +59324,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58511,60 +59356,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), }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(339), + [STATE(370)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58591,24 +59436,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58623,172 +59468,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), }, - [STATE(365)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [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(477), - [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(475), - [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), - }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1948), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(339), + [STATE(371)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58815,24 +59548,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58847,60 +59580,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), }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1920), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(339), + [STATE(372)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58927,24 +59660,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58959,172 +59692,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), }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1622), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(339), + [STATE(373)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59151,24 +59772,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59183,60 +59804,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), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1928), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(339), + [STATE(374)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59263,24 +59884,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59295,60 +59916,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), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [sym_identifier] = ACTIONS(339), + [STATE(375)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59375,24 +59996,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59407,60 +60028,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(339), + [STATE(376)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(377)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59487,24 +60220,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59519,60 +60252,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), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1944), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(339), + [STATE(378)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59599,24 +60332,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59631,60 +60364,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), }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(339), + [STATE(379)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59711,24 +60444,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59743,60 +60476,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), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(339), + [STATE(380)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59823,24 +60556,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -59855,172 +60588,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), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(377)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym_identifier] = ACTIONS(339), + [STATE(381)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60047,24 +60668,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60079,104 +60700,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(378)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym_identifier] = ACTIONS(339), + [STATE(382)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(469), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [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(1145), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60184,111 +60805,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(379)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym_identifier] = ACTIONS(339), + [STATE(383)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(469), [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_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [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(1395), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), [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), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60296,67 +60917,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1932), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [sym_identifier] = ACTIONS(339), + [STATE(384)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60383,24 +61004,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60415,60 +61036,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(381)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(339), + [STATE(385)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), + [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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(386)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60495,24 +61228,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60527,104 +61260,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(382)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(465), + [STATE(387)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [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(477), - [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(475), - [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), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60632,111 +61365,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1626), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(465), + [STATE(388)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(254), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1141), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(481), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(485), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_move] = ACTIONS(489), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60744,67 +61477,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(384)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym_identifier] = ACTIONS(339), + [STATE(389)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3137), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [sym_identifier] = ACTIONS(343), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60831,24 +61564,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(355), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(357), [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_default] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(363), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), [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_static] = ACTIONS(371), + [anon_sym_union] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -60863,328 +61596,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(385)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [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), - }, - [STATE(386)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [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(477), - [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(475), - [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), - }, - [STATE(387)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(465), + [STATE(390)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61192,111 +61701,111 @@ 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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym_identifier] = ACTIONS(465), + [STATE(391)] = { + [sym_bracketed_type] = STATE(3515), + [sym_generic_function] = STATE(1518), + [sym_generic_type_with_turbofish] = STATE(3057), + [sym__expression_except_range] = STATE(1419), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1512), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier_in_expression_position] = STATE(3200), + [sym_range_expression] = STATE(1528), + [sym_unary_expression] = STATE(1518), + [sym_try_expression] = STATE(1518), + [sym_reference_expression] = STATE(1518), + [sym_binary_expression] = STATE(1518), + [sym_assignment_expression] = STATE(1518), + [sym_compound_assignment_expr] = STATE(1518), + [sym_type_cast_expression] = STATE(1518), + [sym_return_expression] = STATE(1518), + [sym_yield_expression] = STATE(1518), + [sym_call_expression] = STATE(1518), + [sym_array_expression] = STATE(1518), + [sym_parenthesized_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1518), + [sym_unit_expression] = STATE(1518), + [sym_struct_expression] = STATE(1518), + [sym_if_expression] = STATE(1518), + [sym_match_expression] = STATE(1518), + [sym_while_expression] = STATE(1518), + [sym_loop_expression] = STATE(1518), + [sym_for_expression] = STATE(1518), + [sym_const_block] = STATE(1518), + [sym_closure_expression] = STATE(1518), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3674), + [sym_break_expression] = STATE(1518), + [sym_continue_expression] = STATE(1518), + [sym_index_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_field_expression] = STATE(1422), + [sym_unsafe_block] = STATE(1518), + [sym_async_block] = STATE(1518), + [sym_gen_block] = STATE(1518), + [sym_try_block] = STATE(1518), + [sym_block] = STATE(1518), + [sym__literal] = STATE(1518), + [sym_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [sym_identifier] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_isize] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_f32] = ACTIONS(471), + [anon_sym_f64] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_str] = ACTIONS(471), + [anon_sym_char] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(475), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(355), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(479), + [anon_sym_for] = ACTIONS(361), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(367), + [anon_sym_match] = ACTIONS(369), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(479), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(377), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -61304,127 +61813,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(491), + [sym_super] = ACTIONS(493), + [sym_crate] = ACTIONS(493), + [sym_metavariable] = ACTIONS(495), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(389)] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - }, - [STATE(390)] = { - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), + [STATE(392)] = { + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), [ts_builtin_sym_end] = ACTIONS(1423), [sym_identifier] = ACTIONS(1425), [anon_sym_SEMI] = ACTIONS(1423), @@ -61533,9 +61931,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1423), [sym_float_literal] = ACTIONS(1423), }, - [STATE(391)] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), + [STATE(393)] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), [ts_builtin_sym_end] = ACTIONS(1427), [sym_identifier] = ACTIONS(1429), [anon_sym_SEMI] = ACTIONS(1427), @@ -61644,9 +62042,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1427), [sym_float_literal] = ACTIONS(1427), }, - [STATE(392)] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), + [STATE(394)] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), [ts_builtin_sym_end] = ACTIONS(1431), [sym_identifier] = ACTIONS(1433), [anon_sym_SEMI] = ACTIONS(1431), @@ -61755,9 +62153,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1431), [sym_float_literal] = ACTIONS(1431), }, - [STATE(393)] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), + [STATE(395)] = { + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), [ts_builtin_sym_end] = ACTIONS(1435), [sym_identifier] = ACTIONS(1437), [anon_sym_SEMI] = ACTIONS(1435), @@ -61866,268 +62264,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1435), [sym_float_literal] = ACTIONS(1435), }, - [STATE(394)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3006), - [sym_variadic_parameter] = STATE(3006), - [sym_parameter] = STATE(3006), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2735), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(395)] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_macro_rules_BANG] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_async] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_impl] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_mod] = ACTIONS(1443), - [anon_sym_pub] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_trait] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_unsafe] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_yield] = ACTIONS(1443), - [anon_sym_move] = ACTIONS(1443), - [anon_sym_try] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), - }, [STATE(396)] = { [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_macro_rules_BANG] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_macro_rules_BANG] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_QMARK] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1441), + [anon_sym_i8] = ACTIONS(1441), + [anon_sym_u16] = ACTIONS(1441), + [anon_sym_i16] = ACTIONS(1441), + [anon_sym_u32] = ACTIONS(1441), + [anon_sym_i32] = ACTIONS(1441), + [anon_sym_u64] = ACTIONS(1441), + [anon_sym_i64] = ACTIONS(1441), + [anon_sym_u128] = ACTIONS(1441), + [anon_sym_i128] = ACTIONS(1441), + [anon_sym_isize] = ACTIONS(1441), + [anon_sym_usize] = ACTIONS(1441), + [anon_sym_f32] = ACTIONS(1441), + [anon_sym_f64] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_str] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE_PIPE] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_PLUS_EQ] = ACTIONS(1439), + [anon_sym_DASH_EQ] = ACTIONS(1439), + [anon_sym_STAR_EQ] = ACTIONS(1439), + [anon_sym_SLASH_EQ] = ACTIONS(1439), + [anon_sym_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_CARET_EQ] = ACTIONS(1439), + [anon_sym_AMP_EQ] = ACTIONS(1439), + [anon_sym_PIPE_EQ] = ACTIONS(1439), + [anon_sym_LT_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_GT_EQ] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_gen] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_impl] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_pub] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_trait] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_unsafe] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_move] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1439), + [aux_sym_string_literal_token1] = ACTIONS(1439), + [sym_char_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_crate] = ACTIONS(1441), + [sym_metavariable] = ACTIONS(1439), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1439), + }, + [STATE(397)] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_macro_rules_BANG] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(1443), + [anon_sym_u8] = ACTIONS(1445), + [anon_sym_i8] = ACTIONS(1445), + [anon_sym_u16] = ACTIONS(1445), + [anon_sym_i16] = ACTIONS(1445), + [anon_sym_u32] = ACTIONS(1445), + [anon_sym_i32] = ACTIONS(1445), + [anon_sym_u64] = ACTIONS(1445), + [anon_sym_i64] = ACTIONS(1445), + [anon_sym_u128] = ACTIONS(1445), + [anon_sym_i128] = ACTIONS(1445), + [anon_sym_isize] = ACTIONS(1445), + [anon_sym_usize] = ACTIONS(1445), + [anon_sym_f32] = ACTIONS(1445), + [anon_sym_f64] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_str] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_PIPE_PIPE] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_GT_GT] = ACTIONS(1445), + [anon_sym_PLUS_EQ] = ACTIONS(1443), + [anon_sym_DASH_EQ] = ACTIONS(1443), + [anon_sym_STAR_EQ] = ACTIONS(1443), + [anon_sym_SLASH_EQ] = ACTIONS(1443), + [anon_sym_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_CARET_EQ] = ACTIONS(1443), + [anon_sym_AMP_EQ] = ACTIONS(1443), + [anon_sym_PIPE_EQ] = ACTIONS(1443), + [anon_sym_LT_LT_EQ] = ACTIONS(1443), + [anon_sym_GT_GT_EQ] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1443), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1445), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_gen] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_impl] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_loop] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_pub] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_trait] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_unsafe] = ACTIONS(1445), + [anon_sym_use] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_move] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [aux_sym_string_literal_token1] = ACTIONS(1443), + [sym_char_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_crate] = ACTIONS(1445), + [sym_metavariable] = ACTIONS(1443), + [sym__raw_string_literal_start] = ACTIONS(1443), + [sym_float_literal] = ACTIONS(1443), + }, + [STATE(398)] = { + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_macro_rules_BANG] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1451), - [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(1447), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_u8] = ACTIONS(1449), + [anon_sym_i8] = ACTIONS(1449), + [anon_sym_u16] = ACTIONS(1449), + [anon_sym_i16] = ACTIONS(1449), + [anon_sym_u32] = ACTIONS(1449), + [anon_sym_i32] = ACTIONS(1449), + [anon_sym_u64] = ACTIONS(1449), + [anon_sym_i64] = ACTIONS(1449), + [anon_sym_u128] = ACTIONS(1449), + [anon_sym_i128] = ACTIONS(1449), + [anon_sym_isize] = ACTIONS(1449), + [anon_sym_usize] = ACTIONS(1449), + [anon_sym_f32] = ACTIONS(1449), + [anon_sym_f64] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_str] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(1449), [anon_sym_PERCENT] = ACTIONS(1449), [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), [anon_sym_LT_LT] = ACTIONS(1449), [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1447), + [anon_sym_DASH_EQ] = ACTIONS(1447), + [anon_sym_STAR_EQ] = ACTIONS(1447), + [anon_sym_SLASH_EQ] = ACTIONS(1447), + [anon_sym_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_CARET_EQ] = ACTIONS(1447), + [anon_sym_AMP_EQ] = ACTIONS(1447), + [anon_sym_PIPE_EQ] = ACTIONS(1447), + [anon_sym_LT_LT_EQ] = ACTIONS(1447), + [anon_sym_GT_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [anon_sym_COLON_COLON] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_gen] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_impl] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(1449), + [anon_sym_loop] = ACTIONS(1449), + [anon_sym_match] = ACTIONS(1449), + [anon_sym_mod] = ACTIONS(1449), + [anon_sym_pub] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_trait] = ACTIONS(1449), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_unsafe] = ACTIONS(1449), + [anon_sym_use] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_yield] = ACTIONS(1449), + [anon_sym_move] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1447), + [aux_sym_string_literal_token1] = ACTIONS(1447), + [sym_char_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1449), + [sym_super] = ACTIONS(1449), + [sym_crate] = ACTIONS(1449), + [sym_metavariable] = ACTIONS(1447), + [sym__raw_string_literal_start] = ACTIONS(1447), + [sym_float_literal] = ACTIONS(1447), + }, + [STATE(399)] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_macro_rules_BANG] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1453), + [anon_sym_i8] = ACTIONS(1453), + [anon_sym_u16] = ACTIONS(1453), + [anon_sym_i16] = ACTIONS(1453), + [anon_sym_u32] = ACTIONS(1453), + [anon_sym_i32] = ACTIONS(1453), + [anon_sym_u64] = ACTIONS(1453), + [anon_sym_i64] = ACTIONS(1453), + [anon_sym_u128] = ACTIONS(1453), + [anon_sym_i128] = ACTIONS(1453), + [anon_sym_isize] = ACTIONS(1453), + [anon_sym_usize] = ACTIONS(1453), + [anon_sym_f32] = ACTIONS(1453), + [anon_sym_f64] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_str] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1453), [anon_sym_PLUS_EQ] = ACTIONS(1451), [anon_sym_DASH_EQ] = ACTIONS(1451), [anon_sym_STAR_EQ] = ACTIONS(1451), @@ -62138,397 +62647,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1451), [anon_sym_LT_LT_EQ] = ACTIONS(1451), [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1453), [anon_sym_EQ_EQ] = ACTIONS(1451), [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1453), [anon_sym_GT_EQ] = ACTIONS(1451), [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_gen] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_impl] = ACTIONS(1447), - [anon_sym_let] = ACTIONS(1447), - [anon_sym_loop] = ACTIONS(1447), - [anon_sym_match] = ACTIONS(1447), - [anon_sym_mod] = ACTIONS(1447), - [anon_sym_pub] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_trait] = ACTIONS(1447), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_unsafe] = ACTIONS(1447), - [anon_sym_use] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1447), - [anon_sym_move] = ACTIONS(1447), - [anon_sym_try] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1445), - [aux_sym_string_literal_token1] = ACTIONS(1445), - [sym_char_literal] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_crate] = ACTIONS(1447), - [sym_metavariable] = ACTIONS(1445), - [sym__raw_string_literal_start] = ACTIONS(1445), - [sym_float_literal] = ACTIONS(1445), - }, - [STATE(397)] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1453), - [sym_identifier] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_macro_rules_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_PLUS_EQ] = ACTIONS(1453), - [anon_sym_DASH_EQ] = ACTIONS(1453), - [anon_sym_STAR_EQ] = ACTIONS(1453), - [anon_sym_SLASH_EQ] = ACTIONS(1453), - [anon_sym_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_CARET_EQ] = ACTIONS(1453), - [anon_sym_AMP_EQ] = ACTIONS(1453), - [anon_sym_PIPE_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_EQ] = ACTIONS(1453), - [anon_sym_GT_GT_EQ] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1455), - [anon_sym_async] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_impl] = ACTIONS(1455), - [anon_sym_let] = ACTIONS(1455), - [anon_sym_loop] = ACTIONS(1455), - [anon_sym_match] = ACTIONS(1455), - [anon_sym_mod] = ACTIONS(1455), - [anon_sym_pub] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_trait] = ACTIONS(1455), - [anon_sym_type] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_unsafe] = ACTIONS(1455), - [anon_sym_use] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), - }, - [STATE(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1457), - [sym_identifier] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_macro_rules_BANG] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1459), - [anon_sym_i8] = ACTIONS(1459), - [anon_sym_u16] = ACTIONS(1459), - [anon_sym_i16] = ACTIONS(1459), - [anon_sym_u32] = ACTIONS(1459), - [anon_sym_i32] = ACTIONS(1459), - [anon_sym_u64] = ACTIONS(1459), - [anon_sym_i64] = ACTIONS(1459), - [anon_sym_u128] = ACTIONS(1459), - [anon_sym_i128] = ACTIONS(1459), - [anon_sym_isize] = ACTIONS(1459), - [anon_sym_usize] = ACTIONS(1459), - [anon_sym_f32] = ACTIONS(1459), - [anon_sym_f64] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_str] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_async] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1459), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_gen] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_impl] = ACTIONS(1459), - [anon_sym_let] = ACTIONS(1459), - [anon_sym_loop] = ACTIONS(1459), - [anon_sym_match] = ACTIONS(1459), - [anon_sym_mod] = ACTIONS(1459), - [anon_sym_pub] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_trait] = ACTIONS(1459), - [anon_sym_type] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1459), - [anon_sym_use] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_move] = ACTIONS(1459), - [anon_sym_try] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym__raw_string_literal_start] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), - }, - [STATE(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1461), - [sym_identifier] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_macro_rules_BANG] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_u8] = ACTIONS(1463), - [anon_sym_i8] = ACTIONS(1463), - [anon_sym_u16] = ACTIONS(1463), - [anon_sym_i16] = ACTIONS(1463), - [anon_sym_u32] = ACTIONS(1463), - [anon_sym_i32] = ACTIONS(1463), - [anon_sym_u64] = ACTIONS(1463), - [anon_sym_i64] = ACTIONS(1463), - [anon_sym_u128] = ACTIONS(1463), - [anon_sym_i128] = ACTIONS(1463), - [anon_sym_isize] = ACTIONS(1463), - [anon_sym_usize] = ACTIONS(1463), - [anon_sym_f32] = ACTIONS(1463), - [anon_sym_f64] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_str] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_as] = ACTIONS(1463), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_gen] = ACTIONS(1463), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_impl] = ACTIONS(1463), - [anon_sym_let] = ACTIONS(1463), - [anon_sym_loop] = ACTIONS(1463), - [anon_sym_match] = ACTIONS(1463), - [anon_sym_mod] = ACTIONS(1463), - [anon_sym_pub] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_struct] = ACTIONS(1463), - [anon_sym_trait] = ACTIONS(1463), - [anon_sym_type] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_unsafe] = ACTIONS(1463), - [anon_sym_use] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_extern] = ACTIONS(1463), - [anon_sym_yield] = ACTIONS(1463), - [anon_sym_move] = ACTIONS(1463), - [anon_sym_try] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1461), - [aux_sym_string_literal_token1] = ACTIONS(1461), - [sym_char_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [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(1461), - [sym__raw_string_literal_start] = ACTIONS(1461), - [sym_float_literal] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1451), + [anon_sym_POUND] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1453), + [anon_sym_as] = ACTIONS(1453), + [anon_sym_async] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_gen] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_impl] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mod] = ACTIONS(1453), + [anon_sym_pub] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_struct] = ACTIONS(1453), + [anon_sym_trait] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_union] = ACTIONS(1453), + [anon_sym_unsafe] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_yield] = ACTIONS(1453), + [anon_sym_move] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1451), + [aux_sym_string_literal_token1] = ACTIONS(1451), + [sym_char_literal] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1453), + [sym_super] = ACTIONS(1453), + [sym_crate] = ACTIONS(1453), + [sym_metavariable] = ACTIONS(1451), + [sym__raw_string_literal_start] = ACTIONS(1451), + [sym_float_literal] = ACTIONS(1451), }, [STATE(400)] = { [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_macro_rules_BANG] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1455), + [anon_sym_DASH_EQ] = ACTIONS(1455), + [anon_sym_STAR_EQ] = ACTIONS(1455), + [anon_sym_SLASH_EQ] = ACTIONS(1455), + [anon_sym_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_CARET_EQ] = ACTIONS(1455), + [anon_sym_AMP_EQ] = ACTIONS(1455), + [anon_sym_PIPE_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_gen] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_impl] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_loop] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_mod] = ACTIONS(1457), + [anon_sym_pub] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_trait] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_unsafe] = ACTIONS(1457), + [anon_sym_use] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_crate] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym__raw_string_literal_start] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), + }, + [STATE(401)] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_macro_rules_BANG] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1461), + [anon_sym_i8] = ACTIONS(1461), + [anon_sym_u16] = ACTIONS(1461), + [anon_sym_i16] = ACTIONS(1461), + [anon_sym_u32] = ACTIONS(1461), + [anon_sym_i32] = ACTIONS(1461), + [anon_sym_u64] = ACTIONS(1461), + [anon_sym_i64] = ACTIONS(1461), + [anon_sym_u128] = ACTIONS(1461), + [anon_sym_i128] = ACTIONS(1461), + [anon_sym_isize] = ACTIONS(1461), + [anon_sym_usize] = ACTIONS(1461), + [anon_sym_f32] = ACTIONS(1461), + [anon_sym_f64] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_str] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_PLUS_EQ] = ACTIONS(1459), + [anon_sym_DASH_EQ] = ACTIONS(1459), + [anon_sym_STAR_EQ] = ACTIONS(1459), + [anon_sym_SLASH_EQ] = ACTIONS(1459), + [anon_sym_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_CARET_EQ] = ACTIONS(1459), + [anon_sym_AMP_EQ] = ACTIONS(1459), + [anon_sym_PIPE_EQ] = ACTIONS(1459), + [anon_sym_LT_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_GT_EQ] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_async] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_gen] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_impl] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_loop] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_mod] = ACTIONS(1461), + [anon_sym_pub] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_unsafe] = ACTIONS(1461), + [anon_sym_use] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_yield] = ACTIONS(1461), + [anon_sym_move] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1459), + [aux_sym_string_literal_token1] = ACTIONS(1459), + [sym_char_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1461), + [sym_crate] = ACTIONS(1461), + [sym_metavariable] = ACTIONS(1459), + [sym__raw_string_literal_start] = ACTIONS(1459), + [sym_float_literal] = ACTIONS(1459), + }, + [STATE(402)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3080), + [sym_variadic_parameter] = STATE(3080), + [sym_parameter] = STATE(3080), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2781), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(403)] = { + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), [ts_builtin_sym_end] = ACTIONS(1465), [sym_identifier] = ACTIONS(1467), [anon_sym_SEMI] = ACTIONS(1465), @@ -62623,611 +63132,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_move] = ACTIONS(1467), [anon_sym_try] = ACTIONS(1467), [sym_integer_literal] = ACTIONS(1465), - [aux_sym_string_literal_token1] = ACTIONS(1465), - [sym_char_literal] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [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(1465), - [sym__raw_string_literal_start] = ACTIONS(1465), - [sym_float_literal] = ACTIONS(1465), - }, - [STATE(401)] = { - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [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), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), [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), - }, - [STATE(402)] = { - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1469), - [sym_identifier] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_macro_rules_BANG] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_u8] = ACTIONS(1471), - [anon_sym_i8] = ACTIONS(1471), - [anon_sym_u16] = ACTIONS(1471), - [anon_sym_i16] = ACTIONS(1471), - [anon_sym_u32] = ACTIONS(1471), - [anon_sym_i32] = ACTIONS(1471), - [anon_sym_u64] = ACTIONS(1471), - [anon_sym_i64] = ACTIONS(1471), - [anon_sym_u128] = ACTIONS(1471), - [anon_sym_i128] = ACTIONS(1471), - [anon_sym_isize] = ACTIONS(1471), - [anon_sym_usize] = ACTIONS(1471), - [anon_sym_f32] = ACTIONS(1471), - [anon_sym_f64] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_str] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(1471), - [anon_sym_PLUS_EQ] = ACTIONS(1469), - [anon_sym_DASH_EQ] = ACTIONS(1469), - [anon_sym_STAR_EQ] = ACTIONS(1469), - [anon_sym_SLASH_EQ] = ACTIONS(1469), - [anon_sym_PERCENT_EQ] = ACTIONS(1469), - [anon_sym_CARET_EQ] = ACTIONS(1469), - [anon_sym_AMP_EQ] = ACTIONS(1469), - [anon_sym_PIPE_EQ] = ACTIONS(1469), - [anon_sym_LT_LT_EQ] = ACTIONS(1469), - [anon_sym_GT_GT_EQ] = ACTIONS(1469), - [anon_sym_EQ] = ACTIONS(1471), - [anon_sym_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), - [anon_sym_COLON_COLON] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_as] = ACTIONS(1471), - [anon_sym_async] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_gen] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_impl] = ACTIONS(1471), - [anon_sym_let] = ACTIONS(1471), - [anon_sym_loop] = ACTIONS(1471), - [anon_sym_match] = ACTIONS(1471), - [anon_sym_mod] = ACTIONS(1471), - [anon_sym_pub] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_struct] = ACTIONS(1471), - [anon_sym_trait] = ACTIONS(1471), - [anon_sym_type] = ACTIONS(1471), - [anon_sym_union] = ACTIONS(1471), - [anon_sym_unsafe] = ACTIONS(1471), - [anon_sym_use] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym_yield] = ACTIONS(1471), - [anon_sym_move] = ACTIONS(1471), - [anon_sym_try] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1469), - [aux_sym_string_literal_token1] = ACTIONS(1469), - [sym_char_literal] = ACTIONS(1469), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_crate] = ACTIONS(1471), - [sym_metavariable] = ACTIONS(1469), - [sym__raw_string_literal_start] = ACTIONS(1469), - [sym_float_literal] = ACTIONS(1469), - }, - [STATE(403)] = { - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_identifier] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_macro_rules_BANG] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_u8] = ACTIONS(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1473), - [anon_sym_DASH_EQ] = ACTIONS(1473), - [anon_sym_STAR_EQ] = ACTIONS(1473), - [anon_sym_SLASH_EQ] = ACTIONS(1473), - [anon_sym_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_CARET_EQ] = ACTIONS(1473), - [anon_sym_AMP_EQ] = ACTIONS(1473), - [anon_sym_PIPE_EQ] = ACTIONS(1473), - [anon_sym_LT_LT_EQ] = ACTIONS(1473), - [anon_sym_GT_GT_EQ] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1473), - [anon_sym_BANG_EQ] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_as] = ACTIONS(1475), - [anon_sym_async] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_gen] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_impl] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), - [anon_sym_loop] = ACTIONS(1475), - [anon_sym_match] = ACTIONS(1475), - [anon_sym_mod] = ACTIONS(1475), - [anon_sym_pub] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_trait] = ACTIONS(1475), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_unsafe] = ACTIONS(1475), - [anon_sym_use] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1475), - [anon_sym_move] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1473), - [aux_sym_string_literal_token1] = ACTIONS(1473), - [sym_char_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), }, [STATE(404)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3202), + [sym_variadic_parameter] = STATE(3202), + [sym_parameter] = STATE(3202), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3000), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1477), - [sym_identifier] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_macro_rules_BANG] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1479), - [anon_sym_i8] = ACTIONS(1479), - [anon_sym_u16] = ACTIONS(1479), - [anon_sym_i16] = ACTIONS(1479), - [anon_sym_u32] = ACTIONS(1479), - [anon_sym_i32] = ACTIONS(1479), - [anon_sym_u64] = ACTIONS(1479), - [anon_sym_i64] = ACTIONS(1479), - [anon_sym_u128] = ACTIONS(1479), - [anon_sym_i128] = ACTIONS(1479), - [anon_sym_isize] = ACTIONS(1479), - [anon_sym_usize] = ACTIONS(1479), - [anon_sym_f32] = ACTIONS(1479), - [anon_sym_f64] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_str] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_async] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_gen] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_impl] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_mod] = ACTIONS(1479), - [anon_sym_pub] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_trait] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_unsafe] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_move] = ACTIONS(1479), - [anon_sym_try] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [aux_sym_string_literal_token1] = ACTIONS(1477), - [sym_char_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym__raw_string_literal_start] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(405)] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_macro_rules_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_async] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_impl] = ACTIONS(1483), - [anon_sym_let] = ACTIONS(1483), - [anon_sym_loop] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_pub] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_trait] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_unsafe] = ACTIONS(1483), - [anon_sym_use] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_move] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_macro_rules_BANG] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_macro_rules_BANG] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_async] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_impl] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_loop] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [anon_sym_mod] = ACTIONS(1477), + [anon_sym_pub] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(1477), + [anon_sym_trait] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_unsafe] = ACTIONS(1477), + [anon_sym_use] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_extern] = ACTIONS(1477), + [anon_sym_yield] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1477), + [anon_sym_try] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), + }, + [STATE(407)] = { + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_macro_rules_BANG] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1481), [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1481), + [anon_sym_i8] = ACTIONS(1481), + [anon_sym_u16] = ACTIONS(1481), + [anon_sym_i16] = ACTIONS(1481), + [anon_sym_u32] = ACTIONS(1481), + [anon_sym_i32] = ACTIONS(1481), + [anon_sym_u64] = ACTIONS(1481), + [anon_sym_i64] = ACTIONS(1481), + [anon_sym_u128] = ACTIONS(1481), + [anon_sym_i128] = ACTIONS(1481), + [anon_sym_isize] = ACTIONS(1481), + [anon_sym_usize] = ACTIONS(1481), + [anon_sym_f32] = ACTIONS(1481), + [anon_sym_f64] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_str] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), [anon_sym_AMP_AMP] = ACTIONS(1485), [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), [anon_sym_PLUS_EQ] = ACTIONS(1485), [anon_sym_DASH_EQ] = ACTIONS(1485), [anon_sym_STAR_EQ] = ACTIONS(1485), @@ -63238,287 +63527,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1485), [anon_sym_LT_LT_EQ] = ACTIONS(1485), [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1483), [anon_sym_EQ_EQ] = ACTIONS(1485), [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1481), [anon_sym_GT_EQ] = ACTIONS(1485), [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1481), [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_impl] = ACTIONS(1487), - [anon_sym_let] = ACTIONS(1487), - [anon_sym_loop] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_mod] = ACTIONS(1487), - [anon_sym_pub] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_trait] = ACTIONS(1487), - [anon_sym_type] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_unsafe] = ACTIONS(1487), - [anon_sym_use] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_move] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), - }, - [STATE(407)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3084), - [sym_variadic_parameter] = STATE(3084), - [sym_parameter] = STATE(3084), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2802), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_enum] = ACTIONS(1481), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_gen] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_impl] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_loop] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_pub] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_struct] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_union] = ACTIONS(1481), + [anon_sym_unsafe] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1481), + [anon_sym_yield] = ACTIONS(1481), + [anon_sym_move] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1479), + [aux_sym_string_literal_token1] = ACTIONS(1479), + [sym_char_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1479), + [sym__raw_string_literal_start] = ACTIONS(1479), + [sym_float_literal] = ACTIONS(1479), }, [STATE(408)] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_macro_rules_BANG] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_move] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_macro_rules_BANG] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_extern] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_move] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym_metavariable] = ACTIONS(1039), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1051), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), }, [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_macro_rules_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_gen] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_impl] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_mod] = ACTIONS(1489), + [anon_sym_pub] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_trait] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_move] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_crate] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym__raw_string_literal_start] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), + }, + [STATE(410)] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), [ts_builtin_sym_end] = ACTIONS(1491), [sym_identifier] = ACTIONS(1493), [anon_sym_SEMI] = ACTIONS(1491), @@ -63626,1109 +63915,1219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1491), [sym_float_literal] = ACTIONS(1491), }, - [STATE(410)] = { - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_macro_rules_BANG] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1495), - [anon_sym_LT_LT] = ACTIONS(1497), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_gen] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_impl] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_mod] = ACTIONS(1497), - [anon_sym_pub] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_trait] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_unsafe] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_move] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym__raw_string_literal_start] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), - }, [STATE(411)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(2905), + [sym_variadic_parameter] = STATE(2905), + [sym_parameter] = STATE(2905), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_macro_rules_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP_AMP] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_gen] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_impl] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_unsafe] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_move] = ACTIONS(1501), - [anon_sym_try] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym__raw_string_literal_start] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_macro_rules_BANG] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_unsafe] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_QMARK] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1497), + [anon_sym_DASH_EQ] = ACTIONS(1497), + [anon_sym_STAR_EQ] = ACTIONS(1497), + [anon_sym_SLASH_EQ] = ACTIONS(1497), + [anon_sym_PERCENT_EQ] = ACTIONS(1497), + [anon_sym_CARET_EQ] = ACTIONS(1497), + [anon_sym_AMP_EQ] = ACTIONS(1497), + [anon_sym_PIPE_EQ] = ACTIONS(1497), + [anon_sym_LT_LT_EQ] = ACTIONS(1497), + [anon_sym_GT_GT_EQ] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1501), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1501), + [anon_sym_DASH_EQ] = ACTIONS(1501), + [anon_sym_STAR_EQ] = ACTIONS(1501), + [anon_sym_SLASH_EQ] = ACTIONS(1501), + [anon_sym_PERCENT_EQ] = ACTIONS(1501), + [anon_sym_CARET_EQ] = ACTIONS(1501), + [anon_sym_AMP_EQ] = ACTIONS(1501), + [anon_sym_PIPE_EQ] = ACTIONS(1501), + [anon_sym_LT_LT_EQ] = ACTIONS(1501), + [anon_sym_GT_GT_EQ] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), }, [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_macro_rules_BANG] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PERCENT_EQ] = ACTIONS(1511), - [anon_sym_CARET_EQ] = ACTIONS(1511), - [anon_sym_AMP_EQ] = ACTIONS(1511), - [anon_sym_PIPE_EQ] = ACTIONS(1511), - [anon_sym_LT_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_GT_EQ] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_as] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_gen] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_impl] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_loop] = ACTIONS(1513), - [anon_sym_match] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_pub] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_trait] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsafe] = ACTIONS(1513), - [anon_sym_use] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_yield] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym__raw_string_literal_start] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_macro_rules_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_unsafe] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_yield] = ACTIONS(1507), + [anon_sym_move] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), }, [STATE(415)] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_identifier] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_macro_rules_BANG] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_PERCENT] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_PIPE_PIPE] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1517), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PERCENT_EQ] = ACTIONS(1515), - [anon_sym_CARET_EQ] = ACTIONS(1515), - [anon_sym_AMP_EQ] = ACTIONS(1515), - [anon_sym_PIPE_EQ] = ACTIONS(1515), - [anon_sym_LT_LT_EQ] = ACTIONS(1515), - [anon_sym_GT_GT_EQ] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1515), - [anon_sym_BANG_EQ] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_GT_EQ] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_gen] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_impl] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_mod] = ACTIONS(1517), - [anon_sym_pub] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_trait] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_unsafe] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_yield] = ACTIONS(1517), - [anon_sym_move] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym__raw_string_literal_start] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_macro_rules_BANG] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_async] = ACTIONS(1511), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1511), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1511), + [anon_sym_impl] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), + [anon_sym_loop] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mod] = ACTIONS(1511), + [anon_sym_pub] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_struct] = ACTIONS(1511), + [anon_sym_trait] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_unsafe] = ACTIONS(1511), + [anon_sym_use] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1511), + [anon_sym_extern] = ACTIONS(1511), + [anon_sym_yield] = ACTIONS(1511), + [anon_sym_move] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), }, [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [ts_builtin_sym_end] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_macro_rules_BANG] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_async] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1515), + [anon_sym_for] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_impl] = ACTIONS(1515), + [anon_sym_let] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1515), + [anon_sym_match] = ACTIONS(1515), + [anon_sym_mod] = ACTIONS(1515), + [anon_sym_pub] = ACTIONS(1515), + [anon_sym_return] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1515), + [anon_sym_struct] = ACTIONS(1515), + [anon_sym_trait] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_unsafe] = ACTIONS(1515), + [anon_sym_use] = ACTIONS(1515), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_extern] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(1515), + [anon_sym_move] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), }, [STATE(417)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3163), - [sym_variadic_parameter] = STATE(3163), - [sym_parameter] = STATE(3163), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_macro_rules_BANG] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PERCENT_EQ] = ACTIONS(1517), + [anon_sym_CARET_EQ] = ACTIONS(1517), + [anon_sym_AMP_EQ] = ACTIONS(1517), + [anon_sym_PIPE_EQ] = ACTIONS(1517), + [anon_sym_LT_LT_EQ] = ACTIONS(1517), + [anon_sym_GT_GT_EQ] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1517), + [anon_sym_BANG_EQ] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_GT_EQ] = ACTIONS(1517), + [anon_sym_LT_EQ] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_gen] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_impl] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_mod] = ACTIONS(1519), + [anon_sym_pub] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_struct] = ACTIONS(1519), + [anon_sym_trait] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_unsafe] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_yield] = ACTIONS(1519), + [anon_sym_move] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym__raw_string_literal_start] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), }, [STATE(418)] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_macro_rules_BANG] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_async] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_enum] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_impl] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_mod] = ACTIONS(1527), - [anon_sym_pub] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_trait] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_unsafe] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_move] = ACTIONS(1527), - [anon_sym_try] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1485), + [anon_sym_BANG_EQ] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_gen] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_yield] = ACTIONS(1523), + [anon_sym_move] = ACTIONS(1523), + [anon_sym_try] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), }, [STATE(419)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2908), - [sym_variadic_parameter] = STATE(2908), - [sym_parameter] = STATE(2908), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2666), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1055), + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_macro_rules_BANG] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_AMP_AMP] = ACTIONS(1055), + [anon_sym_PIPE_PIPE] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_PLUS_EQ] = ACTIONS(1055), + [anon_sym_DASH_EQ] = ACTIONS(1055), + [anon_sym_STAR_EQ] = ACTIONS(1055), + [anon_sym_SLASH_EQ] = ACTIONS(1055), + [anon_sym_PERCENT_EQ] = ACTIONS(1055), + [anon_sym_CARET_EQ] = ACTIONS(1055), + [anon_sym_AMP_EQ] = ACTIONS(1055), + [anon_sym_PIPE_EQ] = ACTIONS(1055), + [anon_sym_LT_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_GT_EQ] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_gen] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_impl] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_loop] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_pub] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [anon_sym_extern] = ACTIONS(1053), + [anon_sym_yield] = ACTIONS(1053), + [anon_sym_move] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_crate] = ACTIONS(1053), + [sym_metavariable] = ACTIONS(1055), + [sym__raw_string_literal_start] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), }, [STATE(420)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_self_parameter] = STATE(3005), + [sym_variadic_parameter] = STATE(3005), + [sym_parameter] = STATE(3005), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(2869), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1121), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1129), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(421)] = { + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_macro_rules_BANG] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_unsafe] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), + }, + [STATE(422)] = { + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), [ts_builtin_sym_end] = ACTIONS(1531), [sym_identifier] = ACTIONS(1533), [anon_sym_SEMI] = ACTIONS(1531), @@ -64836,9 +65235,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1531), [sym_float_literal] = ACTIONS(1531), }, - [STATE(421)] = { - [sym_line_comment] = STATE(421), - [sym_block_comment] = STATE(421), + [STATE(423)] = { + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), [ts_builtin_sym_end] = ACTIONS(1535), [sym_identifier] = ACTIONS(1537), [anon_sym_SEMI] = ACTIONS(1535), @@ -64946,9 +65345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1535), [sym_float_literal] = ACTIONS(1535), }, - [STATE(422)] = { - [sym_line_comment] = STATE(422), - [sym_block_comment] = STATE(422), + [STATE(424)] = { + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), [ts_builtin_sym_end] = ACTIONS(1539), [sym_identifier] = ACTIONS(1541), [anon_sym_SEMI] = ACTIONS(1539), @@ -65056,592 +65455,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1539), [sym_float_literal] = ACTIONS(1539), }, - [STATE(423)] = { - [sym_line_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), - }, - [STATE(424)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_macro_rules_BANG] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_pub] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_trait] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_move] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1485), + [anon_sym_BANG_EQ] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_gen] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_yield] = ACTIONS(1523), + [anon_sym_move] = ACTIONS(1523), + [anon_sym_try] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), }, [STATE(427)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3146), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3399), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2580), + [sym_scoped_identifier] = STATE(2257), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2758), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1557), + [anon_sym_COLON_COLON] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1563), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_crate] = ACTIONS(1565), + [sym_metavariable] = ACTIONS(1567), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(428)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2165), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(429)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [sym_identifier] = ACTIONS(1293), [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(1299), [anon_sym_i8] = ACTIONS(1299), [anon_sym_u16] = ACTIONS(1299), @@ -65659,201 +65956,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1299), [anon_sym_str] = ACTIONS(1299), [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1111), [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), [sym_super] = ACTIONS(1315), [sym_crate] = ACTIONS(1315), [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(429)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2165), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [sym_identifier] = ACTIONS(1293), [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(1299), [anon_sym_i8] = ACTIONS(1299), [anon_sym_u16] = ACTIONS(1299), @@ -65871,307 +66062,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1299), [anon_sym_str] = ACTIONS(1299), [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1111), [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1315), [sym_super] = ACTIONS(1315), [sym_crate] = ACTIONS(1315), [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(431)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3658), [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(433)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [sym_identifier] = ACTIONS(1293), [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(1299), [anon_sym_i8] = ACTIONS(1299), [anon_sym_u16] = ACTIONS(1299), @@ -66189,95 +66274,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1299), [anon_sym_str] = ACTIONS(1299), [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1111), [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), + [sym_self] = ACTIONS(1315), [sym_super] = ACTIONS(1315), [sym_crate] = ACTIONS(1315), [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(433)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1583), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1131), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3666), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2576), + [sym_scoped_identifier] = STATE(2182), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2165), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2280), [sym_identifier] = ACTIONS(1293), [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(1299), [anon_sym_i8] = ACTIONS(1299), [anon_sym_u16] = ACTIONS(1299), @@ -66295,274 +66486,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1299), [anon_sym_str] = ACTIONS(1299), [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1111), [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), + [sym_self] = ACTIONS(1585), [sym_super] = ACTIONS(1315), [sym_crate] = ACTIONS(1315), [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(435)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3658), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2538), + [sym_scoped_identifier] = STATE(2290), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2165), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [sym_identifier] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_RBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_QMARK] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1585), - [anon_sym_i8] = ACTIONS(1585), - [anon_sym_u16] = ACTIONS(1585), - [anon_sym_i16] = ACTIONS(1585), - [anon_sym_u32] = ACTIONS(1585), - [anon_sym_i32] = ACTIONS(1585), - [anon_sym_u64] = ACTIONS(1585), - [anon_sym_i64] = ACTIONS(1585), - [anon_sym_u128] = ACTIONS(1585), - [anon_sym_i128] = ACTIONS(1585), - [anon_sym_isize] = ACTIONS(1585), - [anon_sym_usize] = ACTIONS(1585), - [anon_sym_f32] = ACTIONS(1585), - [anon_sym_f64] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_str] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_PERCENT] = ACTIONS(1585), - [anon_sym_CARET] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_PIPE_PIPE] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1585), - [anon_sym_GT_GT] = ACTIONS(1585), - [anon_sym_PLUS_EQ] = ACTIONS(1587), - [anon_sym_DASH_EQ] = ACTIONS(1587), - [anon_sym_STAR_EQ] = ACTIONS(1587), - [anon_sym_SLASH_EQ] = ACTIONS(1587), - [anon_sym_PERCENT_EQ] = ACTIONS(1587), - [anon_sym_CARET_EQ] = ACTIONS(1587), - [anon_sym_AMP_EQ] = ACTIONS(1587), - [anon_sym_PIPE_EQ] = ACTIONS(1587), - [anon_sym_LT_LT_EQ] = ACTIONS(1587), - [anon_sym_GT_GT_EQ] = ACTIONS(1587), - [anon_sym_EQ] = ACTIONS(1585), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_gen] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_unsafe] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [aux_sym_string_literal_token1] = ACTIONS(1587), - [sym_char_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_crate] = ACTIONS(1585), - [sym_metavariable] = ACTIONS(1587), - [sym__raw_string_literal_start] = ACTIONS(1587), - [sym_float_literal] = ACTIONS(1587), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1109), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1131), + [sym_super] = ACTIONS(1131), + [sym_crate] = ACTIONS(1131), + [sym_metavariable] = ACTIONS(1133), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(436)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3399), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2580), + [sym_scoped_identifier] = STATE(2257), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [sym_identifier] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_EQ_GT] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_QMARK] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1585), - [anon_sym_i8] = ACTIONS(1585), - [anon_sym_u16] = ACTIONS(1585), - [anon_sym_i16] = ACTIONS(1585), - [anon_sym_u32] = ACTIONS(1585), - [anon_sym_i32] = ACTIONS(1585), - [anon_sym_u64] = ACTIONS(1585), - [anon_sym_i64] = ACTIONS(1585), - [anon_sym_u128] = ACTIONS(1585), - [anon_sym_i128] = ACTIONS(1585), - [anon_sym_isize] = ACTIONS(1585), - [anon_sym_usize] = ACTIONS(1585), - [anon_sym_f32] = ACTIONS(1585), - [anon_sym_f64] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_str] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_PERCENT] = ACTIONS(1585), - [anon_sym_CARET] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_PIPE_PIPE] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1585), - [anon_sym_GT_GT] = ACTIONS(1585), - [anon_sym_PLUS_EQ] = ACTIONS(1587), - [anon_sym_DASH_EQ] = ACTIONS(1587), - [anon_sym_STAR_EQ] = ACTIONS(1587), - [anon_sym_SLASH_EQ] = ACTIONS(1587), - [anon_sym_PERCENT_EQ] = ACTIONS(1587), - [anon_sym_CARET_EQ] = ACTIONS(1587), - [anon_sym_AMP_EQ] = ACTIONS(1587), - [anon_sym_PIPE_EQ] = ACTIONS(1587), - [anon_sym_LT_LT_EQ] = ACTIONS(1587), - [anon_sym_GT_GT_EQ] = ACTIONS(1587), - [anon_sym_EQ] = ACTIONS(1585), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_gen] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_unsafe] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [aux_sym_string_literal_token1] = ACTIONS(1587), - [sym_char_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_crate] = ACTIONS(1585), - [sym_metavariable] = ACTIONS(1587), - [sym__raw_string_literal_start] = ACTIONS(1587), - [sym_float_literal] = ACTIONS(1587), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1563), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1587), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_crate] = ACTIONS(1565), + [sym_metavariable] = ACTIONS(1567), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3399), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2580), + [sym_scoped_identifier] = STATE(2257), + [sym_scoped_type_identifier] = STATE(2166), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2165), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1563), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_ref] = ACTIONS(1117), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_crate] = ACTIONS(1565), + [sym_metavariable] = ACTIONS(1567), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(438)] = { + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), [sym_identifier] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_RBRACK] = ACTIONS(1591), [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_COLON] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_QMARK] = ACTIONS(1591), [anon_sym_u8] = ACTIONS(1589), [anon_sym_i8] = ACTIONS(1589), [anon_sym_u16] = ACTIONS(1589), @@ -66581,16 +66875,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1589), [anon_sym_char] = ACTIONS(1589), [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym__] = ACTIONS(1589), + [anon_sym_SLASH] = ACTIONS(1589), + [anon_sym_PERCENT] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_PIPE_PIPE] = ACTIONS(1591), + [anon_sym_LT_LT] = ACTIONS(1589), + [anon_sym_GT_GT] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1591), + [anon_sym_DASH_EQ] = ACTIONS(1591), + [anon_sym_STAR_EQ] = ACTIONS(1591), + [anon_sym_SLASH_EQ] = ACTIONS(1591), + [anon_sym_PERCENT_EQ] = ACTIONS(1591), + [anon_sym_CARET_EQ] = ACTIONS(1591), + [anon_sym_AMP_EQ] = ACTIONS(1591), + [anon_sym_PIPE_EQ] = ACTIONS(1591), + [anon_sym_LT_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_GT_EQ] = ACTIONS(1591), + [anon_sym_EQ] = ACTIONS(1589), + [anon_sym_EQ_EQ] = ACTIONS(1591), + [anon_sym_BANG_EQ] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(1589), [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1591), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1591), [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_DASH_GT] = ACTIONS(1591), [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), [anon_sym_async] = ACTIONS(1589), [anon_sym_break] = ACTIONS(1589), [anon_sym_const] = ACTIONS(1589), @@ -66606,8 +66925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1589), [anon_sym_unsafe] = ACTIONS(1589), [anon_sym_while] = ACTIONS(1589), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_else] = ACTIONS(1589), [anon_sym_yield] = ACTIONS(1589), [anon_sym_move] = ACTIONS(1589), [anon_sym_try] = ACTIONS(1589), @@ -66625,34 +66943,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1591), [sym_float_literal] = ACTIONS(1591), }, - [STATE(438)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(438), - [sym_block_comment] = STATE(438), + [STATE(439)] = { + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym_identifier] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_EQ_GT] = ACTIONS(1591), + [anon_sym_COLON] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_QMARK] = ACTIONS(1591), + [anon_sym_u8] = ACTIONS(1589), + [anon_sym_i8] = ACTIONS(1589), + [anon_sym_u16] = ACTIONS(1589), + [anon_sym_i16] = ACTIONS(1589), + [anon_sym_u32] = ACTIONS(1589), + [anon_sym_i32] = ACTIONS(1589), + [anon_sym_u64] = ACTIONS(1589), + [anon_sym_i64] = ACTIONS(1589), + [anon_sym_u128] = ACTIONS(1589), + [anon_sym_i128] = ACTIONS(1589), + [anon_sym_isize] = ACTIONS(1589), + [anon_sym_usize] = ACTIONS(1589), + [anon_sym_f32] = ACTIONS(1589), + [anon_sym_f64] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_str] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_SLASH] = ACTIONS(1589), + [anon_sym_PERCENT] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_PIPE_PIPE] = ACTIONS(1591), + [anon_sym_LT_LT] = ACTIONS(1589), + [anon_sym_GT_GT] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1591), + [anon_sym_DASH_EQ] = ACTIONS(1591), + [anon_sym_STAR_EQ] = ACTIONS(1591), + [anon_sym_SLASH_EQ] = ACTIONS(1591), + [anon_sym_PERCENT_EQ] = ACTIONS(1591), + [anon_sym_CARET_EQ] = ACTIONS(1591), + [anon_sym_AMP_EQ] = ACTIONS(1591), + [anon_sym_PIPE_EQ] = ACTIONS(1591), + [anon_sym_LT_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_GT_EQ] = ACTIONS(1591), + [anon_sym_EQ] = ACTIONS(1589), + [anon_sym_EQ_EQ] = ACTIONS(1591), + [anon_sym_BANG_EQ] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1591), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_async] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_gen] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_unsafe] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_move] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [aux_sym_string_literal_token1] = ACTIONS(1591), + [sym_char_literal] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_crate] = ACTIONS(1589), + [sym_metavariable] = ACTIONS(1591), + [sym__raw_string_literal_start] = ACTIONS(1591), + [sym_float_literal] = ACTIONS(1591), + }, + [STATE(440)] = { + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2211), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), [sym_identifier] = ACTIONS(1593), [anon_sym_LPAREN] = ACTIONS(1595), [anon_sym_LBRACK] = ACTIONS(1595), @@ -66682,7 +67096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1595), [anon_sym__] = ACTIONS(1593), [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), [anon_sym_COLON_COLON] = ACTIONS(1595), [anon_sym_DASH_GT] = ACTIONS(1595), [anon_sym_SQUOTE] = ACTIONS(1593), @@ -66701,8 +67115,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1593), [anon_sym_unsafe] = ACTIONS(1593), [anon_sym_while] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), [anon_sym_yield] = ACTIONS(1593), [anon_sym_move] = ACTIONS(1593), [anon_sym_try] = ACTIONS(1593), @@ -66720,1942 +67134,2121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1595), [sym_float_literal] = ACTIONS(1595), }, - [STATE(439)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), - }, - [STATE(440)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), - }, [STATE(441)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_u8] = ACTIONS(1597), + [anon_sym_i8] = ACTIONS(1597), + [anon_sym_u16] = ACTIONS(1597), + [anon_sym_i16] = ACTIONS(1597), + [anon_sym_u32] = ACTIONS(1597), + [anon_sym_i32] = ACTIONS(1597), + [anon_sym_u64] = ACTIONS(1597), + [anon_sym_i64] = ACTIONS(1597), + [anon_sym_u128] = ACTIONS(1597), + [anon_sym_i128] = ACTIONS(1597), + [anon_sym_isize] = ACTIONS(1597), + [anon_sym_usize] = ACTIONS(1597), + [anon_sym_f32] = ACTIONS(1597), + [anon_sym_f64] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_str] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym__] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_DASH_GT] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1597), + [anon_sym_async] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_gen] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_loop] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [anon_sym_unsafe] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_yield] = ACTIONS(1597), + [anon_sym_move] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [aux_sym_string_literal_token1] = ACTIONS(1599), + [sym_char_literal] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_crate] = ACTIONS(1597), + [sym_metavariable] = ACTIONS(1599), + [sym__raw_string_literal_start] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1599), }, [STATE(442)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1617), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(443)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1641), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1639), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1643), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1641), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1645), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1643), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1647), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1645), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1649), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1647), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1651), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1649), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1653), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1651), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1655), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1653), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2392), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2520), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2520), - [sym__literal] = STATE(2520), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2474), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2474), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2516), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2516), - [sym__literal] = STATE(2516), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2451), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2451), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2544), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2544), - [sym__literal] = STATE(2544), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2436), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2556), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2556), + [sym__literal] = STATE(2556), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2380), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2549), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2549), - [sym__literal] = STATE(2549), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2536), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2640), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2640), + [sym__literal] = STATE(2640), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(456)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3737), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2426), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2426), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2526), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2526), + [sym__literal] = STATE(2526), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(457)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3459), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2408), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2408), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2553), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2553), + [sym__literal] = STATE(2553), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(458)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3528), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2443), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2443), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_type_binding] = STATE(2527), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), + [sym_label] = STATE(3738), + [sym_block] = STATE(2527), + [sym__literal] = STATE(2527), + [sym_string_literal] = STATE(2986), + [sym_raw_string_literal] = STATE(2986), + [sym_boolean_literal] = STATE(2986), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_match_block_repeat1] = STATE(462), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_integer_literal] = ACTIONS(1633), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1633), }, [STATE(459)] = { - [sym_else_clause] = STATE(479), + [sym_else_clause] = STATE(478), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [anon_sym_u8] = ACTIONS(1395), - [anon_sym_i8] = ACTIONS(1395), - [anon_sym_u16] = ACTIONS(1395), - [anon_sym_i16] = ACTIONS(1395), - [anon_sym_u32] = ACTIONS(1395), - [anon_sym_i32] = ACTIONS(1395), - [anon_sym_u64] = ACTIONS(1395), - [anon_sym_i64] = ACTIONS(1395), - [anon_sym_u128] = ACTIONS(1395), - [anon_sym_i128] = ACTIONS(1395), - [anon_sym_isize] = ACTIONS(1395), - [anon_sym_usize] = ACTIONS(1395), - [anon_sym_f32] = ACTIONS(1395), - [anon_sym_f64] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_str] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym__] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COMMA] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1707), - [sym_mutable_specifier] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_gen] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1661), + [sym_mutable_specifier] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym__raw_string_literal_start] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), }, [STATE(460)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3527), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3580), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_match_block_repeat1] = STATE(470), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(461)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3726), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), + [aux_sym_match_block_repeat1] = STATE(464), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), + }, + [STATE(462)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3671), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), + }, + [STATE(463)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3758), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [aux_sym_match_block_repeat1] = STATE(471), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), + }, + [STATE(464)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3763), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [aux_sym_match_block_repeat1] = STATE(492), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), + }, + [STATE(465)] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), [sym_identifier] = ACTIONS(1433), [anon_sym_LPAREN] = ACTIONS(1431), [anon_sym_LBRACK] = ACTIONS(1431), @@ -68737,177 +69330,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1431), [sym_float_literal] = ACTIONS(1431), }, - [STATE(462)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3777), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(463)] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym__] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_ref] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [sym_mutable_specifier] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - }, - [STATE(464)] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), + [STATE(466)] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), [sym_identifier] = ACTIONS(1425), [anon_sym_LPAREN] = ACTIONS(1423), [anon_sym_LBRACK] = ACTIONS(1423), @@ -68989,9 +69414,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1423), [sym_float_literal] = ACTIONS(1423), }, - [STATE(465)] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), + [STATE(467)] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), [sym_identifier] = ACTIONS(1429), [anon_sym_LPAREN] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1427), @@ -69073,93 +69498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1427), [sym_float_literal] = ACTIONS(1427), }, - [STATE(466)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3580), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(467)] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), + [STATE(468)] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), [sym_identifier] = ACTIONS(1437), [anon_sym_LPAREN] = ACTIONS(1435), [anon_sym_LBRACK] = ACTIONS(1435), @@ -69241,758 +69582,1009 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1435), [sym_float_literal] = ACTIONS(1435), }, - [STATE(468)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3499), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, [STATE(469)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3469), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(470)] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PERCENT_EQ] = ACTIONS(1535), - [anon_sym_CARET_EQ] = ACTIONS(1535), - [anon_sym_AMP_EQ] = ACTIONS(1535), - [anon_sym_PIPE_EQ] = ACTIONS(1535), - [anon_sym_LT_LT_EQ] = ACTIONS(1535), - [anon_sym_GT_GT_EQ] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1537), - [sym_mutable_specifier] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [sym_block_comment] = STATE(469), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_QMARK] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1441), + [anon_sym_i8] = ACTIONS(1441), + [anon_sym_u16] = ACTIONS(1441), + [anon_sym_i16] = ACTIONS(1441), + [anon_sym_u32] = ACTIONS(1441), + [anon_sym_i32] = ACTIONS(1441), + [anon_sym_u64] = ACTIONS(1441), + [anon_sym_i64] = ACTIONS(1441), + [anon_sym_u128] = ACTIONS(1441), + [anon_sym_i128] = ACTIONS(1441), + [anon_sym_isize] = ACTIONS(1441), + [anon_sym_usize] = ACTIONS(1441), + [anon_sym_f32] = ACTIONS(1441), + [anon_sym_f64] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_str] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE_PIPE] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_PLUS_EQ] = ACTIONS(1439), + [anon_sym_DASH_EQ] = ACTIONS(1439), + [anon_sym_STAR_EQ] = ACTIONS(1439), + [anon_sym_SLASH_EQ] = ACTIONS(1439), + [anon_sym_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_CARET_EQ] = ACTIONS(1439), + [anon_sym_AMP_EQ] = ACTIONS(1439), + [anon_sym_PIPE_EQ] = ACTIONS(1439), + [anon_sym_LT_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_GT_EQ] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym__] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1439), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_gen] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_ref] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [sym_mutable_specifier] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1439), + [aux_sym_string_literal_token1] = ACTIONS(1439), + [sym_char_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_crate] = ACTIONS(1441), + [sym_metavariable] = ACTIONS(1439), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1439), + }, + [STATE(470)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3553), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [aux_sym_match_block_repeat1] = STATE(492), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(471)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3684), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1711), - [anon_sym_i8] = ACTIONS(1711), - [anon_sym_u16] = ACTIONS(1711), - [anon_sym_i16] = ACTIONS(1711), - [anon_sym_u32] = ACTIONS(1711), - [anon_sym_i32] = ACTIONS(1711), - [anon_sym_u64] = ACTIONS(1711), - [anon_sym_i64] = ACTIONS(1711), - [anon_sym_u128] = ACTIONS(1711), - [anon_sym_i128] = ACTIONS(1711), - [anon_sym_isize] = ACTIONS(1711), - [anon_sym_usize] = ACTIONS(1711), - [anon_sym_f32] = ACTIONS(1711), - [anon_sym_f64] = ACTIONS(1711), - [anon_sym_bool] = ACTIONS(1711), - [anon_sym_str] = ACTIONS(1711), - [anon_sym_char] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1711), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_gen] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1711), - [sym_mutable_specifier] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1713), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), + [aux_sym_match_block_repeat1] = STATE(492), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(472)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_match_pattern] = STATE(3570), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_last_match_arm] = STATE(3467), + [sym_match_pattern] = STATE(3507), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(627), - [sym_identifier] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym__] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_ref] = ACTIONS(1760), - [sym_mutable_specifier] = ACTIONS(1763), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1769), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_crate] = ACTIONS(1775), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1766), + [aux_sym_match_block_repeat1] = STATE(492), + [aux_sym_match_arm_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(473)] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym__] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_gen] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_ref] = ACTIONS(1493), + [sym_mutable_specifier] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym__raw_string_literal_start] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), + }, + [STATE(474)] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym_identifier] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_u8] = ACTIONS(1449), + [anon_sym_i8] = ACTIONS(1449), + [anon_sym_u16] = ACTIONS(1449), + [anon_sym_i16] = ACTIONS(1449), + [anon_sym_u32] = ACTIONS(1449), + [anon_sym_i32] = ACTIONS(1449), + [anon_sym_u64] = ACTIONS(1449), + [anon_sym_i64] = ACTIONS(1449), + [anon_sym_u128] = ACTIONS(1449), + [anon_sym_i128] = ACTIONS(1449), + [anon_sym_isize] = ACTIONS(1449), + [anon_sym_usize] = ACTIONS(1449), + [anon_sym_f32] = ACTIONS(1449), + [anon_sym_f64] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_str] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), [anon_sym_SLASH] = ACTIONS(1449), [anon_sym_PERCENT] = ACTIONS(1449), [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), [anon_sym_LT_LT] = ACTIONS(1449), [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1447), + [anon_sym_DASH_EQ] = ACTIONS(1447), + [anon_sym_STAR_EQ] = ACTIONS(1447), + [anon_sym_SLASH_EQ] = ACTIONS(1447), + [anon_sym_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_CARET_EQ] = ACTIONS(1447), + [anon_sym_AMP_EQ] = ACTIONS(1447), + [anon_sym_PIPE_EQ] = ACTIONS(1447), + [anon_sym_LT_LT_EQ] = ACTIONS(1447), + [anon_sym_GT_GT_EQ] = ACTIONS(1447), [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym__] = ACTIONS(1449), [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_COLON_COLON] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1447), [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_gen] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_ref] = ACTIONS(1784), - [sym_mutable_specifier] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), - }, - [STATE(474)] = { - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_u8] = ACTIONS(1463), - [anon_sym_i8] = ACTIONS(1463), - [anon_sym_u16] = ACTIONS(1463), - [anon_sym_i16] = ACTIONS(1463), - [anon_sym_u32] = ACTIONS(1463), - [anon_sym_i32] = ACTIONS(1463), - [anon_sym_u64] = ACTIONS(1463), - [anon_sym_i64] = ACTIONS(1463), - [anon_sym_u128] = ACTIONS(1463), - [anon_sym_i128] = ACTIONS(1463), - [anon_sym_isize] = ACTIONS(1463), - [anon_sym_usize] = ACTIONS(1463), - [anon_sym_f32] = ACTIONS(1463), - [anon_sym_f64] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_str] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym__] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_gen] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1463), - [sym_mutable_specifier] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1461), - [aux_sym_string_literal_token1] = ACTIONS(1461), - [sym_char_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [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(1461), - [sym__raw_string_literal_start] = ACTIONS(1461), - [sym_float_literal] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_gen] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_ref] = ACTIONS(1449), + [sym_mutable_specifier] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1447), + [aux_sym_string_literal_token1] = ACTIONS(1447), + [sym_char_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1449), + [sym_super] = ACTIONS(1449), + [sym_crate] = ACTIONS(1449), + [sym_metavariable] = ACTIONS(1447), + [sym__raw_string_literal_start] = ACTIONS(1447), + [sym_float_literal] = ACTIONS(1447), }, [STATE(475)] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1485), [anon_sym_PLUS] = ACTIONS(1483), [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1715), + [anon_sym_i8] = ACTIONS(1715), + [anon_sym_u16] = ACTIONS(1715), + [anon_sym_i16] = ACTIONS(1715), + [anon_sym_u32] = ACTIONS(1715), + [anon_sym_i32] = ACTIONS(1715), + [anon_sym_u64] = ACTIONS(1715), + [anon_sym_i64] = ACTIONS(1715), + [anon_sym_u128] = ACTIONS(1715), + [anon_sym_i128] = ACTIONS(1715), + [anon_sym_isize] = ACTIONS(1715), + [anon_sym_usize] = ACTIONS(1715), + [anon_sym_f32] = ACTIONS(1715), + [anon_sym_f64] = ACTIONS(1715), + [anon_sym_bool] = ACTIONS(1715), + [anon_sym_str] = ACTIONS(1715), + [anon_sym_char] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_PERCENT] = ACTIONS(1483), [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), [anon_sym_LT_LT] = ACTIONS(1483), [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1485), + [anon_sym_BANG_EQ] = ACTIONS(1485), [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym__] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym__] = ACTIONS(1715), [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(1717), [anon_sym_as] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1483), - [sym_mutable_specifier] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_gen] = ACTIONS(1715), + [anon_sym_union] = ACTIONS(1715), + [anon_sym_ref] = ACTIONS(1715), + [sym_mutable_specifier] = ACTIONS(1715), + [sym_integer_literal] = ACTIONS(1717), + [aux_sym_string_literal_token1] = ACTIONS(1717), + [sym_char_literal] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1715), + [sym_super] = ACTIONS(1715), + [sym_crate] = ACTIONS(1715), + [sym_metavariable] = ACTIONS(1717), + [sym__raw_string_literal_start] = ACTIONS(1717), + [sym_float_literal] = ACTIONS(1717), }, [STATE(476)] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(1453), - [anon_sym_u8] = ACTIONS(1455), - [anon_sym_i8] = ACTIONS(1455), - [anon_sym_u16] = ACTIONS(1455), - [anon_sym_i16] = ACTIONS(1455), - [anon_sym_u32] = ACTIONS(1455), - [anon_sym_i32] = ACTIONS(1455), - [anon_sym_u64] = ACTIONS(1455), - [anon_sym_i64] = ACTIONS(1455), - [anon_sym_u128] = ACTIONS(1455), - [anon_sym_i128] = ACTIONS(1455), - [anon_sym_isize] = ACTIONS(1455), - [anon_sym_usize] = ACTIONS(1455), - [anon_sym_f32] = ACTIONS(1455), - [anon_sym_f64] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_str] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_PLUS_EQ] = ACTIONS(1453), - [anon_sym_DASH_EQ] = ACTIONS(1453), - [anon_sym_STAR_EQ] = ACTIONS(1453), - [anon_sym_SLASH_EQ] = ACTIONS(1453), - [anon_sym_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_CARET_EQ] = ACTIONS(1453), - [anon_sym_AMP_EQ] = ACTIONS(1453), - [anon_sym_PIPE_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_EQ] = ACTIONS(1453), - [anon_sym_GT_GT_EQ] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym__] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_gen] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_ref] = ACTIONS(1455), - [sym_mutable_specifier] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1453), - [aux_sym_string_literal_token1] = ACTIONS(1453), - [sym_char_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_crate] = ACTIONS(1455), - [sym_metavariable] = ACTIONS(1453), - [sym__raw_string_literal_start] = ACTIONS(1453), - [sym_float_literal] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym__] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1529), + [sym_mutable_specifier] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, [STATE(477)] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), + [sym_identifier] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_ref] = ACTIONS(1473), + [sym_mutable_specifier] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(478)] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym_identifier] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1461), + [anon_sym_i8] = ACTIONS(1461), + [anon_sym_u16] = ACTIONS(1461), + [anon_sym_i16] = ACTIONS(1461), + [anon_sym_u32] = ACTIONS(1461), + [anon_sym_i32] = ACTIONS(1461), + [anon_sym_u64] = ACTIONS(1461), + [anon_sym_i64] = ACTIONS(1461), + [anon_sym_u128] = ACTIONS(1461), + [anon_sym_i128] = ACTIONS(1461), + [anon_sym_isize] = ACTIONS(1461), + [anon_sym_usize] = ACTIONS(1461), + [anon_sym_f32] = ACTIONS(1461), + [anon_sym_f64] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_str] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_PLUS_EQ] = ACTIONS(1459), + [anon_sym_DASH_EQ] = ACTIONS(1459), + [anon_sym_STAR_EQ] = ACTIONS(1459), + [anon_sym_SLASH_EQ] = ACTIONS(1459), + [anon_sym_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_CARET_EQ] = ACTIONS(1459), + [anon_sym_AMP_EQ] = ACTIONS(1459), + [anon_sym_PIPE_EQ] = ACTIONS(1459), + [anon_sym_LT_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_GT_EQ] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym__] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_gen] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_ref] = ACTIONS(1461), + [sym_mutable_specifier] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1459), + [aux_sym_string_literal_token1] = ACTIONS(1459), + [sym_char_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1461), + [sym_crate] = ACTIONS(1461), + [sym_metavariable] = ACTIONS(1459), + [sym__raw_string_literal_start] = ACTIONS(1459), + [sym_float_literal] = ACTIONS(1459), + }, + [STATE(479)] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym__] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_ref] = ACTIONS(1545), + [sym_mutable_specifier] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), + }, + [STATE(480)] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym_identifier] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1519), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PERCENT_EQ] = ACTIONS(1517), + [anon_sym_CARET_EQ] = ACTIONS(1517), + [anon_sym_AMP_EQ] = ACTIONS(1517), + [anon_sym_PIPE_EQ] = ACTIONS(1517), + [anon_sym_LT_LT_EQ] = ACTIONS(1517), + [anon_sym_GT_GT_EQ] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1517), + [anon_sym_BANG_EQ] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_GT_EQ] = ACTIONS(1517), + [anon_sym_LT_EQ] = ACTIONS(1517), + [anon_sym__] = ACTIONS(1519), + [anon_sym_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_gen] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_ref] = ACTIONS(1519), + [sym_mutable_specifier] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym__raw_string_literal_start] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), + }, + [STATE(481)] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), [sym_identifier] = ACTIONS(1533), [anon_sym_LPAREN] = ACTIONS(1531), [anon_sym_LBRACK] = ACTIONS(1531), @@ -70073,9 +70665,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1531), [sym_float_literal] = ACTIONS(1531), }, - [STATE(478)] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), + [STATE(482)] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_identifier] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_QMARK] = ACTIONS(1535), + [anon_sym_u8] = ACTIONS(1537), + [anon_sym_i8] = ACTIONS(1537), + [anon_sym_u16] = ACTIONS(1537), + [anon_sym_i16] = ACTIONS(1537), + [anon_sym_u32] = ACTIONS(1537), + [anon_sym_i32] = ACTIONS(1537), + [anon_sym_u64] = ACTIONS(1537), + [anon_sym_i64] = ACTIONS(1537), + [anon_sym_u128] = ACTIONS(1537), + [anon_sym_i128] = ACTIONS(1537), + [anon_sym_isize] = ACTIONS(1537), + [anon_sym_usize] = ACTIONS(1537), + [anon_sym_f32] = ACTIONS(1537), + [anon_sym_f64] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_str] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PERCENT] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_LT_LT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PERCENT_EQ] = ACTIONS(1535), + [anon_sym_CARET_EQ] = ACTIONS(1535), + [anon_sym_AMP_EQ] = ACTIONS(1535), + [anon_sym_PIPE_EQ] = ACTIONS(1535), + [anon_sym_LT_LT_EQ] = ACTIONS(1535), + [anon_sym_GT_GT_EQ] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_EQ_EQ] = ACTIONS(1535), + [anon_sym_BANG_EQ] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1535), + [anon_sym__] = ACTIONS(1537), + [anon_sym_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1535), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_gen] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_ref] = ACTIONS(1537), + [sym_mutable_specifier] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1535), + [aux_sym_string_literal_token1] = ACTIONS(1535), + [sym_char_literal] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_crate] = ACTIONS(1537), + [sym_metavariable] = ACTIONS(1535), + [sym__raw_string_literal_start] = ACTIONS(1535), + [sym_float_literal] = ACTIONS(1535), + }, + [STATE(483)] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(1443), + [anon_sym_u8] = ACTIONS(1445), + [anon_sym_i8] = ACTIONS(1445), + [anon_sym_u16] = ACTIONS(1445), + [anon_sym_i16] = ACTIONS(1445), + [anon_sym_u32] = ACTIONS(1445), + [anon_sym_i32] = ACTIONS(1445), + [anon_sym_u64] = ACTIONS(1445), + [anon_sym_i64] = ACTIONS(1445), + [anon_sym_u128] = ACTIONS(1445), + [anon_sym_i128] = ACTIONS(1445), + [anon_sym_isize] = ACTIONS(1445), + [anon_sym_usize] = ACTIONS(1445), + [anon_sym_f32] = ACTIONS(1445), + [anon_sym_f64] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_str] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_PIPE_PIPE] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_GT_GT] = ACTIONS(1445), + [anon_sym_PLUS_EQ] = ACTIONS(1443), + [anon_sym_DASH_EQ] = ACTIONS(1443), + [anon_sym_STAR_EQ] = ACTIONS(1443), + [anon_sym_SLASH_EQ] = ACTIONS(1443), + [anon_sym_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_CARET_EQ] = ACTIONS(1443), + [anon_sym_AMP_EQ] = ACTIONS(1443), + [anon_sym_PIPE_EQ] = ACTIONS(1443), + [anon_sym_LT_LT_EQ] = ACTIONS(1443), + [anon_sym_GT_GT_EQ] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1443), + [anon_sym__] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1443), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_gen] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_ref] = ACTIONS(1445), + [sym_mutable_specifier] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [aux_sym_string_literal_token1] = ACTIONS(1443), + [sym_char_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_crate] = ACTIONS(1445), + [sym_metavariable] = ACTIONS(1443), + [sym__raw_string_literal_start] = ACTIONS(1443), + [sym_float_literal] = ACTIONS(1443), + }, + [STATE(484)] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_as] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_gen] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_ref] = ACTIONS(1489), + [sym_mutable_specifier] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_crate] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym__raw_string_literal_start] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), + }, + [STATE(485)] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), [sym_identifier] = ACTIONS(1467), [anon_sym_LPAREN] = ACTIONS(1465), [anon_sym_LBRACK] = ACTIONS(1465), @@ -70156,1005 +70997,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1465), [sym_float_literal] = ACTIONS(1465), }, - [STATE(479)] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PERCENT_EQ] = ACTIONS(1511), - [anon_sym_CARET_EQ] = ACTIONS(1511), - [anon_sym_AMP_EQ] = ACTIONS(1511), - [anon_sym_PIPE_EQ] = ACTIONS(1511), - [anon_sym_LT_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_GT_EQ] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym__] = ACTIONS(1513), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), - [anon_sym_COMMA] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_as] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_gen] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_ref] = ACTIONS(1513), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym__raw_string_literal_start] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), - }, - [STATE(480)] = { - [sym_line_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_PERCENT] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_PIPE_PIPE] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1517), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PERCENT_EQ] = ACTIONS(1515), - [anon_sym_CARET_EQ] = ACTIONS(1515), - [anon_sym_AMP_EQ] = ACTIONS(1515), - [anon_sym_PIPE_EQ] = ACTIONS(1515), - [anon_sym_LT_LT_EQ] = ACTIONS(1515), - [anon_sym_GT_GT_EQ] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1515), - [anon_sym_BANG_EQ] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_GT_EQ] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1515), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_COMMA] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_gen] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_ref] = ACTIONS(1517), - [sym_mutable_specifier] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym__raw_string_literal_start] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), - }, - [STATE(481)] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1495), - [anon_sym_LT_LT] = ACTIONS(1497), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym__] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_gen] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1497), - [sym_mutable_specifier] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym__raw_string_literal_start] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), - }, - [STATE(482)] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym__] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1509), - [sym_mutable_specifier] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), - }, - [STATE(483)] = { - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym__] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_ref] = ACTIONS(1527), - [sym_mutable_specifier] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), - }, - [STATE(484)] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1505), - [sym_mutable_specifier] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), - }, - [STATE(485)] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_gen] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_ref] = ACTIONS(1493), - [sym_mutable_specifier] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym__raw_string_literal_start] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), - }, [STATE(486)] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym__] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_ref] = ACTIONS(1487), - [sym_mutable_specifier] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1455), + [anon_sym_DASH_EQ] = ACTIONS(1455), + [anon_sym_STAR_EQ] = ACTIONS(1455), + [anon_sym_SLASH_EQ] = ACTIONS(1455), + [anon_sym_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_CARET_EQ] = ACTIONS(1455), + [anon_sym_AMP_EQ] = ACTIONS(1455), + [anon_sym_PIPE_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym__] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_gen] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1457), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_crate] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym__raw_string_literal_start] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), }, [STATE(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1443), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_ref] = ACTIONS(1443), - [sym_mutable_specifier] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym__] = ACTIONS(1511), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1511), + [sym_mutable_specifier] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), }, [STATE(488)] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP_AMP] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym__] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_gen] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_ref] = ACTIONS(1501), - [sym_mutable_specifier] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym__raw_string_literal_start] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_QMARK] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1497), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1497), + [anon_sym_DASH_EQ] = ACTIONS(1497), + [anon_sym_STAR_EQ] = ACTIONS(1497), + [anon_sym_SLASH_EQ] = ACTIONS(1497), + [anon_sym_PERCENT_EQ] = ACTIONS(1497), + [anon_sym_CARET_EQ] = ACTIONS(1497), + [anon_sym_AMP_EQ] = ACTIONS(1497), + [anon_sym_PIPE_EQ] = ACTIONS(1497), + [anon_sym_LT_LT_EQ] = ACTIONS(1497), + [anon_sym_GT_GT_EQ] = ACTIONS(1497), + [anon_sym_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1497), + [anon_sym_BANG_EQ] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1497), + [anon_sym__] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_ref] = ACTIONS(1499), + [sym_mutable_specifier] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), }, [STATE(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_u8] = ACTIONS(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1473), - [anon_sym_DASH_EQ] = ACTIONS(1473), - [anon_sym_STAR_EQ] = ACTIONS(1473), - [anon_sym_SLASH_EQ] = ACTIONS(1473), - [anon_sym_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_CARET_EQ] = ACTIONS(1473), - [anon_sym_AMP_EQ] = ACTIONS(1473), - [anon_sym_PIPE_EQ] = ACTIONS(1473), - [anon_sym_LT_LT_EQ] = ACTIONS(1473), - [anon_sym_GT_GT_EQ] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1473), - [anon_sym_BANG_EQ] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1473), - [anon_sym__] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_gen] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_ref] = ACTIONS(1475), - [sym_mutable_specifier] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1473), - [aux_sym_string_literal_token1] = ACTIONS(1473), - [sym_char_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym__] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_ref] = ACTIONS(1507), + [sym_mutable_specifier] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), }, [STATE(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1459), - [anon_sym_i8] = ACTIONS(1459), - [anon_sym_u16] = ACTIONS(1459), - [anon_sym_i16] = ACTIONS(1459), - [anon_sym_u32] = ACTIONS(1459), - [anon_sym_i32] = ACTIONS(1459), - [anon_sym_u64] = ACTIONS(1459), - [anon_sym_i64] = ACTIONS(1459), - [anon_sym_u128] = ACTIONS(1459), - [anon_sym_i128] = ACTIONS(1459), - [anon_sym_isize] = ACTIONS(1459), - [anon_sym_usize] = ACTIONS(1459), - [anon_sym_f32] = ACTIONS(1459), - [anon_sym_f64] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_str] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1459), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1457), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_gen] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1459), - [sym_mutable_specifier] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym__raw_string_literal_start] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), - }, - [STATE(491)] = { - [sym_line_comment] = STATE(491), - [sym_block_comment] = STATE(491), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1539), [anon_sym_LBRACK] = ACTIONS(1539), @@ -71235,254 +71412,505 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1539), [sym_float_literal] = ACTIONS(1539), }, + [STATE(491)] = { + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1477), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_ref] = ACTIONS(1477), + [sym_mutable_specifier] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), + }, [STATE(492)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_arm] = STATE(1416), + [sym_match_pattern] = STATE(3648), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_match_block_repeat1] = STATE(492), + [aux_sym_match_arm_repeat1] = STATE(775), + [sym_identifier] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u128] = ACTIONS(1728), + [anon_sym_i128] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_str] = ACTIONS(1728), + [anon_sym_char] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym__] = ACTIONS(1743), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_default] = ACTIONS(1761), + [anon_sym_gen] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_ref] = ACTIONS(1764), + [sym_mutable_specifier] = ACTIONS(1767), + [sym_integer_literal] = ACTIONS(1770), + [aux_sym_string_literal_token1] = ACTIONS(1773), + [sym_char_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1779), + [sym_super] = ACTIONS(1779), + [sym_crate] = ACTIONS(1779), + [sym_metavariable] = ACTIONS(1782), + [sym__raw_string_literal_start] = ACTIONS(1785), + [sym_float_literal] = ACTIONS(1770), }, [STATE(493)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3020), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2624), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), [sym_identifier] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1788), + [anon_sym_i8] = ACTIONS(1788), + [anon_sym_u16] = ACTIONS(1788), + [anon_sym_i16] = ACTIONS(1788), + [anon_sym_u32] = ACTIONS(1788), + [anon_sym_i32] = ACTIONS(1788), + [anon_sym_u64] = ACTIONS(1788), + [anon_sym_i64] = ACTIONS(1788), + [anon_sym_u128] = ACTIONS(1788), + [anon_sym_i128] = ACTIONS(1788), + [anon_sym_isize] = ACTIONS(1788), + [anon_sym_usize] = ACTIONS(1788), + [anon_sym_f32] = ACTIONS(1788), + [anon_sym_f64] = ACTIONS(1788), + [anon_sym_bool] = ACTIONS(1788), + [anon_sym_str] = ACTIONS(1788), + [anon_sym_char] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1485), + [anon_sym_BANG_EQ] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym__] = ACTIONS(1788), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_gen] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_ref] = ACTIONS(1788), + [sym_mutable_specifier] = ACTIONS(1788), + [sym_integer_literal] = ACTIONS(1790), + [aux_sym_string_literal_token1] = ACTIONS(1790), + [sym_char_literal] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_crate] = ACTIONS(1788), + [sym_metavariable] = ACTIONS(1790), + [sym__raw_string_literal_start] = ACTIONS(1790), + [sym_float_literal] = ACTIONS(1790), }, [STATE(494)] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_gen] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1453), + [anon_sym_i8] = ACTIONS(1453), + [anon_sym_u16] = ACTIONS(1453), + [anon_sym_i16] = ACTIONS(1453), + [anon_sym_u32] = ACTIONS(1453), + [anon_sym_i32] = ACTIONS(1453), + [anon_sym_u64] = ACTIONS(1453), + [anon_sym_i64] = ACTIONS(1453), + [anon_sym_u128] = ACTIONS(1453), + [anon_sym_i128] = ACTIONS(1453), + [anon_sym_isize] = ACTIONS(1453), + [anon_sym_usize] = ACTIONS(1453), + [anon_sym_f32] = ACTIONS(1453), + [anon_sym_f64] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_str] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1453), + [anon_sym_PLUS_EQ] = ACTIONS(1451), + [anon_sym_DASH_EQ] = ACTIONS(1451), + [anon_sym_STAR_EQ] = ACTIONS(1451), + [anon_sym_SLASH_EQ] = ACTIONS(1451), + [anon_sym_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_CARET_EQ] = ACTIONS(1451), + [anon_sym_AMP_EQ] = ACTIONS(1451), + [anon_sym_PIPE_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_EQ] = ACTIONS(1451), + [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym__] = ACTIONS(1453), + [anon_sym_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_COMMA] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1451), + [anon_sym_POUND] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_gen] = ACTIONS(1453), + [anon_sym_union] = ACTIONS(1453), + [anon_sym_ref] = ACTIONS(1453), + [sym_mutable_specifier] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1451), + [aux_sym_string_literal_token1] = ACTIONS(1451), + [sym_char_literal] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1453), + [sym_super] = ACTIONS(1453), + [sym_crate] = ACTIONS(1453), + [sym_metavariable] = ACTIONS(1451), + [sym__raw_string_literal_start] = ACTIONS(1451), + [sym_float_literal] = ACTIONS(1451), }, [STATE(495)] = { + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3031), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(2633), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(496)] = { + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3049), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(2820), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(497)] = { + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), [ts_builtin_sym_end] = ACTIONS(1818), [sym_identifier] = ACTIONS(1820), [anon_sym_SEMI] = ACTIONS(1818), @@ -71561,7170 +71989,7308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1818), [sym_float_literal] = ACTIONS(1818), }, - [STATE(496)] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_gen] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), - }, - [STATE(497)] = { - [sym_line_comment] = STATE(497), - [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_gen] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), - }, [STATE(498)] = { + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3268), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(3038), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_gen] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(499)] = { [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_gen] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_gen] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_move] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym__raw_string_literal_start] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), }, [STATE(500)] = { [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_gen] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym__raw_string_literal_start] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_macro_rules_BANG] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_u8] = ACTIONS(1830), + [anon_sym_i8] = ACTIONS(1830), + [anon_sym_u16] = ACTIONS(1830), + [anon_sym_i16] = ACTIONS(1830), + [anon_sym_u32] = ACTIONS(1830), + [anon_sym_i32] = ACTIONS(1830), + [anon_sym_u64] = ACTIONS(1830), + [anon_sym_i64] = ACTIONS(1830), + [anon_sym_u128] = ACTIONS(1830), + [anon_sym_i128] = ACTIONS(1830), + [anon_sym_isize] = ACTIONS(1830), + [anon_sym_usize] = ACTIONS(1830), + [anon_sym_f32] = ACTIONS(1830), + [anon_sym_f64] = ACTIONS(1830), + [anon_sym_bool] = ACTIONS(1830), + [anon_sym_str] = ACTIONS(1830), + [anon_sym_char] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_gen] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_impl] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mod] = ACTIONS(1830), + [anon_sym_pub] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_struct] = ACTIONS(1830), + [anon_sym_trait] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_union] = ACTIONS(1830), + [anon_sym_unsafe] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_move] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1830), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1828), + [sym__raw_string_literal_start] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), }, [STATE(501)] = { [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_gen] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym__raw_string_literal_start] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_macro_rules_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_u8] = ACTIONS(1834), + [anon_sym_i8] = ACTIONS(1834), + [anon_sym_u16] = ACTIONS(1834), + [anon_sym_i16] = ACTIONS(1834), + [anon_sym_u32] = ACTIONS(1834), + [anon_sym_i32] = ACTIONS(1834), + [anon_sym_u64] = ACTIONS(1834), + [anon_sym_i64] = ACTIONS(1834), + [anon_sym_u128] = ACTIONS(1834), + [anon_sym_i128] = ACTIONS(1834), + [anon_sym_isize] = ACTIONS(1834), + [anon_sym_usize] = ACTIONS(1834), + [anon_sym_f32] = ACTIONS(1834), + [anon_sym_f64] = ACTIONS(1834), + [anon_sym_bool] = ACTIONS(1834), + [anon_sym_str] = ACTIONS(1834), + [anon_sym_char] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_COLON_COLON] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_fn] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_gen] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_impl] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_loop] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mod] = ACTIONS(1834), + [anon_sym_pub] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_trait] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_unsafe] = ACTIONS(1834), + [anon_sym_use] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_yield] = ACTIONS(1834), + [anon_sym_move] = ACTIONS(1834), + [anon_sym_try] = ACTIONS(1834), + [sym_integer_literal] = ACTIONS(1832), + [aux_sym_string_literal_token1] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1834), + [sym_super] = ACTIONS(1834), + [sym_crate] = ACTIONS(1834), + [sym_metavariable] = ACTIONS(1832), + [sym__raw_string_literal_start] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1832), }, [STATE(502)] = { [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_gen] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym__raw_string_literal_start] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_macro_rules_BANG] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_COLON_COLON] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_gen] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1836), + [sym__raw_string_literal_start] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), }, [STATE(503)] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_gen] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym__raw_string_literal_start] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_macro_rules_BANG] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_COLON_COLON] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_gen] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1842), + [anon_sym_try] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1840), + [sym__raw_string_literal_start] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), }, [STATE(504)] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_gen] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym__raw_string_literal_start] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_gen] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [anon_sym_try] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym__raw_string_literal_start] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), }, [STATE(505)] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_gen] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym__raw_string_literal_start] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_macro_rules_BANG] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_gen] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1850), + [anon_sym_unsafe] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1850), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_crate] = ACTIONS(1850), + [sym_metavariable] = ACTIONS(1848), + [sym__raw_string_literal_start] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), }, [STATE(506)] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_gen] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym__raw_string_literal_start] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_gen] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym__raw_string_literal_start] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), }, [STATE(507)] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_gen] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym__raw_string_literal_start] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_gen] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym__raw_string_literal_start] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), }, [STATE(508)] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_gen] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym__raw_string_literal_start] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_gen] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym__raw_string_literal_start] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), }, [STATE(509)] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_gen] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym__raw_string_literal_start] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_gen] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym__raw_string_literal_start] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), }, [STATE(510)] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_gen] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym__raw_string_literal_start] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_gen] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [anon_sym_try] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym__raw_string_literal_start] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), }, [STATE(511)] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_gen] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym__raw_string_literal_start] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_gen] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym__raw_string_literal_start] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), }, [STATE(512)] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_gen] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym__raw_string_literal_start] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym__raw_string_literal_start] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), }, [STATE(513)] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_gen] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym__raw_string_literal_start] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_gen] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym__raw_string_literal_start] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), }, [STATE(514)] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_gen] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym__raw_string_literal_start] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_gen] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym__raw_string_literal_start] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), }, [STATE(515)] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_gen] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym__raw_string_literal_start] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_gen] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym__raw_string_literal_start] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), }, [STATE(516)] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_gen] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym__raw_string_literal_start] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_gen] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym__raw_string_literal_start] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), }, [STATE(517)] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_gen] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym__raw_string_literal_start] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_gen] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym__raw_string_literal_start] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), }, [STATE(518)] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_gen] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [anon_sym_try] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym__raw_string_literal_start] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_gen] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym__raw_string_literal_start] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), }, [STATE(519)] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_gen] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [anon_sym_try] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym__raw_string_literal_start] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_gen] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym__raw_string_literal_start] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), }, [STATE(520)] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_gen] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym__raw_string_literal_start] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_gen] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [anon_sym_try] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym__raw_string_literal_start] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), }, [STATE(521)] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_gen] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [anon_sym_try] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym__raw_string_literal_start] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_gen] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym__raw_string_literal_start] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), }, [STATE(522)] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_gen] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_try] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym__raw_string_literal_start] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_gen] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [anon_sym_try] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym__raw_string_literal_start] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), }, [STATE(523)] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_gen] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym__raw_string_literal_start] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_gen] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [anon_sym_try] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym__raw_string_literal_start] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), }, [STATE(524)] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_gen] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym__raw_string_literal_start] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_gen] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [anon_sym_try] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym__raw_string_literal_start] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), }, [STATE(525)] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_gen] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym__raw_string_literal_start] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_gen] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym__raw_string_literal_start] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), }, [STATE(526)] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_gen] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym__raw_string_literal_start] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_macro_rules_BANG] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_u8] = ACTIONS(1934), + [anon_sym_i8] = ACTIONS(1934), + [anon_sym_u16] = ACTIONS(1934), + [anon_sym_i16] = ACTIONS(1934), + [anon_sym_u32] = ACTIONS(1934), + [anon_sym_i32] = ACTIONS(1934), + [anon_sym_u64] = ACTIONS(1934), + [anon_sym_i64] = ACTIONS(1934), + [anon_sym_u128] = ACTIONS(1934), + [anon_sym_i128] = ACTIONS(1934), + [anon_sym_isize] = ACTIONS(1934), + [anon_sym_usize] = ACTIONS(1934), + [anon_sym_f32] = ACTIONS(1934), + [anon_sym_f64] = ACTIONS(1934), + [anon_sym_bool] = ACTIONS(1934), + [anon_sym_str] = ACTIONS(1934), + [anon_sym_char] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_DOT_DOT] = ACTIONS(1932), + [anon_sym_COLON_COLON] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_gen] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_impl] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mod] = ACTIONS(1934), + [anon_sym_pub] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_struct] = ACTIONS(1934), + [anon_sym_trait] = ACTIONS(1934), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_union] = ACTIONS(1934), + [anon_sym_unsafe] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1934), + [sym_integer_literal] = ACTIONS(1932), + [aux_sym_string_literal_token1] = ACTIONS(1932), + [sym_char_literal] = ACTIONS(1932), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_crate] = ACTIONS(1934), + [sym_metavariable] = ACTIONS(1932), + [sym__raw_string_literal_start] = ACTIONS(1932), + [sym_float_literal] = ACTIONS(1932), }, [STATE(527)] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_gen] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym__raw_string_literal_start] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_macro_rules_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_DOT_DOT] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_gen] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_impl] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mod] = ACTIONS(1938), + [anon_sym_pub] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_trait] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1938), + [anon_sym_unsafe] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_move] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(1936), + [aux_sym_string_literal_token1] = ACTIONS(1936), + [sym_char_literal] = ACTIONS(1936), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_crate] = ACTIONS(1938), + [sym_metavariable] = ACTIONS(1936), + [sym__raw_string_literal_start] = ACTIONS(1936), + [sym_float_literal] = ACTIONS(1936), }, [STATE(528)] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_gen] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [anon_sym_try] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym__raw_string_literal_start] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_macro_rules_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_u8] = ACTIONS(1942), + [anon_sym_i8] = ACTIONS(1942), + [anon_sym_u16] = ACTIONS(1942), + [anon_sym_i16] = ACTIONS(1942), + [anon_sym_u32] = ACTIONS(1942), + [anon_sym_i32] = ACTIONS(1942), + [anon_sym_u64] = ACTIONS(1942), + [anon_sym_i64] = ACTIONS(1942), + [anon_sym_u128] = ACTIONS(1942), + [anon_sym_i128] = ACTIONS(1942), + [anon_sym_isize] = ACTIONS(1942), + [anon_sym_usize] = ACTIONS(1942), + [anon_sym_f32] = ACTIONS(1942), + [anon_sym_f64] = ACTIONS(1942), + [anon_sym_bool] = ACTIONS(1942), + [anon_sym_str] = ACTIONS(1942), + [anon_sym_char] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_enum] = ACTIONS(1942), + [anon_sym_fn] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_gen] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mod] = ACTIONS(1942), + [anon_sym_pub] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_struct] = ACTIONS(1942), + [anon_sym_trait] = ACTIONS(1942), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_union] = ACTIONS(1942), + [anon_sym_unsafe] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_yield] = ACTIONS(1942), + [anon_sym_move] = ACTIONS(1942), + [anon_sym_try] = ACTIONS(1942), + [sym_integer_literal] = ACTIONS(1940), + [aux_sym_string_literal_token1] = ACTIONS(1940), + [sym_char_literal] = ACTIONS(1940), + [anon_sym_true] = ACTIONS(1942), + [anon_sym_false] = ACTIONS(1942), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1942), + [sym_super] = ACTIONS(1942), + [sym_crate] = ACTIONS(1942), + [sym_metavariable] = ACTIONS(1940), + [sym__raw_string_literal_start] = ACTIONS(1940), + [sym_float_literal] = ACTIONS(1940), }, [STATE(529)] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_gen] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [anon_sym_try] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym__raw_string_literal_start] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [ts_builtin_sym_end] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_macro_rules_BANG] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_u8] = ACTIONS(1946), + [anon_sym_i8] = ACTIONS(1946), + [anon_sym_u16] = ACTIONS(1946), + [anon_sym_i16] = ACTIONS(1946), + [anon_sym_u32] = ACTIONS(1946), + [anon_sym_i32] = ACTIONS(1946), + [anon_sym_u64] = ACTIONS(1946), + [anon_sym_i64] = ACTIONS(1946), + [anon_sym_u128] = ACTIONS(1946), + [anon_sym_i128] = ACTIONS(1946), + [anon_sym_isize] = ACTIONS(1946), + [anon_sym_usize] = ACTIONS(1946), + [anon_sym_f32] = ACTIONS(1946), + [anon_sym_f64] = ACTIONS(1946), + [anon_sym_bool] = ACTIONS(1946), + [anon_sym_str] = ACTIONS(1946), + [anon_sym_char] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_COLON_COLON] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_enum] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_impl] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1946), + [anon_sym_struct] = ACTIONS(1946), + [anon_sym_trait] = ACTIONS(1946), + [anon_sym_type] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_unsafe] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_yield] = ACTIONS(1946), + [anon_sym_move] = ACTIONS(1946), + [anon_sym_try] = ACTIONS(1946), + [sym_integer_literal] = ACTIONS(1944), + [aux_sym_string_literal_token1] = ACTIONS(1944), + [sym_char_literal] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1946), + [sym_super] = ACTIONS(1946), + [sym_crate] = ACTIONS(1946), + [sym_metavariable] = ACTIONS(1944), + [sym__raw_string_literal_start] = ACTIONS(1944), + [sym_float_literal] = ACTIONS(1944), }, [STATE(530)] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_macro_rules_BANG] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_u8] = ACTIONS(1960), - [anon_sym_i8] = ACTIONS(1960), - [anon_sym_u16] = ACTIONS(1960), - [anon_sym_i16] = ACTIONS(1960), - [anon_sym_u32] = ACTIONS(1960), - [anon_sym_i32] = ACTIONS(1960), - [anon_sym_u64] = ACTIONS(1960), - [anon_sym_i64] = ACTIONS(1960), - [anon_sym_u128] = ACTIONS(1960), - [anon_sym_i128] = ACTIONS(1960), - [anon_sym_isize] = ACTIONS(1960), - [anon_sym_usize] = ACTIONS(1960), - [anon_sym_f32] = ACTIONS(1960), - [anon_sym_f64] = ACTIONS(1960), - [anon_sym_bool] = ACTIONS(1960), - [anon_sym_str] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_fn] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_gen] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_impl] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_mod] = ACTIONS(1960), - [anon_sym_pub] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_trait] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_unsafe] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [sym_integer_literal] = ACTIONS(1958), - [aux_sym_string_literal_token1] = ACTIONS(1958), - [sym_char_literal] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym__raw_string_literal_start] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_macro_rules_BANG] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_u8] = ACTIONS(1950), + [anon_sym_i8] = ACTIONS(1950), + [anon_sym_u16] = ACTIONS(1950), + [anon_sym_i16] = ACTIONS(1950), + [anon_sym_u32] = ACTIONS(1950), + [anon_sym_i32] = ACTIONS(1950), + [anon_sym_u64] = ACTIONS(1950), + [anon_sym_i64] = ACTIONS(1950), + [anon_sym_u128] = ACTIONS(1950), + [anon_sym_i128] = ACTIONS(1950), + [anon_sym_isize] = ACTIONS(1950), + [anon_sym_usize] = ACTIONS(1950), + [anon_sym_f32] = ACTIONS(1950), + [anon_sym_f64] = ACTIONS(1950), + [anon_sym_bool] = ACTIONS(1950), + [anon_sym_str] = ACTIONS(1950), + [anon_sym_char] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_enum] = ACTIONS(1950), + [anon_sym_fn] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_gen] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_impl] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mod] = ACTIONS(1950), + [anon_sym_pub] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1950), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_union] = ACTIONS(1950), + [anon_sym_unsafe] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_move] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1950), + [sym_integer_literal] = ACTIONS(1948), + [aux_sym_string_literal_token1] = ACTIONS(1948), + [sym_char_literal] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1950), + [sym_super] = ACTIONS(1950), + [sym_crate] = ACTIONS(1950), + [sym_metavariable] = ACTIONS(1948), + [sym__raw_string_literal_start] = ACTIONS(1948), + [sym_float_literal] = ACTIONS(1948), }, [STATE(531)] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_gen] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym__raw_string_literal_start] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_macro_rules_BANG] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_u8] = ACTIONS(1954), + [anon_sym_i8] = ACTIONS(1954), + [anon_sym_u16] = ACTIONS(1954), + [anon_sym_i16] = ACTIONS(1954), + [anon_sym_u32] = ACTIONS(1954), + [anon_sym_i32] = ACTIONS(1954), + [anon_sym_u64] = ACTIONS(1954), + [anon_sym_i64] = ACTIONS(1954), + [anon_sym_u128] = ACTIONS(1954), + [anon_sym_i128] = ACTIONS(1954), + [anon_sym_isize] = ACTIONS(1954), + [anon_sym_usize] = ACTIONS(1954), + [anon_sym_f32] = ACTIONS(1954), + [anon_sym_f64] = ACTIONS(1954), + [anon_sym_bool] = ACTIONS(1954), + [anon_sym_str] = ACTIONS(1954), + [anon_sym_char] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1952), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_break] = ACTIONS(1954), + [anon_sym_const] = ACTIONS(1954), + [anon_sym_continue] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_fn] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [anon_sym_gen] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_impl] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_loop] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mod] = ACTIONS(1954), + [anon_sym_pub] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1954), + [anon_sym_trait] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1954), + [anon_sym_unsafe] = ACTIONS(1954), + [anon_sym_use] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_extern] = ACTIONS(1954), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_move] = ACTIONS(1954), + [anon_sym_try] = ACTIONS(1954), + [sym_integer_literal] = ACTIONS(1952), + [aux_sym_string_literal_token1] = ACTIONS(1952), + [sym_char_literal] = ACTIONS(1952), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_crate] = ACTIONS(1954), + [sym_metavariable] = ACTIONS(1952), + [sym__raw_string_literal_start] = ACTIONS(1952), + [sym_float_literal] = ACTIONS(1952), }, [STATE(532)] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_gen] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym__raw_string_literal_start] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_u8] = ACTIONS(1958), + [anon_sym_i8] = ACTIONS(1958), + [anon_sym_u16] = ACTIONS(1958), + [anon_sym_i16] = ACTIONS(1958), + [anon_sym_u32] = ACTIONS(1958), + [anon_sym_i32] = ACTIONS(1958), + [anon_sym_u64] = ACTIONS(1958), + [anon_sym_i64] = ACTIONS(1958), + [anon_sym_u128] = ACTIONS(1958), + [anon_sym_i128] = ACTIONS(1958), + [anon_sym_isize] = ACTIONS(1958), + [anon_sym_usize] = ACTIONS(1958), + [anon_sym_f32] = ACTIONS(1958), + [anon_sym_f64] = ACTIONS(1958), + [anon_sym_bool] = ACTIONS(1958), + [anon_sym_str] = ACTIONS(1958), + [anon_sym_char] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_LT] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1956), + [anon_sym_COLON_COLON] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1958), + [anon_sym_break] = ACTIONS(1958), + [anon_sym_const] = ACTIONS(1958), + [anon_sym_continue] = ACTIONS(1958), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_enum] = ACTIONS(1958), + [anon_sym_fn] = ACTIONS(1958), + [anon_sym_for] = ACTIONS(1958), + [anon_sym_gen] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1958), + [anon_sym_impl] = ACTIONS(1958), + [anon_sym_let] = ACTIONS(1958), + [anon_sym_loop] = ACTIONS(1958), + [anon_sym_match] = ACTIONS(1958), + [anon_sym_mod] = ACTIONS(1958), + [anon_sym_pub] = ACTIONS(1958), + [anon_sym_return] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1958), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_trait] = ACTIONS(1958), + [anon_sym_type] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1958), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1958), + [anon_sym_extern] = ACTIONS(1958), + [anon_sym_yield] = ACTIONS(1958), + [anon_sym_move] = ACTIONS(1958), + [anon_sym_try] = ACTIONS(1958), + [sym_integer_literal] = ACTIONS(1956), + [aux_sym_string_literal_token1] = ACTIONS(1956), + [sym_char_literal] = ACTIONS(1956), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1958), + [sym_super] = ACTIONS(1958), + [sym_crate] = ACTIONS(1958), + [sym_metavariable] = ACTIONS(1956), + [sym__raw_string_literal_start] = ACTIONS(1956), + [sym_float_literal] = ACTIONS(1956), }, [STATE(533)] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_gen] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym__raw_string_literal_start] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_macro_rules_BANG] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_u8] = ACTIONS(1962), + [anon_sym_i8] = ACTIONS(1962), + [anon_sym_u16] = ACTIONS(1962), + [anon_sym_i16] = ACTIONS(1962), + [anon_sym_u32] = ACTIONS(1962), + [anon_sym_i32] = ACTIONS(1962), + [anon_sym_u64] = ACTIONS(1962), + [anon_sym_i64] = ACTIONS(1962), + [anon_sym_u128] = ACTIONS(1962), + [anon_sym_i128] = ACTIONS(1962), + [anon_sym_isize] = ACTIONS(1962), + [anon_sym_usize] = ACTIONS(1962), + [anon_sym_f32] = ACTIONS(1962), + [anon_sym_f64] = ACTIONS(1962), + [anon_sym_bool] = ACTIONS(1962), + [anon_sym_str] = ACTIONS(1962), + [anon_sym_char] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1960), + [anon_sym_PIPE] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1960), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_async] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_default] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_gen] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_impl] = ACTIONS(1962), + [anon_sym_let] = ACTIONS(1962), + [anon_sym_loop] = ACTIONS(1962), + [anon_sym_match] = ACTIONS(1962), + [anon_sym_mod] = ACTIONS(1962), + [anon_sym_pub] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_trait] = ACTIONS(1962), + [anon_sym_type] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_unsafe] = ACTIONS(1962), + [anon_sym_use] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_yield] = ACTIONS(1962), + [anon_sym_move] = ACTIONS(1962), + [anon_sym_try] = ACTIONS(1962), + [sym_integer_literal] = ACTIONS(1960), + [aux_sym_string_literal_token1] = ACTIONS(1960), + [sym_char_literal] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1962), + [sym_super] = ACTIONS(1962), + [sym_crate] = ACTIONS(1962), + [sym_metavariable] = ACTIONS(1960), + [sym__raw_string_literal_start] = ACTIONS(1960), + [sym_float_literal] = ACTIONS(1960), }, [STATE(534)] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_gen] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym__raw_string_literal_start] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_macro_rules_BANG] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1964), + [anon_sym_u8] = ACTIONS(1966), + [anon_sym_i8] = ACTIONS(1966), + [anon_sym_u16] = ACTIONS(1966), + [anon_sym_i16] = ACTIONS(1966), + [anon_sym_u32] = ACTIONS(1966), + [anon_sym_i32] = ACTIONS(1966), + [anon_sym_u64] = ACTIONS(1966), + [anon_sym_i64] = ACTIONS(1966), + [anon_sym_u128] = ACTIONS(1966), + [anon_sym_i128] = ACTIONS(1966), + [anon_sym_isize] = ACTIONS(1966), + [anon_sym_usize] = ACTIONS(1966), + [anon_sym_f32] = ACTIONS(1966), + [anon_sym_f64] = ACTIONS(1966), + [anon_sym_bool] = ACTIONS(1966), + [anon_sym_str] = ACTIONS(1966), + [anon_sym_char] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1964), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_async] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_fn] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_gen] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_impl] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_mod] = ACTIONS(1966), + [anon_sym_pub] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_trait] = ACTIONS(1966), + [anon_sym_type] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_unsafe] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_yield] = ACTIONS(1966), + [anon_sym_move] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [sym_integer_literal] = ACTIONS(1964), + [aux_sym_string_literal_token1] = ACTIONS(1964), + [sym_char_literal] = ACTIONS(1964), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1966), + [sym_super] = ACTIONS(1966), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1964), + [sym__raw_string_literal_start] = ACTIONS(1964), + [sym_float_literal] = ACTIONS(1964), }, [STATE(535)] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_gen] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [anon_sym_try] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym__raw_string_literal_start] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_macro_rules_BANG] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_u8] = ACTIONS(1970), + [anon_sym_i8] = ACTIONS(1970), + [anon_sym_u16] = ACTIONS(1970), + [anon_sym_i16] = ACTIONS(1970), + [anon_sym_u32] = ACTIONS(1970), + [anon_sym_i32] = ACTIONS(1970), + [anon_sym_u64] = ACTIONS(1970), + [anon_sym_i64] = ACTIONS(1970), + [anon_sym_u128] = ACTIONS(1970), + [anon_sym_i128] = ACTIONS(1970), + [anon_sym_isize] = ACTIONS(1970), + [anon_sym_usize] = ACTIONS(1970), + [anon_sym_f32] = ACTIONS(1970), + [anon_sym_f64] = ACTIONS(1970), + [anon_sym_bool] = ACTIONS(1970), + [anon_sym_str] = ACTIONS(1970), + [anon_sym_char] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_fn] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_gen] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_impl] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_loop] = ACTIONS(1970), + [anon_sym_match] = ACTIONS(1970), + [anon_sym_mod] = ACTIONS(1970), + [anon_sym_pub] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_trait] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_unsafe] = ACTIONS(1970), + [anon_sym_use] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_move] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [sym_integer_literal] = ACTIONS(1968), + [aux_sym_string_literal_token1] = ACTIONS(1968), + [sym_char_literal] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_crate] = ACTIONS(1970), + [sym_metavariable] = ACTIONS(1968), + [sym__raw_string_literal_start] = ACTIONS(1968), + [sym_float_literal] = ACTIONS(1968), }, [STATE(536)] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_gen] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym__raw_string_literal_start] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_macro_rules_BANG] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_u8] = ACTIONS(1974), + [anon_sym_i8] = ACTIONS(1974), + [anon_sym_u16] = ACTIONS(1974), + [anon_sym_i16] = ACTIONS(1974), + [anon_sym_u32] = ACTIONS(1974), + [anon_sym_i32] = ACTIONS(1974), + [anon_sym_u64] = ACTIONS(1974), + [anon_sym_i64] = ACTIONS(1974), + [anon_sym_u128] = ACTIONS(1974), + [anon_sym_i128] = ACTIONS(1974), + [anon_sym_isize] = ACTIONS(1974), + [anon_sym_usize] = ACTIONS(1974), + [anon_sym_f32] = ACTIONS(1974), + [anon_sym_f64] = ACTIONS(1974), + [anon_sym_bool] = ACTIONS(1974), + [anon_sym_str] = ACTIONS(1974), + [anon_sym_char] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_fn] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_gen] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_impl] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_loop] = ACTIONS(1974), + [anon_sym_match] = ACTIONS(1974), + [anon_sym_mod] = ACTIONS(1974), + [anon_sym_pub] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_trait] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_unsafe] = ACTIONS(1974), + [anon_sym_use] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_move] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [sym_integer_literal] = ACTIONS(1972), + [aux_sym_string_literal_token1] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_crate] = ACTIONS(1974), + [sym_metavariable] = ACTIONS(1972), + [sym__raw_string_literal_start] = ACTIONS(1972), + [sym_float_literal] = ACTIONS(1972), }, [STATE(537)] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_gen] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym__raw_string_literal_start] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_macro_rules_BANG] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_u8] = ACTIONS(1978), + [anon_sym_i8] = ACTIONS(1978), + [anon_sym_u16] = ACTIONS(1978), + [anon_sym_i16] = ACTIONS(1978), + [anon_sym_u32] = ACTIONS(1978), + [anon_sym_i32] = ACTIONS(1978), + [anon_sym_u64] = ACTIONS(1978), + [anon_sym_i64] = ACTIONS(1978), + [anon_sym_u128] = ACTIONS(1978), + [anon_sym_i128] = ACTIONS(1978), + [anon_sym_isize] = ACTIONS(1978), + [anon_sym_usize] = ACTIONS(1978), + [anon_sym_f32] = ACTIONS(1978), + [anon_sym_f64] = ACTIONS(1978), + [anon_sym_bool] = ACTIONS(1978), + [anon_sym_str] = ACTIONS(1978), + [anon_sym_char] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_async] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1978), + [anon_sym_const] = ACTIONS(1978), + [anon_sym_continue] = ACTIONS(1978), + [anon_sym_default] = ACTIONS(1978), + [anon_sym_enum] = ACTIONS(1978), + [anon_sym_fn] = ACTIONS(1978), + [anon_sym_for] = ACTIONS(1978), + [anon_sym_gen] = ACTIONS(1978), + [anon_sym_if] = ACTIONS(1978), + [anon_sym_impl] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1978), + [anon_sym_loop] = ACTIONS(1978), + [anon_sym_match] = ACTIONS(1978), + [anon_sym_mod] = ACTIONS(1978), + [anon_sym_pub] = ACTIONS(1978), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1978), + [anon_sym_struct] = ACTIONS(1978), + [anon_sym_trait] = ACTIONS(1978), + [anon_sym_type] = ACTIONS(1978), + [anon_sym_union] = ACTIONS(1978), + [anon_sym_unsafe] = ACTIONS(1978), + [anon_sym_use] = ACTIONS(1978), + [anon_sym_while] = ACTIONS(1978), + [anon_sym_extern] = ACTIONS(1978), + [anon_sym_yield] = ACTIONS(1978), + [anon_sym_move] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1978), + [sym_integer_literal] = ACTIONS(1976), + [aux_sym_string_literal_token1] = ACTIONS(1976), + [sym_char_literal] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1978), + [sym_super] = ACTIONS(1978), + [sym_crate] = ACTIONS(1978), + [sym_metavariable] = ACTIONS(1976), + [sym__raw_string_literal_start] = ACTIONS(1976), + [sym_float_literal] = ACTIONS(1976), }, [STATE(538)] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_gen] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym__raw_string_literal_start] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), + [ts_builtin_sym_end] = ACTIONS(1980), + [sym_identifier] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_macro_rules_BANG] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1980), + [anon_sym_u8] = ACTIONS(1982), + [anon_sym_i8] = ACTIONS(1982), + [anon_sym_u16] = ACTIONS(1982), + [anon_sym_i16] = ACTIONS(1982), + [anon_sym_u32] = ACTIONS(1982), + [anon_sym_i32] = ACTIONS(1982), + [anon_sym_u64] = ACTIONS(1982), + [anon_sym_i64] = ACTIONS(1982), + [anon_sym_u128] = ACTIONS(1982), + [anon_sym_i128] = ACTIONS(1982), + [anon_sym_isize] = ACTIONS(1982), + [anon_sym_usize] = ACTIONS(1982), + [anon_sym_f32] = ACTIONS(1982), + [anon_sym_f64] = ACTIONS(1982), + [anon_sym_bool] = ACTIONS(1982), + [anon_sym_str] = ACTIONS(1982), + [anon_sym_char] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_DOT_DOT] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_default] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_gen] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_impl] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_mod] = ACTIONS(1982), + [anon_sym_pub] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1982), + [anon_sym_struct] = ACTIONS(1982), + [anon_sym_trait] = ACTIONS(1982), + [anon_sym_type] = ACTIONS(1982), + [anon_sym_union] = ACTIONS(1982), + [anon_sym_unsafe] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_yield] = ACTIONS(1982), + [anon_sym_move] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(1982), + [sym_integer_literal] = ACTIONS(1980), + [aux_sym_string_literal_token1] = ACTIONS(1980), + [sym_char_literal] = ACTIONS(1980), + [anon_sym_true] = ACTIONS(1982), + [anon_sym_false] = ACTIONS(1982), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1982), + [sym_super] = ACTIONS(1982), + [sym_crate] = ACTIONS(1982), + [sym_metavariable] = ACTIONS(1980), + [sym__raw_string_literal_start] = ACTIONS(1980), + [sym_float_literal] = ACTIONS(1980), }, [STATE(539)] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_gen] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym__raw_string_literal_start] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), + [ts_builtin_sym_end] = ACTIONS(1984), + [sym_identifier] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_macro_rules_BANG] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_u8] = ACTIONS(1986), + [anon_sym_i8] = ACTIONS(1986), + [anon_sym_u16] = ACTIONS(1986), + [anon_sym_i16] = ACTIONS(1986), + [anon_sym_u32] = ACTIONS(1986), + [anon_sym_i32] = ACTIONS(1986), + [anon_sym_u64] = ACTIONS(1986), + [anon_sym_i64] = ACTIONS(1986), + [anon_sym_u128] = ACTIONS(1986), + [anon_sym_i128] = ACTIONS(1986), + [anon_sym_isize] = ACTIONS(1986), + [anon_sym_usize] = ACTIONS(1986), + [anon_sym_f32] = ACTIONS(1986), + [anon_sym_f64] = ACTIONS(1986), + [anon_sym_bool] = ACTIONS(1986), + [anon_sym_str] = ACTIONS(1986), + [anon_sym_char] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(1984), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_async] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_fn] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_gen] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_impl] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_mod] = ACTIONS(1986), + [anon_sym_pub] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_trait] = ACTIONS(1986), + [anon_sym_type] = ACTIONS(1986), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsafe] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_yield] = ACTIONS(1986), + [anon_sym_move] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1986), + [sym_integer_literal] = ACTIONS(1984), + [aux_sym_string_literal_token1] = ACTIONS(1984), + [sym_char_literal] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1986), + [sym_super] = ACTIONS(1986), + [sym_crate] = ACTIONS(1986), + [sym_metavariable] = ACTIONS(1984), + [sym__raw_string_literal_start] = ACTIONS(1984), + [sym_float_literal] = ACTIONS(1984), }, [STATE(540)] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_gen] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym__raw_string_literal_start] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_macro_rules_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_u8] = ACTIONS(1990), + [anon_sym_i8] = ACTIONS(1990), + [anon_sym_u16] = ACTIONS(1990), + [anon_sym_i16] = ACTIONS(1990), + [anon_sym_u32] = ACTIONS(1990), + [anon_sym_i32] = ACTIONS(1990), + [anon_sym_u64] = ACTIONS(1990), + [anon_sym_i64] = ACTIONS(1990), + [anon_sym_u128] = ACTIONS(1990), + [anon_sym_i128] = ACTIONS(1990), + [anon_sym_isize] = ACTIONS(1990), + [anon_sym_usize] = ACTIONS(1990), + [anon_sym_f32] = ACTIONS(1990), + [anon_sym_f64] = ACTIONS(1990), + [anon_sym_bool] = ACTIONS(1990), + [anon_sym_str] = ACTIONS(1990), + [anon_sym_char] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_fn] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_gen] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_impl] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_mod] = ACTIONS(1990), + [anon_sym_pub] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_trait] = ACTIONS(1990), + [anon_sym_type] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsafe] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_yield] = ACTIONS(1990), + [anon_sym_move] = ACTIONS(1990), + [anon_sym_try] = ACTIONS(1990), + [sym_integer_literal] = ACTIONS(1988), + [aux_sym_string_literal_token1] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1990), + [sym_super] = ACTIONS(1990), + [sym_crate] = ACTIONS(1990), + [sym_metavariable] = ACTIONS(1988), + [sym__raw_string_literal_start] = ACTIONS(1988), + [sym_float_literal] = ACTIONS(1988), }, [STATE(541)] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_gen] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym__raw_string_literal_start] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_macro_rules_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_u8] = ACTIONS(1994), + [anon_sym_i8] = ACTIONS(1994), + [anon_sym_u16] = ACTIONS(1994), + [anon_sym_i16] = ACTIONS(1994), + [anon_sym_u32] = ACTIONS(1994), + [anon_sym_i32] = ACTIONS(1994), + [anon_sym_u64] = ACTIONS(1994), + [anon_sym_i64] = ACTIONS(1994), + [anon_sym_u128] = ACTIONS(1994), + [anon_sym_i128] = ACTIONS(1994), + [anon_sym_isize] = ACTIONS(1994), + [anon_sym_usize] = ACTIONS(1994), + [anon_sym_f32] = ACTIONS(1994), + [anon_sym_f64] = ACTIONS(1994), + [anon_sym_bool] = ACTIONS(1994), + [anon_sym_str] = ACTIONS(1994), + [anon_sym_char] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(1992), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_gen] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_impl] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1994), + [anon_sym_pub] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_trait] = ACTIONS(1994), + [anon_sym_type] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsafe] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_yield] = ACTIONS(1994), + [anon_sym_move] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1994), + [sym_integer_literal] = ACTIONS(1992), + [aux_sym_string_literal_token1] = ACTIONS(1992), + [sym_char_literal] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1994), + [sym_super] = ACTIONS(1994), + [sym_crate] = ACTIONS(1994), + [sym_metavariable] = ACTIONS(1992), + [sym__raw_string_literal_start] = ACTIONS(1992), + [sym_float_literal] = ACTIONS(1992), }, [STATE(542)] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_gen] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym__raw_string_literal_start] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(1996), + [sym_identifier] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_macro_rules_BANG] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_u8] = ACTIONS(1998), + [anon_sym_i8] = ACTIONS(1998), + [anon_sym_u16] = ACTIONS(1998), + [anon_sym_i16] = ACTIONS(1998), + [anon_sym_u32] = ACTIONS(1998), + [anon_sym_i32] = ACTIONS(1998), + [anon_sym_u64] = ACTIONS(1998), + [anon_sym_i64] = ACTIONS(1998), + [anon_sym_u128] = ACTIONS(1998), + [anon_sym_i128] = ACTIONS(1998), + [anon_sym_isize] = ACTIONS(1998), + [anon_sym_usize] = ACTIONS(1998), + [anon_sym_f32] = ACTIONS(1998), + [anon_sym_f64] = ACTIONS(1998), + [anon_sym_bool] = ACTIONS(1998), + [anon_sym_str] = ACTIONS(1998), + [anon_sym_char] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_LT] = ACTIONS(1996), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_async] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_default] = ACTIONS(1998), + [anon_sym_enum] = ACTIONS(1998), + [anon_sym_fn] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_gen] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_impl] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_mod] = ACTIONS(1998), + [anon_sym_pub] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1998), + [anon_sym_struct] = ACTIONS(1998), + [anon_sym_trait] = ACTIONS(1998), + [anon_sym_type] = ACTIONS(1998), + [anon_sym_union] = ACTIONS(1998), + [anon_sym_unsafe] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_yield] = ACTIONS(1998), + [anon_sym_move] = ACTIONS(1998), + [anon_sym_try] = ACTIONS(1998), + [sym_integer_literal] = ACTIONS(1996), + [aux_sym_string_literal_token1] = ACTIONS(1996), + [sym_char_literal] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1998), + [sym_super] = ACTIONS(1998), + [sym_crate] = ACTIONS(1998), + [sym_metavariable] = ACTIONS(1996), + [sym__raw_string_literal_start] = ACTIONS(1996), + [sym_float_literal] = ACTIONS(1996), }, [STATE(543)] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_gen] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym__raw_string_literal_start] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_macro_rules_BANG] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2000), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_gen] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_yield] = ACTIONS(2002), + [anon_sym_move] = ACTIONS(2002), + [anon_sym_try] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2000), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2000), + [sym__raw_string_literal_start] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), }, [STATE(544)] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_gen] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym__raw_string_literal_start] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_macro_rules_BANG] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_u8] = ACTIONS(2006), + [anon_sym_i8] = ACTIONS(2006), + [anon_sym_u16] = ACTIONS(2006), + [anon_sym_i16] = ACTIONS(2006), + [anon_sym_u32] = ACTIONS(2006), + [anon_sym_i32] = ACTIONS(2006), + [anon_sym_u64] = ACTIONS(2006), + [anon_sym_i64] = ACTIONS(2006), + [anon_sym_u128] = ACTIONS(2006), + [anon_sym_i128] = ACTIONS(2006), + [anon_sym_isize] = ACTIONS(2006), + [anon_sym_usize] = ACTIONS(2006), + [anon_sym_f32] = ACTIONS(2006), + [anon_sym_f64] = ACTIONS(2006), + [anon_sym_bool] = ACTIONS(2006), + [anon_sym_str] = ACTIONS(2006), + [anon_sym_char] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2004), + [anon_sym_DOT_DOT] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_async] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2006), + [anon_sym_enum] = ACTIONS(2006), + [anon_sym_fn] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_gen] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_impl] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_mod] = ACTIONS(2006), + [anon_sym_pub] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2006), + [anon_sym_trait] = ACTIONS(2006), + [anon_sym_type] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2006), + [anon_sym_unsafe] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_yield] = ACTIONS(2006), + [anon_sym_move] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2006), + [sym_integer_literal] = ACTIONS(2004), + [aux_sym_string_literal_token1] = ACTIONS(2004), + [sym_char_literal] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2006), + [sym_super] = ACTIONS(2006), + [sym_crate] = ACTIONS(2006), + [sym_metavariable] = ACTIONS(2004), + [sym__raw_string_literal_start] = ACTIONS(2004), + [sym_float_literal] = ACTIONS(2004), }, [STATE(545)] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_gen] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym__raw_string_literal_start] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_macro_rules_BANG] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_u8] = ACTIONS(2010), + [anon_sym_i8] = ACTIONS(2010), + [anon_sym_u16] = ACTIONS(2010), + [anon_sym_i16] = ACTIONS(2010), + [anon_sym_u32] = ACTIONS(2010), + [anon_sym_i32] = ACTIONS(2010), + [anon_sym_u64] = ACTIONS(2010), + [anon_sym_i64] = ACTIONS(2010), + [anon_sym_u128] = ACTIONS(2010), + [anon_sym_i128] = ACTIONS(2010), + [anon_sym_isize] = ACTIONS(2010), + [anon_sym_usize] = ACTIONS(2010), + [anon_sym_f32] = ACTIONS(2010), + [anon_sym_f64] = ACTIONS(2010), + [anon_sym_bool] = ACTIONS(2010), + [anon_sym_str] = ACTIONS(2010), + [anon_sym_char] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_default] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_fn] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_gen] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_impl] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_mod] = ACTIONS(2010), + [anon_sym_pub] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_struct] = ACTIONS(2010), + [anon_sym_trait] = ACTIONS(2010), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_union] = ACTIONS(2010), + [anon_sym_unsafe] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_yield] = ACTIONS(2010), + [anon_sym_move] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(2010), + [sym_integer_literal] = ACTIONS(2008), + [aux_sym_string_literal_token1] = ACTIONS(2008), + [sym_char_literal] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2010), + [sym_super] = ACTIONS(2010), + [sym_crate] = ACTIONS(2010), + [sym_metavariable] = ACTIONS(2008), + [sym__raw_string_literal_start] = ACTIONS(2008), + [sym_float_literal] = ACTIONS(2008), }, [STATE(546)] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_gen] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym__raw_string_literal_start] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_macro_rules_BANG] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2014), + [anon_sym_i8] = ACTIONS(2014), + [anon_sym_u16] = ACTIONS(2014), + [anon_sym_i16] = ACTIONS(2014), + [anon_sym_u32] = ACTIONS(2014), + [anon_sym_i32] = ACTIONS(2014), + [anon_sym_u64] = ACTIONS(2014), + [anon_sym_i64] = ACTIONS(2014), + [anon_sym_u128] = ACTIONS(2014), + [anon_sym_i128] = ACTIONS(2014), + [anon_sym_isize] = ACTIONS(2014), + [anon_sym_usize] = ACTIONS(2014), + [anon_sym_f32] = ACTIONS(2014), + [anon_sym_f64] = ACTIONS(2014), + [anon_sym_bool] = ACTIONS(2014), + [anon_sym_str] = ACTIONS(2014), + [anon_sym_char] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_async] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_gen] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_impl] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_mod] = ACTIONS(2014), + [anon_sym_pub] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2014), + [anon_sym_trait] = ACTIONS(2014), + [anon_sym_type] = ACTIONS(2014), + [anon_sym_union] = ACTIONS(2014), + [anon_sym_unsafe] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_yield] = ACTIONS(2014), + [anon_sym_move] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [sym_integer_literal] = ACTIONS(2012), + [aux_sym_string_literal_token1] = ACTIONS(2012), + [sym_char_literal] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2014), + [sym_super] = ACTIONS(2014), + [sym_crate] = ACTIONS(2014), + [sym_metavariable] = ACTIONS(2012), + [sym__raw_string_literal_start] = ACTIONS(2012), + [sym_float_literal] = ACTIONS(2012), }, [STATE(547)] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_gen] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym__raw_string_literal_start] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_macro_rules_BANG] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2018), + [anon_sym_i8] = ACTIONS(2018), + [anon_sym_u16] = ACTIONS(2018), + [anon_sym_i16] = ACTIONS(2018), + [anon_sym_u32] = ACTIONS(2018), + [anon_sym_i32] = ACTIONS(2018), + [anon_sym_u64] = ACTIONS(2018), + [anon_sym_i64] = ACTIONS(2018), + [anon_sym_u128] = ACTIONS(2018), + [anon_sym_i128] = ACTIONS(2018), + [anon_sym_isize] = ACTIONS(2018), + [anon_sym_usize] = ACTIONS(2018), + [anon_sym_f32] = ACTIONS(2018), + [anon_sym_f64] = ACTIONS(2018), + [anon_sym_bool] = ACTIONS(2018), + [anon_sym_str] = ACTIONS(2018), + [anon_sym_char] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_DOT_DOT] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_fn] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_gen] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_impl] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_mod] = ACTIONS(2018), + [anon_sym_pub] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_struct] = ACTIONS(2018), + [anon_sym_trait] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2018), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_yield] = ACTIONS(2018), + [anon_sym_move] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2016), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2016), + [sym__raw_string_literal_start] = ACTIONS(2016), + [sym_float_literal] = ACTIONS(2016), }, [STATE(548)] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_gen] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym__raw_string_literal_start] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_macro_rules_BANG] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_u8] = ACTIONS(2022), + [anon_sym_i8] = ACTIONS(2022), + [anon_sym_u16] = ACTIONS(2022), + [anon_sym_i16] = ACTIONS(2022), + [anon_sym_u32] = ACTIONS(2022), + [anon_sym_i32] = ACTIONS(2022), + [anon_sym_u64] = ACTIONS(2022), + [anon_sym_i64] = ACTIONS(2022), + [anon_sym_u128] = ACTIONS(2022), + [anon_sym_i128] = ACTIONS(2022), + [anon_sym_isize] = ACTIONS(2022), + [anon_sym_usize] = ACTIONS(2022), + [anon_sym_f32] = ACTIONS(2022), + [anon_sym_f64] = ACTIONS(2022), + [anon_sym_bool] = ACTIONS(2022), + [anon_sym_str] = ACTIONS(2022), + [anon_sym_char] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_fn] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_gen] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_impl] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_mod] = ACTIONS(2022), + [anon_sym_pub] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_struct] = ACTIONS(2022), + [anon_sym_trait] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_union] = ACTIONS(2022), + [anon_sym_unsafe] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_move] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_crate] = ACTIONS(2022), + [sym_metavariable] = ACTIONS(2020), + [sym__raw_string_literal_start] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), }, [STATE(549)] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_macro_rules_BANG] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_gen] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2034), - [aux_sym_string_literal_token1] = ACTIONS(2034), - [sym_char_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym__raw_string_literal_start] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_macro_rules_BANG] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_u8] = ACTIONS(2026), + [anon_sym_i8] = ACTIONS(2026), + [anon_sym_u16] = ACTIONS(2026), + [anon_sym_i16] = ACTIONS(2026), + [anon_sym_u32] = ACTIONS(2026), + [anon_sym_i32] = ACTIONS(2026), + [anon_sym_u64] = ACTIONS(2026), + [anon_sym_i64] = ACTIONS(2026), + [anon_sym_u128] = ACTIONS(2026), + [anon_sym_i128] = ACTIONS(2026), + [anon_sym_isize] = ACTIONS(2026), + [anon_sym_usize] = ACTIONS(2026), + [anon_sym_f32] = ACTIONS(2026), + [anon_sym_f64] = ACTIONS(2026), + [anon_sym_bool] = ACTIONS(2026), + [anon_sym_str] = ACTIONS(2026), + [anon_sym_char] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_fn] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_gen] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_impl] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_mod] = ACTIONS(2026), + [anon_sym_pub] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_struct] = ACTIONS(2026), + [anon_sym_trait] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_union] = ACTIONS(2026), + [anon_sym_unsafe] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_move] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [sym_integer_literal] = ACTIONS(2024), + [aux_sym_string_literal_token1] = ACTIONS(2024), + [sym_char_literal] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_crate] = ACTIONS(2026), + [sym_metavariable] = ACTIONS(2024), + [sym__raw_string_literal_start] = ACTIONS(2024), + [sym_float_literal] = ACTIONS(2024), }, [STATE(550)] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_macro_rules_BANG] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_gen] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2038), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym__raw_string_literal_start] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_macro_rules_BANG] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_gen] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_yield] = ACTIONS(2030), + [anon_sym_move] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2028), + [aux_sym_string_literal_token1] = ACTIONS(2028), + [sym_char_literal] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2028), + [sym__raw_string_literal_start] = ACTIONS(2028), + [sym_float_literal] = ACTIONS(2028), }, [STATE(551)] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_macro_rules_BANG] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_gen] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_move] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [aux_sym_string_literal_token1] = ACTIONS(2042), - [sym_char_literal] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2042), - [sym__raw_string_literal_start] = ACTIONS(2042), - [sym_float_literal] = ACTIONS(2042), + [ts_builtin_sym_end] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_macro_rules_BANG] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_gen] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_yield] = ACTIONS(2034), + [anon_sym_move] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(2032), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2032), + [sym__raw_string_literal_start] = ACTIONS(2032), + [sym_float_literal] = ACTIONS(2032), }, [STATE(552)] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_macro_rules_BANG] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_u8] = ACTIONS(2048), - [anon_sym_i8] = ACTIONS(2048), - [anon_sym_u16] = ACTIONS(2048), - [anon_sym_i16] = ACTIONS(2048), - [anon_sym_u32] = ACTIONS(2048), - [anon_sym_i32] = ACTIONS(2048), - [anon_sym_u64] = ACTIONS(2048), - [anon_sym_i64] = ACTIONS(2048), - [anon_sym_u128] = ACTIONS(2048), - [anon_sym_i128] = ACTIONS(2048), - [anon_sym_isize] = ACTIONS(2048), - [anon_sym_usize] = ACTIONS(2048), - [anon_sym_f32] = ACTIONS(2048), - [anon_sym_f64] = ACTIONS(2048), - [anon_sym_bool] = ACTIONS(2048), - [anon_sym_str] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_fn] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_gen] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_impl] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_loop] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_mod] = ACTIONS(2048), - [anon_sym_pub] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_trait] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_unsafe] = ACTIONS(2048), - [anon_sym_use] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_move] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [sym_integer_literal] = ACTIONS(2046), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_crate] = ACTIONS(2048), - [sym_metavariable] = ACTIONS(2046), - [sym__raw_string_literal_start] = ACTIONS(2046), - [sym_float_literal] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_macro_rules_BANG] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_u8] = ACTIONS(2038), + [anon_sym_i8] = ACTIONS(2038), + [anon_sym_u16] = ACTIONS(2038), + [anon_sym_i16] = ACTIONS(2038), + [anon_sym_u32] = ACTIONS(2038), + [anon_sym_i32] = ACTIONS(2038), + [anon_sym_u64] = ACTIONS(2038), + [anon_sym_i64] = ACTIONS(2038), + [anon_sym_u128] = ACTIONS(2038), + [anon_sym_i128] = ACTIONS(2038), + [anon_sym_isize] = ACTIONS(2038), + [anon_sym_usize] = ACTIONS(2038), + [anon_sym_f32] = ACTIONS(2038), + [anon_sym_f64] = ACTIONS(2038), + [anon_sym_bool] = ACTIONS(2038), + [anon_sym_str] = ACTIONS(2038), + [anon_sym_char] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_fn] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_gen] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_impl] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_mod] = ACTIONS(2038), + [anon_sym_pub] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_trait] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_unsafe] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_move] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2036), + [aux_sym_string_literal_token1] = ACTIONS(2036), + [sym_char_literal] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2036), + [sym__raw_string_literal_start] = ACTIONS(2036), + [sym_float_literal] = ACTIONS(2036), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_macro_rules_BANG] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_COLON_COLON] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_gen] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_move] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2050), - [sym__raw_string_literal_start] = ACTIONS(2050), - [sym_float_literal] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_macro_rules_BANG] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_u8] = ACTIONS(2042), + [anon_sym_i8] = ACTIONS(2042), + [anon_sym_u16] = ACTIONS(2042), + [anon_sym_i16] = ACTIONS(2042), + [anon_sym_u32] = ACTIONS(2042), + [anon_sym_i32] = ACTIONS(2042), + [anon_sym_u64] = ACTIONS(2042), + [anon_sym_i64] = ACTIONS(2042), + [anon_sym_u128] = ACTIONS(2042), + [anon_sym_i128] = ACTIONS(2042), + [anon_sym_isize] = ACTIONS(2042), + [anon_sym_usize] = ACTIONS(2042), + [anon_sym_f32] = ACTIONS(2042), + [anon_sym_f64] = ACTIONS(2042), + [anon_sym_bool] = ACTIONS(2042), + [anon_sym_str] = ACTIONS(2042), + [anon_sym_char] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_DOT_DOT] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_fn] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_gen] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_impl] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_mod] = ACTIONS(2042), + [anon_sym_pub] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_struct] = ACTIONS(2042), + [anon_sym_trait] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_unsafe] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_yield] = ACTIONS(2042), + [anon_sym_move] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [sym_integer_literal] = ACTIONS(2040), + [aux_sym_string_literal_token1] = ACTIONS(2040), + [sym_char_literal] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), + [sym_metavariable] = ACTIONS(2040), + [sym__raw_string_literal_start] = ACTIONS(2040), + [sym_float_literal] = ACTIONS(2040), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_macro_rules_BANG] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2054), - [anon_sym_COLON_COLON] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_gen] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_move] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2054), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_metavariable] = ACTIONS(2054), - [sym__raw_string_literal_start] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_macro_rules_BANG] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_u8] = ACTIONS(2046), + [anon_sym_i8] = ACTIONS(2046), + [anon_sym_u16] = ACTIONS(2046), + [anon_sym_i16] = ACTIONS(2046), + [anon_sym_u32] = ACTIONS(2046), + [anon_sym_i32] = ACTIONS(2046), + [anon_sym_u64] = ACTIONS(2046), + [anon_sym_i64] = ACTIONS(2046), + [anon_sym_u128] = ACTIONS(2046), + [anon_sym_i128] = ACTIONS(2046), + [anon_sym_isize] = ACTIONS(2046), + [anon_sym_usize] = ACTIONS(2046), + [anon_sym_f32] = ACTIONS(2046), + [anon_sym_f64] = ACTIONS(2046), + [anon_sym_bool] = ACTIONS(2046), + [anon_sym_str] = ACTIONS(2046), + [anon_sym_char] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_DOT_DOT] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_fn] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_gen] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_impl] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_mod] = ACTIONS(2046), + [anon_sym_pub] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_trait] = ACTIONS(2046), + [anon_sym_type] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_unsafe] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_yield] = ACTIONS(2046), + [anon_sym_move] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [sym_integer_literal] = ACTIONS(2044), + [aux_sym_string_literal_token1] = ACTIONS(2044), + [sym_char_literal] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), + [sym_metavariable] = ACTIONS(2044), + [sym__raw_string_literal_start] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2044), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_macro_rules_BANG] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2060), - [anon_sym_i8] = ACTIONS(2060), - [anon_sym_u16] = ACTIONS(2060), - [anon_sym_i16] = ACTIONS(2060), - [anon_sym_u32] = ACTIONS(2060), - [anon_sym_i32] = ACTIONS(2060), - [anon_sym_u64] = ACTIONS(2060), - [anon_sym_i64] = ACTIONS(2060), - [anon_sym_u128] = ACTIONS(2060), - [anon_sym_i128] = ACTIONS(2060), - [anon_sym_isize] = ACTIONS(2060), - [anon_sym_usize] = ACTIONS(2060), - [anon_sym_f32] = ACTIONS(2060), - [anon_sym_f64] = ACTIONS(2060), - [anon_sym_bool] = ACTIONS(2060), - [anon_sym_str] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2058), - [anon_sym_COLON_COLON] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_fn] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_gen] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_impl] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_loop] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_mod] = ACTIONS(2060), - [anon_sym_pub] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_trait] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_unsafe] = ACTIONS(2060), - [anon_sym_use] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2060), - [anon_sym_false] = ACTIONS(2060), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_crate] = ACTIONS(2060), - [sym_metavariable] = ACTIONS(2058), - [sym__raw_string_literal_start] = ACTIONS(2058), - [sym_float_literal] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_macro_rules_BANG] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2050), + [anon_sym_i8] = ACTIONS(2050), + [anon_sym_u16] = ACTIONS(2050), + [anon_sym_i16] = ACTIONS(2050), + [anon_sym_u32] = ACTIONS(2050), + [anon_sym_i32] = ACTIONS(2050), + [anon_sym_u64] = ACTIONS(2050), + [anon_sym_i64] = ACTIONS(2050), + [anon_sym_u128] = ACTIONS(2050), + [anon_sym_i128] = ACTIONS(2050), + [anon_sym_isize] = ACTIONS(2050), + [anon_sym_usize] = ACTIONS(2050), + [anon_sym_f32] = ACTIONS(2050), + [anon_sym_f64] = ACTIONS(2050), + [anon_sym_bool] = ACTIONS(2050), + [anon_sym_str] = ACTIONS(2050), + [anon_sym_char] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_DOT_DOT] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_async] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_fn] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_gen] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_impl] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_mod] = ACTIONS(2050), + [anon_sym_pub] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2050), + [anon_sym_trait] = ACTIONS(2050), + [anon_sym_type] = ACTIONS(2050), + [anon_sym_union] = ACTIONS(2050), + [anon_sym_unsafe] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_yield] = ACTIONS(2050), + [anon_sym_move] = ACTIONS(2050), + [anon_sym_try] = ACTIONS(2050), + [sym_integer_literal] = ACTIONS(2048), + [aux_sym_string_literal_token1] = ACTIONS(2048), + [sym_char_literal] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_metavariable] = ACTIONS(2048), + [sym__raw_string_literal_start] = ACTIONS(2048), + [sym_float_literal] = ACTIONS(2048), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_macro_rules_BANG] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_u8] = ACTIONS(2064), - [anon_sym_i8] = ACTIONS(2064), - [anon_sym_u16] = ACTIONS(2064), - [anon_sym_i16] = ACTIONS(2064), - [anon_sym_u32] = ACTIONS(2064), - [anon_sym_i32] = ACTIONS(2064), - [anon_sym_u64] = ACTIONS(2064), - [anon_sym_i64] = ACTIONS(2064), - [anon_sym_u128] = ACTIONS(2064), - [anon_sym_i128] = ACTIONS(2064), - [anon_sym_isize] = ACTIONS(2064), - [anon_sym_usize] = ACTIONS(2064), - [anon_sym_f32] = ACTIONS(2064), - [anon_sym_f64] = ACTIONS(2064), - [anon_sym_bool] = ACTIONS(2064), - [anon_sym_str] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_fn] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_gen] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_impl] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_mod] = ACTIONS(2064), - [anon_sym_pub] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_trait] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [anon_sym_move] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [aux_sym_string_literal_token1] = ACTIONS(2062), - [sym_char_literal] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2064), - [sym_super] = ACTIONS(2064), - [sym_crate] = ACTIONS(2064), - [sym_metavariable] = ACTIONS(2062), - [sym__raw_string_literal_start] = ACTIONS(2062), - [sym_float_literal] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_macro_rules_BANG] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2054), + [anon_sym_i8] = ACTIONS(2054), + [anon_sym_u16] = ACTIONS(2054), + [anon_sym_i16] = ACTIONS(2054), + [anon_sym_u32] = ACTIONS(2054), + [anon_sym_i32] = ACTIONS(2054), + [anon_sym_u64] = ACTIONS(2054), + [anon_sym_i64] = ACTIONS(2054), + [anon_sym_u128] = ACTIONS(2054), + [anon_sym_i128] = ACTIONS(2054), + [anon_sym_isize] = ACTIONS(2054), + [anon_sym_usize] = ACTIONS(2054), + [anon_sym_f32] = ACTIONS(2054), + [anon_sym_f64] = ACTIONS(2054), + [anon_sym_bool] = ACTIONS(2054), + [anon_sym_str] = ACTIONS(2054), + [anon_sym_char] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_COLON_COLON] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_fn] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_gen] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_impl] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_mod] = ACTIONS(2054), + [anon_sym_pub] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2054), + [anon_sym_trait] = ACTIONS(2054), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2054), + [anon_sym_unsafe] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_yield] = ACTIONS(2054), + [anon_sym_move] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [sym_integer_literal] = ACTIONS(2052), + [aux_sym_string_literal_token1] = ACTIONS(2052), + [sym_char_literal] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), + [sym_metavariable] = ACTIONS(2052), + [sym__raw_string_literal_start] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_macro_rules_BANG] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_u8] = ACTIONS(2068), - [anon_sym_i8] = ACTIONS(2068), - [anon_sym_u16] = ACTIONS(2068), - [anon_sym_i16] = ACTIONS(2068), - [anon_sym_u32] = ACTIONS(2068), - [anon_sym_i32] = ACTIONS(2068), - [anon_sym_u64] = ACTIONS(2068), - [anon_sym_i64] = ACTIONS(2068), - [anon_sym_u128] = ACTIONS(2068), - [anon_sym_i128] = ACTIONS(2068), - [anon_sym_isize] = ACTIONS(2068), - [anon_sym_usize] = ACTIONS(2068), - [anon_sym_f32] = ACTIONS(2068), - [anon_sym_f64] = ACTIONS(2068), - [anon_sym_bool] = ACTIONS(2068), - [anon_sym_str] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_COLON_COLON] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_gen] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_impl] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_mod] = ACTIONS(2068), - [anon_sym_pub] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_trait] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_unsafe] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_move] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [aux_sym_string_literal_token1] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2066), - [sym__raw_string_literal_start] = ACTIONS(2066), - [sym_float_literal] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_macro_rules_BANG] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_u8] = ACTIONS(2058), + [anon_sym_i8] = ACTIONS(2058), + [anon_sym_u16] = ACTIONS(2058), + [anon_sym_i16] = ACTIONS(2058), + [anon_sym_u32] = ACTIONS(2058), + [anon_sym_i32] = ACTIONS(2058), + [anon_sym_u64] = ACTIONS(2058), + [anon_sym_i64] = ACTIONS(2058), + [anon_sym_u128] = ACTIONS(2058), + [anon_sym_i128] = ACTIONS(2058), + [anon_sym_isize] = ACTIONS(2058), + [anon_sym_usize] = ACTIONS(2058), + [anon_sym_f32] = ACTIONS(2058), + [anon_sym_f64] = ACTIONS(2058), + [anon_sym_bool] = ACTIONS(2058), + [anon_sym_str] = ACTIONS(2058), + [anon_sym_char] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_DOT_DOT] = ACTIONS(2056), + [anon_sym_COLON_COLON] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_gen] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_impl] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_mod] = ACTIONS(2058), + [anon_sym_pub] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_trait] = ACTIONS(2058), + [anon_sym_type] = ACTIONS(2058), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_yield] = ACTIONS(2058), + [anon_sym_move] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [sym_integer_literal] = ACTIONS(2056), + [aux_sym_string_literal_token1] = ACTIONS(2056), + [sym_char_literal] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), + [sym_metavariable] = ACTIONS(2056), + [sym__raw_string_literal_start] = ACTIONS(2056), + [sym_float_literal] = ACTIONS(2056), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_macro_rules_BANG] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_u8] = ACTIONS(2072), - [anon_sym_i8] = ACTIONS(2072), - [anon_sym_u16] = ACTIONS(2072), - [anon_sym_i16] = ACTIONS(2072), - [anon_sym_u32] = ACTIONS(2072), - [anon_sym_i32] = ACTIONS(2072), - [anon_sym_u64] = ACTIONS(2072), - [anon_sym_i64] = ACTIONS(2072), - [anon_sym_u128] = ACTIONS(2072), - [anon_sym_i128] = ACTIONS(2072), - [anon_sym_isize] = ACTIONS(2072), - [anon_sym_usize] = ACTIONS(2072), - [anon_sym_f32] = ACTIONS(2072), - [anon_sym_f64] = ACTIONS(2072), - [anon_sym_bool] = ACTIONS(2072), - [anon_sym_str] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_COLON_COLON] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_gen] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_impl] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_mod] = ACTIONS(2072), - [anon_sym_pub] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_trait] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_unsafe] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [anon_sym_move] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [aux_sym_string_literal_token1] = ACTIONS(2070), - [sym_char_literal] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2070), - [sym__raw_string_literal_start] = ACTIONS(2070), - [sym_float_literal] = ACTIONS(2070), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_macro_rules_BANG] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_u8] = ACTIONS(2062), + [anon_sym_i8] = ACTIONS(2062), + [anon_sym_u16] = ACTIONS(2062), + [anon_sym_i16] = ACTIONS(2062), + [anon_sym_u32] = ACTIONS(2062), + [anon_sym_i32] = ACTIONS(2062), + [anon_sym_u64] = ACTIONS(2062), + [anon_sym_i64] = ACTIONS(2062), + [anon_sym_u128] = ACTIONS(2062), + [anon_sym_i128] = ACTIONS(2062), + [anon_sym_isize] = ACTIONS(2062), + [anon_sym_usize] = ACTIONS(2062), + [anon_sym_f32] = ACTIONS(2062), + [anon_sym_f64] = ACTIONS(2062), + [anon_sym_bool] = ACTIONS(2062), + [anon_sym_str] = ACTIONS(2062), + [anon_sym_char] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2060), + [anon_sym_COLON_COLON] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_async] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_fn] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_gen] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_impl] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_mod] = ACTIONS(2062), + [anon_sym_pub] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_trait] = ACTIONS(2062), + [anon_sym_type] = ACTIONS(2062), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsafe] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_yield] = ACTIONS(2062), + [anon_sym_move] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [sym_integer_literal] = ACTIONS(2060), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_crate] = ACTIONS(2062), + [sym_metavariable] = ACTIONS(2060), + [sym__raw_string_literal_start] = ACTIONS(2060), + [sym_float_literal] = ACTIONS(2060), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_macro_rules_BANG] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_u8] = ACTIONS(2076), - [anon_sym_i8] = ACTIONS(2076), - [anon_sym_u16] = ACTIONS(2076), - [anon_sym_i16] = ACTIONS(2076), - [anon_sym_u32] = ACTIONS(2076), - [anon_sym_i32] = ACTIONS(2076), - [anon_sym_u64] = ACTIONS(2076), - [anon_sym_i64] = ACTIONS(2076), - [anon_sym_u128] = ACTIONS(2076), - [anon_sym_i128] = ACTIONS(2076), - [anon_sym_isize] = ACTIONS(2076), - [anon_sym_usize] = ACTIONS(2076), - [anon_sym_f32] = ACTIONS(2076), - [anon_sym_f64] = ACTIONS(2076), - [anon_sym_bool] = ACTIONS(2076), - [anon_sym_str] = ACTIONS(2076), - [anon_sym_char] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_default] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_gen] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_impl] = ACTIONS(2076), - [anon_sym_let] = ACTIONS(2076), - [anon_sym_loop] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_mod] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_trait] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_use] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2076), - [sym_integer_literal] = ACTIONS(2074), - [aux_sym_string_literal_token1] = ACTIONS(2074), - [sym_char_literal] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2076), - [sym_super] = ACTIONS(2076), - [sym_crate] = ACTIONS(2076), - [sym_metavariable] = ACTIONS(2074), - [sym__raw_string_literal_start] = ACTIONS(2074), - [sym_float_literal] = ACTIONS(2074), + [ts_builtin_sym_end] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_macro_rules_BANG] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_gen] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_yield] = ACTIONS(2066), + [anon_sym_move] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2064), + [aux_sym_string_literal_token1] = ACTIONS(2064), + [sym_char_literal] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2064), + [sym__raw_string_literal_start] = ACTIONS(2064), + [sym_float_literal] = ACTIONS(2064), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_macro_rules_BANG] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_u8] = ACTIONS(2080), - [anon_sym_i8] = ACTIONS(2080), - [anon_sym_u16] = ACTIONS(2080), - [anon_sym_i16] = ACTIONS(2080), - [anon_sym_u32] = ACTIONS(2080), - [anon_sym_i32] = ACTIONS(2080), - [anon_sym_u64] = ACTIONS(2080), - [anon_sym_i64] = ACTIONS(2080), - [anon_sym_u128] = ACTIONS(2080), - [anon_sym_i128] = ACTIONS(2080), - [anon_sym_isize] = ACTIONS(2080), - [anon_sym_usize] = ACTIONS(2080), - [anon_sym_f32] = ACTIONS(2080), - [anon_sym_f64] = ACTIONS(2080), - [anon_sym_bool] = ACTIONS(2080), - [anon_sym_str] = ACTIONS(2080), - [anon_sym_char] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_fn] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_gen] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_impl] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_loop] = ACTIONS(2080), - [anon_sym_match] = ACTIONS(2080), - [anon_sym_mod] = ACTIONS(2080), - [anon_sym_pub] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_struct] = ACTIONS(2080), - [anon_sym_trait] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_union] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(2080), - [anon_sym_use] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [sym_integer_literal] = ACTIONS(2078), - [aux_sym_string_literal_token1] = ACTIONS(2078), - [sym_char_literal] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_crate] = ACTIONS(2080), - [sym_metavariable] = ACTIONS(2078), - [sym__raw_string_literal_start] = ACTIONS(2078), - [sym_float_literal] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_macro_rules_BANG] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_u8] = ACTIONS(2070), + [anon_sym_i8] = ACTIONS(2070), + [anon_sym_u16] = ACTIONS(2070), + [anon_sym_i16] = ACTIONS(2070), + [anon_sym_u32] = ACTIONS(2070), + [anon_sym_i32] = ACTIONS(2070), + [anon_sym_u64] = ACTIONS(2070), + [anon_sym_i64] = ACTIONS(2070), + [anon_sym_u128] = ACTIONS(2070), + [anon_sym_i128] = ACTIONS(2070), + [anon_sym_isize] = ACTIONS(2070), + [anon_sym_usize] = ACTIONS(2070), + [anon_sym_f32] = ACTIONS(2070), + [anon_sym_f64] = ACTIONS(2070), + [anon_sym_bool] = ACTIONS(2070), + [anon_sym_str] = ACTIONS(2070), + [anon_sym_char] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_COLON_COLON] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_async] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_fn] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_gen] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_impl] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_mod] = ACTIONS(2070), + [anon_sym_pub] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_struct] = ACTIONS(2070), + [anon_sym_trait] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_union] = ACTIONS(2070), + [anon_sym_unsafe] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_yield] = ACTIONS(2070), + [anon_sym_move] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [sym_integer_literal] = ACTIONS(2068), + [aux_sym_string_literal_token1] = ACTIONS(2068), + [sym_char_literal] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2070), + [sym_super] = ACTIONS(2070), + [sym_crate] = ACTIONS(2070), + [sym_metavariable] = ACTIONS(2068), + [sym__raw_string_literal_start] = ACTIONS(2068), + [sym_float_literal] = ACTIONS(2068), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_macro_rules_BANG] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_u8] = ACTIONS(2084), - [anon_sym_i8] = ACTIONS(2084), - [anon_sym_u16] = ACTIONS(2084), - [anon_sym_i16] = ACTIONS(2084), - [anon_sym_u32] = ACTIONS(2084), - [anon_sym_i32] = ACTIONS(2084), - [anon_sym_u64] = ACTIONS(2084), - [anon_sym_i64] = ACTIONS(2084), - [anon_sym_u128] = ACTIONS(2084), - [anon_sym_i128] = ACTIONS(2084), - [anon_sym_isize] = ACTIONS(2084), - [anon_sym_usize] = ACTIONS(2084), - [anon_sym_f32] = ACTIONS(2084), - [anon_sym_f64] = ACTIONS(2084), - [anon_sym_bool] = ACTIONS(2084), - [anon_sym_str] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_fn] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_gen] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_impl] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_loop] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_mod] = ACTIONS(2084), - [anon_sym_pub] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_trait] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_unsafe] = ACTIONS(2084), - [anon_sym_use] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2082), - [aux_sym_string_literal_token1] = ACTIONS(2082), - [sym_char_literal] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2082), - [sym__raw_string_literal_start] = ACTIONS(2082), - [sym_float_literal] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_macro_rules_BANG] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_u8] = ACTIONS(2074), + [anon_sym_i8] = ACTIONS(2074), + [anon_sym_u16] = ACTIONS(2074), + [anon_sym_i16] = ACTIONS(2074), + [anon_sym_u32] = ACTIONS(2074), + [anon_sym_i32] = ACTIONS(2074), + [anon_sym_u64] = ACTIONS(2074), + [anon_sym_i64] = ACTIONS(2074), + [anon_sym_u128] = ACTIONS(2074), + [anon_sym_i128] = ACTIONS(2074), + [anon_sym_isize] = ACTIONS(2074), + [anon_sym_usize] = ACTIONS(2074), + [anon_sym_f32] = ACTIONS(2074), + [anon_sym_f64] = ACTIONS(2074), + [anon_sym_bool] = ACTIONS(2074), + [anon_sym_str] = ACTIONS(2074), + [anon_sym_char] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_COLON_COLON] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_const] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_default] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + [anon_sym_fn] = ACTIONS(2074), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_gen] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_impl] = ACTIONS(2074), + [anon_sym_let] = ACTIONS(2074), + [anon_sym_loop] = ACTIONS(2074), + [anon_sym_match] = ACTIONS(2074), + [anon_sym_mod] = ACTIONS(2074), + [anon_sym_pub] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_struct] = ACTIONS(2074), + [anon_sym_trait] = ACTIONS(2074), + [anon_sym_type] = ACTIONS(2074), + [anon_sym_union] = ACTIONS(2074), + [anon_sym_unsafe] = ACTIONS(2074), + [anon_sym_use] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2074), + [anon_sym_yield] = ACTIONS(2074), + [anon_sym_move] = ACTIONS(2074), + [anon_sym_try] = ACTIONS(2074), + [sym_integer_literal] = ACTIONS(2072), + [aux_sym_string_literal_token1] = ACTIONS(2072), + [sym_char_literal] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2074), + [sym_super] = ACTIONS(2074), + [sym_crate] = ACTIONS(2074), + [sym_metavariable] = ACTIONS(2072), + [sym__raw_string_literal_start] = ACTIONS(2072), + [sym_float_literal] = ACTIONS(2072), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_macro_rules_BANG] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_u8] = ACTIONS(2088), - [anon_sym_i8] = ACTIONS(2088), - [anon_sym_u16] = ACTIONS(2088), - [anon_sym_i16] = ACTIONS(2088), - [anon_sym_u32] = ACTIONS(2088), - [anon_sym_i32] = ACTIONS(2088), - [anon_sym_u64] = ACTIONS(2088), - [anon_sym_i64] = ACTIONS(2088), - [anon_sym_u128] = ACTIONS(2088), - [anon_sym_i128] = ACTIONS(2088), - [anon_sym_isize] = ACTIONS(2088), - [anon_sym_usize] = ACTIONS(2088), - [anon_sym_f32] = ACTIONS(2088), - [anon_sym_f64] = ACTIONS(2088), - [anon_sym_bool] = ACTIONS(2088), - [anon_sym_str] = ACTIONS(2088), - [anon_sym_char] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_COLON_COLON] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_enum] = ACTIONS(2088), - [anon_sym_fn] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_gen] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_impl] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_mod] = ACTIONS(2088), - [anon_sym_pub] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_struct] = ACTIONS(2088), - [anon_sym_trait] = ACTIONS(2088), - [anon_sym_type] = ACTIONS(2088), - [anon_sym_union] = ACTIONS(2088), - [anon_sym_unsafe] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [sym_integer_literal] = ACTIONS(2086), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2088), - [sym_super] = ACTIONS(2088), - [sym_crate] = ACTIONS(2088), - [sym_metavariable] = ACTIONS(2086), - [sym__raw_string_literal_start] = ACTIONS(2086), - [sym_float_literal] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_macro_rules_BANG] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_u8] = ACTIONS(2078), + [anon_sym_i8] = ACTIONS(2078), + [anon_sym_u16] = ACTIONS(2078), + [anon_sym_i16] = ACTIONS(2078), + [anon_sym_u32] = ACTIONS(2078), + [anon_sym_i32] = ACTIONS(2078), + [anon_sym_u64] = ACTIONS(2078), + [anon_sym_i64] = ACTIONS(2078), + [anon_sym_u128] = ACTIONS(2078), + [anon_sym_i128] = ACTIONS(2078), + [anon_sym_isize] = ACTIONS(2078), + [anon_sym_usize] = ACTIONS(2078), + [anon_sym_f32] = ACTIONS(2078), + [anon_sym_f64] = ACTIONS(2078), + [anon_sym_bool] = ACTIONS(2078), + [anon_sym_str] = ACTIONS(2078), + [anon_sym_char] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2076), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_async] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_default] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [anon_sym_fn] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_gen] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_impl] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_mod] = ACTIONS(2078), + [anon_sym_pub] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_struct] = ACTIONS(2078), + [anon_sym_trait] = ACTIONS(2078), + [anon_sym_type] = ACTIONS(2078), + [anon_sym_union] = ACTIONS(2078), + [anon_sym_unsafe] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_yield] = ACTIONS(2078), + [anon_sym_move] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [sym_integer_literal] = ACTIONS(2076), + [aux_sym_string_literal_token1] = ACTIONS(2076), + [sym_char_literal] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2078), + [sym_super] = ACTIONS(2078), + [sym_crate] = ACTIONS(2078), + [sym_metavariable] = ACTIONS(2076), + [sym__raw_string_literal_start] = ACTIONS(2076), + [sym_float_literal] = ACTIONS(2076), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_u8] = ACTIONS(2092), - [anon_sym_i8] = ACTIONS(2092), - [anon_sym_u16] = ACTIONS(2092), - [anon_sym_i16] = ACTIONS(2092), - [anon_sym_u32] = ACTIONS(2092), - [anon_sym_i32] = ACTIONS(2092), - [anon_sym_u64] = ACTIONS(2092), - [anon_sym_i64] = ACTIONS(2092), - [anon_sym_u128] = ACTIONS(2092), - [anon_sym_i128] = ACTIONS(2092), - [anon_sym_isize] = ACTIONS(2092), - [anon_sym_usize] = ACTIONS(2092), - [anon_sym_f32] = ACTIONS(2092), - [anon_sym_f64] = ACTIONS(2092), - [anon_sym_bool] = ACTIONS(2092), - [anon_sym_str] = ACTIONS(2092), - [anon_sym_char] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_gen] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_impl] = ACTIONS(2092), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_loop] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_mod] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_trait] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_use] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [sym_integer_literal] = ACTIONS(2090), - [aux_sym_string_literal_token1] = ACTIONS(2090), - [sym_char_literal] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_crate] = ACTIONS(2092), - [sym_metavariable] = ACTIONS(2090), - [sym__raw_string_literal_start] = ACTIONS(2090), - [sym_float_literal] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_macro_rules_BANG] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2082), + [anon_sym_i8] = ACTIONS(2082), + [anon_sym_u16] = ACTIONS(2082), + [anon_sym_i16] = ACTIONS(2082), + [anon_sym_u32] = ACTIONS(2082), + [anon_sym_i32] = ACTIONS(2082), + [anon_sym_u64] = ACTIONS(2082), + [anon_sym_i64] = ACTIONS(2082), + [anon_sym_u128] = ACTIONS(2082), + [anon_sym_i128] = ACTIONS(2082), + [anon_sym_isize] = ACTIONS(2082), + [anon_sym_usize] = ACTIONS(2082), + [anon_sym_f32] = ACTIONS(2082), + [anon_sym_f64] = ACTIONS(2082), + [anon_sym_bool] = ACTIONS(2082), + [anon_sym_str] = ACTIONS(2082), + [anon_sym_char] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2080), + [anon_sym_DOT_DOT] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_default] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_fn] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_gen] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_impl] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_mod] = ACTIONS(2082), + [anon_sym_pub] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_struct] = ACTIONS(2082), + [anon_sym_trait] = ACTIONS(2082), + [anon_sym_type] = ACTIONS(2082), + [anon_sym_union] = ACTIONS(2082), + [anon_sym_unsafe] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2082), + [anon_sym_move] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [sym_integer_literal] = ACTIONS(2080), + [aux_sym_string_literal_token1] = ACTIONS(2080), + [sym_char_literal] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2082), + [sym_super] = ACTIONS(2082), + [sym_crate] = ACTIONS(2082), + [sym_metavariable] = ACTIONS(2080), + [sym__raw_string_literal_start] = ACTIONS(2080), + [sym_float_literal] = ACTIONS(2080), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_macro_rules_BANG] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_COLON_COLON] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), - [anon_sym_fn] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_gen] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_impl] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_mod] = ACTIONS(2096), - [anon_sym_pub] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(2096), - [anon_sym_trait] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_unsafe] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [sym_integer_literal] = ACTIONS(2094), - [aux_sym_string_literal_token1] = ACTIONS(2094), - [sym_char_literal] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_crate] = ACTIONS(2096), - [sym_metavariable] = ACTIONS(2094), - [sym__raw_string_literal_start] = ACTIONS(2094), - [sym_float_literal] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_macro_rules_BANG] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_u8] = ACTIONS(2086), + [anon_sym_i8] = ACTIONS(2086), + [anon_sym_u16] = ACTIONS(2086), + [anon_sym_i16] = ACTIONS(2086), + [anon_sym_u32] = ACTIONS(2086), + [anon_sym_i32] = ACTIONS(2086), + [anon_sym_u64] = ACTIONS(2086), + [anon_sym_i64] = ACTIONS(2086), + [anon_sym_u128] = ACTIONS(2086), + [anon_sym_i128] = ACTIONS(2086), + [anon_sym_isize] = ACTIONS(2086), + [anon_sym_usize] = ACTIONS(2086), + [anon_sym_f32] = ACTIONS(2086), + [anon_sym_f64] = ACTIONS(2086), + [anon_sym_bool] = ACTIONS(2086), + [anon_sym_str] = ACTIONS(2086), + [anon_sym_char] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2084), + [anon_sym_COLON_COLON] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_default] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_fn] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_gen] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_impl] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_mod] = ACTIONS(2086), + [anon_sym_pub] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(2086), + [anon_sym_trait] = ACTIONS(2086), + [anon_sym_type] = ACTIONS(2086), + [anon_sym_union] = ACTIONS(2086), + [anon_sym_unsafe] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_yield] = ACTIONS(2086), + [anon_sym_move] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [sym_integer_literal] = ACTIONS(2084), + [aux_sym_string_literal_token1] = ACTIONS(2084), + [sym_char_literal] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2086), + [sym_super] = ACTIONS(2086), + [sym_crate] = ACTIONS(2086), + [sym_metavariable] = ACTIONS(2084), + [sym__raw_string_literal_start] = ACTIONS(2084), + [sym_float_literal] = ACTIONS(2084), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_macro_rules_BANG] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_u8] = ACTIONS(2100), - [anon_sym_i8] = ACTIONS(2100), - [anon_sym_u16] = ACTIONS(2100), - [anon_sym_i16] = ACTIONS(2100), - [anon_sym_u32] = ACTIONS(2100), - [anon_sym_i32] = ACTIONS(2100), - [anon_sym_u64] = ACTIONS(2100), - [anon_sym_i64] = ACTIONS(2100), - [anon_sym_u128] = ACTIONS(2100), - [anon_sym_i128] = ACTIONS(2100), - [anon_sym_isize] = ACTIONS(2100), - [anon_sym_usize] = ACTIONS(2100), - [anon_sym_f32] = ACTIONS(2100), - [anon_sym_f64] = ACTIONS(2100), - [anon_sym_bool] = ACTIONS(2100), - [anon_sym_str] = ACTIONS(2100), - [anon_sym_char] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_const] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2100), - [anon_sym_fn] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_gen] = ACTIONS(2100), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_impl] = ACTIONS(2100), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_loop] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_mod] = ACTIONS(2100), - [anon_sym_pub] = ACTIONS(2100), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_struct] = ACTIONS(2100), - [anon_sym_trait] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_union] = ACTIONS(2100), - [anon_sym_unsafe] = ACTIONS(2100), - [anon_sym_use] = ACTIONS(2100), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2100), - [sym_integer_literal] = ACTIONS(2098), - [aux_sym_string_literal_token1] = ACTIONS(2098), - [sym_char_literal] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_crate] = ACTIONS(2100), - [sym_metavariable] = ACTIONS(2098), - [sym__raw_string_literal_start] = ACTIONS(2098), - [sym_float_literal] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_macro_rules_BANG] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_u8] = ACTIONS(2090), + [anon_sym_i8] = ACTIONS(2090), + [anon_sym_u16] = ACTIONS(2090), + [anon_sym_i16] = ACTIONS(2090), + [anon_sym_u32] = ACTIONS(2090), + [anon_sym_i32] = ACTIONS(2090), + [anon_sym_u64] = ACTIONS(2090), + [anon_sym_i64] = ACTIONS(2090), + [anon_sym_u128] = ACTIONS(2090), + [anon_sym_i128] = ACTIONS(2090), + [anon_sym_isize] = ACTIONS(2090), + [anon_sym_usize] = ACTIONS(2090), + [anon_sym_f32] = ACTIONS(2090), + [anon_sym_f64] = ACTIONS(2090), + [anon_sym_bool] = ACTIONS(2090), + [anon_sym_str] = ACTIONS(2090), + [anon_sym_char] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_DOT_DOT] = ACTIONS(2088), + [anon_sym_COLON_COLON] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_gen] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_impl] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_mod] = ACTIONS(2090), + [anon_sym_pub] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_trait] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2090), + [anon_sym_unsafe] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_move] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2088), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2090), + [anon_sym_false] = ACTIONS(2090), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_crate] = ACTIONS(2090), + [sym_metavariable] = ACTIONS(2088), + [sym__raw_string_literal_start] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_macro_rules_BANG] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_u8] = ACTIONS(2104), - [anon_sym_i8] = ACTIONS(2104), - [anon_sym_u16] = ACTIONS(2104), - [anon_sym_i16] = ACTIONS(2104), - [anon_sym_u32] = ACTIONS(2104), - [anon_sym_i32] = ACTIONS(2104), - [anon_sym_u64] = ACTIONS(2104), - [anon_sym_i64] = ACTIONS(2104), - [anon_sym_u128] = ACTIONS(2104), - [anon_sym_i128] = ACTIONS(2104), - [anon_sym_isize] = ACTIONS(2104), - [anon_sym_usize] = ACTIONS(2104), - [anon_sym_f32] = ACTIONS(2104), - [anon_sym_f64] = ACTIONS(2104), - [anon_sym_bool] = ACTIONS(2104), - [anon_sym_str] = ACTIONS(2104), - [anon_sym_char] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_COLON_COLON] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), - [anon_sym_fn] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_gen] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_impl] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_loop] = ACTIONS(2104), - [anon_sym_match] = ACTIONS(2104), - [anon_sym_mod] = ACTIONS(2104), - [anon_sym_pub] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_struct] = ACTIONS(2104), - [anon_sym_trait] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_union] = ACTIONS(2104), - [anon_sym_unsafe] = ACTIONS(2104), - [anon_sym_use] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [sym_integer_literal] = ACTIONS(2102), - [aux_sym_string_literal_token1] = ACTIONS(2102), - [sym_char_literal] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_crate] = ACTIONS(2104), - [sym_metavariable] = ACTIONS(2102), - [sym__raw_string_literal_start] = ACTIONS(2102), - [sym_float_literal] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_u8] = ACTIONS(2094), + [anon_sym_i8] = ACTIONS(2094), + [anon_sym_u16] = ACTIONS(2094), + [anon_sym_i16] = ACTIONS(2094), + [anon_sym_u32] = ACTIONS(2094), + [anon_sym_i32] = ACTIONS(2094), + [anon_sym_u64] = ACTIONS(2094), + [anon_sym_i64] = ACTIONS(2094), + [anon_sym_u128] = ACTIONS(2094), + [anon_sym_i128] = ACTIONS(2094), + [anon_sym_isize] = ACTIONS(2094), + [anon_sym_usize] = ACTIONS(2094), + [anon_sym_f32] = ACTIONS(2094), + [anon_sym_f64] = ACTIONS(2094), + [anon_sym_bool] = ACTIONS(2094), + [anon_sym_str] = ACTIONS(2094), + [anon_sym_char] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_DOT_DOT] = ACTIONS(2092), + [anon_sym_COLON_COLON] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_async] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_fn] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_gen] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_impl] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_mod] = ACTIONS(2094), + [anon_sym_pub] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(2094), + [anon_sym_trait] = ACTIONS(2094), + [anon_sym_type] = ACTIONS(2094), + [anon_sym_union] = ACTIONS(2094), + [anon_sym_unsafe] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_yield] = ACTIONS(2094), + [anon_sym_move] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [sym_integer_literal] = ACTIONS(2092), + [aux_sym_string_literal_token1] = ACTIONS(2092), + [sym_char_literal] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2094), + [anon_sym_false] = ACTIONS(2094), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2094), + [sym_super] = ACTIONS(2094), + [sym_crate] = ACTIONS(2094), + [sym_metavariable] = ACTIONS(2092), + [sym__raw_string_literal_start] = ACTIONS(2092), + [sym_float_literal] = ACTIONS(2092), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_macro_rules_BANG] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_u8] = ACTIONS(2108), - [anon_sym_i8] = ACTIONS(2108), - [anon_sym_u16] = ACTIONS(2108), - [anon_sym_i16] = ACTIONS(2108), - [anon_sym_u32] = ACTIONS(2108), - [anon_sym_i32] = ACTIONS(2108), - [anon_sym_u64] = ACTIONS(2108), - [anon_sym_i64] = ACTIONS(2108), - [anon_sym_u128] = ACTIONS(2108), - [anon_sym_i128] = ACTIONS(2108), - [anon_sym_isize] = ACTIONS(2108), - [anon_sym_usize] = ACTIONS(2108), - [anon_sym_f32] = ACTIONS(2108), - [anon_sym_f64] = ACTIONS(2108), - [anon_sym_bool] = ACTIONS(2108), - [anon_sym_str] = ACTIONS(2108), - [anon_sym_char] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_impl] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_loop] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_mod] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_trait] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_use] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2106), - [aux_sym_string_literal_token1] = ACTIONS(2106), - [sym_char_literal] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_crate] = ACTIONS(2108), - [sym_metavariable] = ACTIONS(2106), - [sym__raw_string_literal_start] = ACTIONS(2106), - [sym_float_literal] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_macro_rules_BANG] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_gen] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_yield] = ACTIONS(2098), + [anon_sym_move] = ACTIONS(2098), + [anon_sym_try] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2096), + [aux_sym_string_literal_token1] = ACTIONS(2096), + [sym_char_literal] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2096), + [sym__raw_string_literal_start] = ACTIONS(2096), + [sym_float_literal] = ACTIONS(2096), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_macro_rules_BANG] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_u8] = ACTIONS(2112), - [anon_sym_i8] = ACTIONS(2112), - [anon_sym_u16] = ACTIONS(2112), - [anon_sym_i16] = ACTIONS(2112), - [anon_sym_u32] = ACTIONS(2112), - [anon_sym_i32] = ACTIONS(2112), - [anon_sym_u64] = ACTIONS(2112), - [anon_sym_i64] = ACTIONS(2112), - [anon_sym_u128] = ACTIONS(2112), - [anon_sym_i128] = ACTIONS(2112), - [anon_sym_isize] = ACTIONS(2112), - [anon_sym_usize] = ACTIONS(2112), - [anon_sym_f32] = ACTIONS(2112), - [anon_sym_f64] = ACTIONS(2112), - [anon_sym_bool] = ACTIONS(2112), - [anon_sym_str] = ACTIONS(2112), - [anon_sym_char] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2110), - [anon_sym_COLON_COLON] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_default] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_gen] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_loop] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_mod] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_trait] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_use] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_yield] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2112), - [sym_integer_literal] = ACTIONS(2110), - [aux_sym_string_literal_token1] = ACTIONS(2110), - [sym_char_literal] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2112), - [sym_super] = ACTIONS(2112), - [sym_crate] = ACTIONS(2112), - [sym_metavariable] = ACTIONS(2110), - [sym__raw_string_literal_start] = ACTIONS(2110), - [sym_float_literal] = ACTIONS(2110), + [ts_builtin_sym_end] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_macro_rules_BANG] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_u8] = ACTIONS(2102), + [anon_sym_i8] = ACTIONS(2102), + [anon_sym_u16] = ACTIONS(2102), + [anon_sym_i16] = ACTIONS(2102), + [anon_sym_u32] = ACTIONS(2102), + [anon_sym_i32] = ACTIONS(2102), + [anon_sym_u64] = ACTIONS(2102), + [anon_sym_i64] = ACTIONS(2102), + [anon_sym_u128] = ACTIONS(2102), + [anon_sym_i128] = ACTIONS(2102), + [anon_sym_isize] = ACTIONS(2102), + [anon_sym_usize] = ACTIONS(2102), + [anon_sym_f32] = ACTIONS(2102), + [anon_sym_f64] = ACTIONS(2102), + [anon_sym_bool] = ACTIONS(2102), + [anon_sym_str] = ACTIONS(2102), + [anon_sym_char] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_DOT_DOT] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_gen] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_impl] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_mod] = ACTIONS(2102), + [anon_sym_pub] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_trait] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_unsafe] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_yield] = ACTIONS(2102), + [anon_sym_move] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2102), + [sym_integer_literal] = ACTIONS(2100), + [aux_sym_string_literal_token1] = ACTIONS(2100), + [sym_char_literal] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2102), + [anon_sym_false] = ACTIONS(2102), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2102), + [sym_super] = ACTIONS(2102), + [sym_crate] = ACTIONS(2102), + [sym_metavariable] = ACTIONS(2100), + [sym__raw_string_literal_start] = ACTIONS(2100), + [sym_float_literal] = ACTIONS(2100), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_macro_rules_BANG] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_u8] = ACTIONS(2116), - [anon_sym_i8] = ACTIONS(2116), - [anon_sym_u16] = ACTIONS(2116), - [anon_sym_i16] = ACTIONS(2116), - [anon_sym_u32] = ACTIONS(2116), - [anon_sym_i32] = ACTIONS(2116), - [anon_sym_u64] = ACTIONS(2116), - [anon_sym_i64] = ACTIONS(2116), - [anon_sym_u128] = ACTIONS(2116), - [anon_sym_i128] = ACTIONS(2116), - [anon_sym_isize] = ACTIONS(2116), - [anon_sym_usize] = ACTIONS(2116), - [anon_sym_f32] = ACTIONS(2116), - [anon_sym_f64] = ACTIONS(2116), - [anon_sym_bool] = ACTIONS(2116), - [anon_sym_str] = ACTIONS(2116), - [anon_sym_char] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_DOT_DOT] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [anon_sym_fn] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_gen] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_impl] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(2116), - [anon_sym_trait] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_union] = ACTIONS(2116), - [anon_sym_unsafe] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [sym_integer_literal] = ACTIONS(2114), - [aux_sym_string_literal_token1] = ACTIONS(2114), - [sym_char_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_crate] = ACTIONS(2116), - [sym_metavariable] = ACTIONS(2114), - [sym__raw_string_literal_start] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2114), + [ts_builtin_sym_end] = ACTIONS(2104), + [sym_identifier] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_macro_rules_BANG] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_u8] = ACTIONS(2106), + [anon_sym_i8] = ACTIONS(2106), + [anon_sym_u16] = ACTIONS(2106), + [anon_sym_i16] = ACTIONS(2106), + [anon_sym_u32] = ACTIONS(2106), + [anon_sym_i32] = ACTIONS(2106), + [anon_sym_u64] = ACTIONS(2106), + [anon_sym_i64] = ACTIONS(2106), + [anon_sym_u128] = ACTIONS(2106), + [anon_sym_i128] = ACTIONS(2106), + [anon_sym_isize] = ACTIONS(2106), + [anon_sym_usize] = ACTIONS(2106), + [anon_sym_f32] = ACTIONS(2106), + [anon_sym_f64] = ACTIONS(2106), + [anon_sym_bool] = ACTIONS(2106), + [anon_sym_str] = ACTIONS(2106), + [anon_sym_char] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_DOT_DOT] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_gen] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_impl] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_mod] = ACTIONS(2106), + [anon_sym_pub] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(2106), + [anon_sym_trait] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2106), + [anon_sym_union] = ACTIONS(2106), + [anon_sym_unsafe] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_yield] = ACTIONS(2106), + [anon_sym_move] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2104), + [aux_sym_string_literal_token1] = ACTIONS(2104), + [sym_char_literal] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2106), + [sym_super] = ACTIONS(2106), + [sym_crate] = ACTIONS(2106), + [sym_metavariable] = ACTIONS(2104), + [sym__raw_string_literal_start] = ACTIONS(2104), + [sym_float_literal] = ACTIONS(2104), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_macro_rules_BANG] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_u8] = ACTIONS(2120), - [anon_sym_i8] = ACTIONS(2120), - [anon_sym_u16] = ACTIONS(2120), - [anon_sym_i16] = ACTIONS(2120), - [anon_sym_u32] = ACTIONS(2120), - [anon_sym_i32] = ACTIONS(2120), - [anon_sym_u64] = ACTIONS(2120), - [anon_sym_i64] = ACTIONS(2120), - [anon_sym_u128] = ACTIONS(2120), - [anon_sym_i128] = ACTIONS(2120), - [anon_sym_isize] = ACTIONS(2120), - [anon_sym_usize] = ACTIONS(2120), - [anon_sym_f32] = ACTIONS(2120), - [anon_sym_f64] = ACTIONS(2120), - [anon_sym_bool] = ACTIONS(2120), - [anon_sym_str] = ACTIONS(2120), - [anon_sym_char] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_COLON_COLON] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), - [anon_sym_fn] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_gen] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_impl] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_mod] = ACTIONS(2120), - [anon_sym_pub] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_union] = ACTIONS(2120), - [anon_sym_unsafe] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [sym_integer_literal] = ACTIONS(2118), - [aux_sym_string_literal_token1] = ACTIONS(2118), - [sym_char_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_crate] = ACTIONS(2120), - [sym_metavariable] = ACTIONS(2118), - [sym__raw_string_literal_start] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2108), + [sym_identifier] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_macro_rules_BANG] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_u8] = ACTIONS(2110), + [anon_sym_i8] = ACTIONS(2110), + [anon_sym_u16] = ACTIONS(2110), + [anon_sym_i16] = ACTIONS(2110), + [anon_sym_u32] = ACTIONS(2110), + [anon_sym_i32] = ACTIONS(2110), + [anon_sym_u64] = ACTIONS(2110), + [anon_sym_i64] = ACTIONS(2110), + [anon_sym_u128] = ACTIONS(2110), + [anon_sym_i128] = ACTIONS(2110), + [anon_sym_isize] = ACTIONS(2110), + [anon_sym_usize] = ACTIONS(2110), + [anon_sym_f32] = ACTIONS(2110), + [anon_sym_f64] = ACTIONS(2110), + [anon_sym_bool] = ACTIONS(2110), + [anon_sym_str] = ACTIONS(2110), + [anon_sym_char] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2108), + [anon_sym_DOT_DOT] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_fn] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_mod] = ACTIONS(2110), + [anon_sym_pub] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_struct] = ACTIONS(2110), + [anon_sym_trait] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_union] = ACTIONS(2110), + [anon_sym_unsafe] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_move] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [sym_integer_literal] = ACTIONS(2108), + [aux_sym_string_literal_token1] = ACTIONS(2108), + [sym_char_literal] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_crate] = ACTIONS(2110), + [sym_metavariable] = ACTIONS(2108), + [sym__raw_string_literal_start] = ACTIONS(2108), + [sym_float_literal] = ACTIONS(2108), }, [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_macro_rules_BANG] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_u8] = ACTIONS(2124), - [anon_sym_i8] = ACTIONS(2124), - [anon_sym_u16] = ACTIONS(2124), - [anon_sym_i16] = ACTIONS(2124), - [anon_sym_u32] = ACTIONS(2124), - [anon_sym_i32] = ACTIONS(2124), - [anon_sym_u64] = ACTIONS(2124), - [anon_sym_i64] = ACTIONS(2124), - [anon_sym_u128] = ACTIONS(2124), - [anon_sym_i128] = ACTIONS(2124), - [anon_sym_isize] = ACTIONS(2124), - [anon_sym_usize] = ACTIONS(2124), - [anon_sym_f32] = ACTIONS(2124), - [anon_sym_f64] = ACTIONS(2124), - [anon_sym_bool] = ACTIONS(2124), - [anon_sym_str] = ACTIONS(2124), - [anon_sym_char] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_async] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_gen] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_impl] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_mod] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_trait] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_yield] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [sym_integer_literal] = ACTIONS(2122), - [aux_sym_string_literal_token1] = ACTIONS(2122), - [sym_char_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2124), - [anon_sym_false] = ACTIONS(2124), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2124), - [sym_super] = ACTIONS(2124), - [sym_crate] = ACTIONS(2124), - [sym_metavariable] = ACTIONS(2122), - [sym__raw_string_literal_start] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2112), + [sym_identifier] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_macro_rules_BANG] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_u8] = ACTIONS(2114), + [anon_sym_i8] = ACTIONS(2114), + [anon_sym_u16] = ACTIONS(2114), + [anon_sym_i16] = ACTIONS(2114), + [anon_sym_u32] = ACTIONS(2114), + [anon_sym_i32] = ACTIONS(2114), + [anon_sym_u64] = ACTIONS(2114), + [anon_sym_i64] = ACTIONS(2114), + [anon_sym_u128] = ACTIONS(2114), + [anon_sym_i128] = ACTIONS(2114), + [anon_sym_isize] = ACTIONS(2114), + [anon_sym_usize] = ACTIONS(2114), + [anon_sym_f32] = ACTIONS(2114), + [anon_sym_f64] = ACTIONS(2114), + [anon_sym_bool] = ACTIONS(2114), + [anon_sym_str] = ACTIONS(2114), + [anon_sym_char] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_BANG] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2112), + [anon_sym_DOT_DOT] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2112), + [anon_sym_POUND] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_async] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_default] = ACTIONS(2114), + [anon_sym_enum] = ACTIONS(2114), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_gen] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_impl] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2114), + [anon_sym_pub] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_struct] = ACTIONS(2114), + [anon_sym_trait] = ACTIONS(2114), + [anon_sym_type] = ACTIONS(2114), + [anon_sym_union] = ACTIONS(2114), + [anon_sym_unsafe] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_yield] = ACTIONS(2114), + [anon_sym_move] = ACTIONS(2114), + [anon_sym_try] = ACTIONS(2114), + [sym_integer_literal] = ACTIONS(2112), + [aux_sym_string_literal_token1] = ACTIONS(2112), + [sym_char_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2114), + [sym_super] = ACTIONS(2114), + [sym_crate] = ACTIONS(2114), + [sym_metavariable] = ACTIONS(2112), + [sym__raw_string_literal_start] = ACTIONS(2112), + [sym_float_literal] = ACTIONS(2112), }, [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_macro_rules_BANG] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_u8] = ACTIONS(2128), - [anon_sym_i8] = ACTIONS(2128), - [anon_sym_u16] = ACTIONS(2128), - [anon_sym_i16] = ACTIONS(2128), - [anon_sym_u32] = ACTIONS(2128), - [anon_sym_i32] = ACTIONS(2128), - [anon_sym_u64] = ACTIONS(2128), - [anon_sym_i64] = ACTIONS(2128), - [anon_sym_u128] = ACTIONS(2128), - [anon_sym_i128] = ACTIONS(2128), - [anon_sym_isize] = ACTIONS(2128), - [anon_sym_usize] = ACTIONS(2128), - [anon_sym_f32] = ACTIONS(2128), - [anon_sym_f64] = ACTIONS(2128), - [anon_sym_bool] = ACTIONS(2128), - [anon_sym_str] = ACTIONS(2128), - [anon_sym_char] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_COLON_COLON] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [anon_sym_fn] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_gen] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_impl] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_mod] = ACTIONS(2128), - [anon_sym_pub] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_struct] = ACTIONS(2128), - [anon_sym_trait] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_union] = ACTIONS(2128), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2126), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_crate] = ACTIONS(2128), - [sym_metavariable] = ACTIONS(2126), - [sym__raw_string_literal_start] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2116), + [sym_identifier] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_macro_rules_BANG] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2116), + [anon_sym_u8] = ACTIONS(2118), + [anon_sym_i8] = ACTIONS(2118), + [anon_sym_u16] = ACTIONS(2118), + [anon_sym_i16] = ACTIONS(2118), + [anon_sym_u32] = ACTIONS(2118), + [anon_sym_i32] = ACTIONS(2118), + [anon_sym_u64] = ACTIONS(2118), + [anon_sym_i64] = ACTIONS(2118), + [anon_sym_u128] = ACTIONS(2118), + [anon_sym_i128] = ACTIONS(2118), + [anon_sym_isize] = ACTIONS(2118), + [anon_sym_usize] = ACTIONS(2118), + [anon_sym_f32] = ACTIONS(2118), + [anon_sym_f64] = ACTIONS(2118), + [anon_sym_bool] = ACTIONS(2118), + [anon_sym_str] = ACTIONS(2118), + [anon_sym_char] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2116), + [anon_sym_DOT_DOT] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2116), + [anon_sym_POUND] = ACTIONS(2116), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_async] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_default] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [anon_sym_fn] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_gen] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_impl] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_mod] = ACTIONS(2118), + [anon_sym_pub] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2118), + [anon_sym_trait] = ACTIONS(2118), + [anon_sym_type] = ACTIONS(2118), + [anon_sym_union] = ACTIONS(2118), + [anon_sym_unsafe] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_yield] = ACTIONS(2118), + [anon_sym_move] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2118), + [sym_integer_literal] = ACTIONS(2116), + [aux_sym_string_literal_token1] = ACTIONS(2116), + [sym_char_literal] = ACTIONS(2116), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2118), + [sym_super] = ACTIONS(2118), + [sym_crate] = ACTIONS(2118), + [sym_metavariable] = ACTIONS(2116), + [sym__raw_string_literal_start] = ACTIONS(2116), + [sym_float_literal] = ACTIONS(2116), }, [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2130), - [anon_sym_macro_rules_BANG] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_u8] = ACTIONS(2132), - [anon_sym_i8] = ACTIONS(2132), - [anon_sym_u16] = ACTIONS(2132), - [anon_sym_i16] = ACTIONS(2132), - [anon_sym_u32] = ACTIONS(2132), - [anon_sym_i32] = ACTIONS(2132), - [anon_sym_u64] = ACTIONS(2132), - [anon_sym_i64] = ACTIONS(2132), - [anon_sym_u128] = ACTIONS(2132), - [anon_sym_i128] = ACTIONS(2132), - [anon_sym_isize] = ACTIONS(2132), - [anon_sym_usize] = ACTIONS(2132), - [anon_sym_f32] = ACTIONS(2132), - [anon_sym_f64] = ACTIONS(2132), - [anon_sym_bool] = ACTIONS(2132), - [anon_sym_str] = ACTIONS(2132), - [anon_sym_char] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_COLON_COLON] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_async] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_enum] = ACTIONS(2132), - [anon_sym_fn] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_gen] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_impl] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_mod] = ACTIONS(2132), - [anon_sym_pub] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_struct] = ACTIONS(2132), - [anon_sym_trait] = ACTIONS(2132), - [anon_sym_type] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_unsafe] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_yield] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [sym_integer_literal] = ACTIONS(2130), - [aux_sym_string_literal_token1] = ACTIONS(2130), - [sym_char_literal] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2132), - [sym_super] = ACTIONS(2132), - [sym_crate] = ACTIONS(2132), - [sym_metavariable] = ACTIONS(2130), - [sym__raw_string_literal_start] = ACTIONS(2130), - [sym_float_literal] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_macro_rules_BANG] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_u8] = ACTIONS(2122), + [anon_sym_i8] = ACTIONS(2122), + [anon_sym_u16] = ACTIONS(2122), + [anon_sym_i16] = ACTIONS(2122), + [anon_sym_u32] = ACTIONS(2122), + [anon_sym_i32] = ACTIONS(2122), + [anon_sym_u64] = ACTIONS(2122), + [anon_sym_i64] = ACTIONS(2122), + [anon_sym_u128] = ACTIONS(2122), + [anon_sym_i128] = ACTIONS(2122), + [anon_sym_isize] = ACTIONS(2122), + [anon_sym_usize] = ACTIONS(2122), + [anon_sym_f32] = ACTIONS(2122), + [anon_sym_f64] = ACTIONS(2122), + [anon_sym_bool] = ACTIONS(2122), + [anon_sym_str] = ACTIONS(2122), + [anon_sym_char] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_fn] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_gen] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_impl] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_mod] = ACTIONS(2122), + [anon_sym_pub] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsafe] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_move] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [sym_integer_literal] = ACTIONS(2120), + [aux_sym_string_literal_token1] = ACTIONS(2120), + [sym_char_literal] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_crate] = ACTIONS(2122), + [sym_metavariable] = ACTIONS(2120), + [sym__raw_string_literal_start] = ACTIONS(2120), + [sym_float_literal] = ACTIONS(2120), }, [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_macro_rules_BANG] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_u8] = ACTIONS(2136), - [anon_sym_i8] = ACTIONS(2136), - [anon_sym_u16] = ACTIONS(2136), - [anon_sym_i16] = ACTIONS(2136), - [anon_sym_u32] = ACTIONS(2136), - [anon_sym_i32] = ACTIONS(2136), - [anon_sym_u64] = ACTIONS(2136), - [anon_sym_i64] = ACTIONS(2136), - [anon_sym_u128] = ACTIONS(2136), - [anon_sym_i128] = ACTIONS(2136), - [anon_sym_isize] = ACTIONS(2136), - [anon_sym_usize] = ACTIONS(2136), - [anon_sym_f32] = ACTIONS(2136), - [anon_sym_f64] = ACTIONS(2136), - [anon_sym_bool] = ACTIONS(2136), - [anon_sym_str] = ACTIONS(2136), - [anon_sym_char] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_async] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_default] = ACTIONS(2136), - [anon_sym_enum] = ACTIONS(2136), - [anon_sym_fn] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_gen] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_impl] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_mod] = ACTIONS(2136), - [anon_sym_pub] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(2136), - [anon_sym_trait] = ACTIONS(2136), - [anon_sym_type] = ACTIONS(2136), - [anon_sym_union] = ACTIONS(2136), - [anon_sym_unsafe] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_yield] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [sym_integer_literal] = ACTIONS(2134), - [aux_sym_string_literal_token1] = ACTIONS(2134), - [sym_char_literal] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2136), - [sym_super] = ACTIONS(2136), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2134), - [sym__raw_string_literal_start] = ACTIONS(2134), - [sym_float_literal] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2124), + [sym_identifier] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_macro_rules_BANG] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_u8] = ACTIONS(2126), + [anon_sym_i8] = ACTIONS(2126), + [anon_sym_u16] = ACTIONS(2126), + [anon_sym_i16] = ACTIONS(2126), + [anon_sym_u32] = ACTIONS(2126), + [anon_sym_i32] = ACTIONS(2126), + [anon_sym_u64] = ACTIONS(2126), + [anon_sym_i64] = ACTIONS(2126), + [anon_sym_u128] = ACTIONS(2126), + [anon_sym_i128] = ACTIONS(2126), + [anon_sym_isize] = ACTIONS(2126), + [anon_sym_usize] = ACTIONS(2126), + [anon_sym_f32] = ACTIONS(2126), + [anon_sym_f64] = ACTIONS(2126), + [anon_sym_bool] = ACTIONS(2126), + [anon_sym_str] = ACTIONS(2126), + [anon_sym_char] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [anon_sym_fn] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_gen] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_impl] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_loop] = ACTIONS(2126), + [anon_sym_match] = ACTIONS(2126), + [anon_sym_mod] = ACTIONS(2126), + [anon_sym_pub] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_struct] = ACTIONS(2126), + [anon_sym_trait] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2126), + [anon_sym_use] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_move] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2124), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_crate] = ACTIONS(2126), + [sym_metavariable] = ACTIONS(2124), + [sym__raw_string_literal_start] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), }, [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_macro_rules_BANG] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_u8] = ACTIONS(2140), - [anon_sym_i8] = ACTIONS(2140), - [anon_sym_u16] = ACTIONS(2140), - [anon_sym_i16] = ACTIONS(2140), - [anon_sym_u32] = ACTIONS(2140), - [anon_sym_i32] = ACTIONS(2140), - [anon_sym_u64] = ACTIONS(2140), - [anon_sym_i64] = ACTIONS(2140), - [anon_sym_u128] = ACTIONS(2140), - [anon_sym_i128] = ACTIONS(2140), - [anon_sym_isize] = ACTIONS(2140), - [anon_sym_usize] = ACTIONS(2140), - [anon_sym_f32] = ACTIONS(2140), - [anon_sym_f64] = ACTIONS(2140), - [anon_sym_bool] = ACTIONS(2140), - [anon_sym_str] = ACTIONS(2140), - [anon_sym_char] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_COLON_COLON] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [anon_sym_fn] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_gen] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_impl] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_mod] = ACTIONS(2140), - [anon_sym_pub] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(2140), - [anon_sym_trait] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_union] = ACTIONS(2140), - [anon_sym_unsafe] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [sym_integer_literal] = ACTIONS(2138), - [aux_sym_string_literal_token1] = ACTIONS(2138), - [sym_char_literal] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_crate] = ACTIONS(2140), - [sym_metavariable] = ACTIONS(2138), - [sym__raw_string_literal_start] = ACTIONS(2138), - [sym_float_literal] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_macro_rules_BANG] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(2128), + [anon_sym_u8] = ACTIONS(2130), + [anon_sym_i8] = ACTIONS(2130), + [anon_sym_u16] = ACTIONS(2130), + [anon_sym_i16] = ACTIONS(2130), + [anon_sym_u32] = ACTIONS(2130), + [anon_sym_i32] = ACTIONS(2130), + [anon_sym_u64] = ACTIONS(2130), + [anon_sym_i64] = ACTIONS(2130), + [anon_sym_u128] = ACTIONS(2130), + [anon_sym_i128] = ACTIONS(2130), + [anon_sym_isize] = ACTIONS(2130), + [anon_sym_usize] = ACTIONS(2130), + [anon_sym_f32] = ACTIONS(2130), + [anon_sym_f64] = ACTIONS(2130), + [anon_sym_bool] = ACTIONS(2130), + [anon_sym_str] = ACTIONS(2130), + [anon_sym_char] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_BANG] = ACTIONS(2128), + [anon_sym_AMP] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(2128), + [anon_sym_SQUOTE] = ACTIONS(2130), + [anon_sym_async] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_default] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [anon_sym_fn] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_gen] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_impl] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_mod] = ACTIONS(2130), + [anon_sym_pub] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_struct] = ACTIONS(2130), + [anon_sym_trait] = ACTIONS(2130), + [anon_sym_type] = ACTIONS(2130), + [anon_sym_union] = ACTIONS(2130), + [anon_sym_unsafe] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_yield] = ACTIONS(2130), + [anon_sym_move] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2130), + [sym_integer_literal] = ACTIONS(2128), + [aux_sym_string_literal_token1] = ACTIONS(2128), + [sym_char_literal] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2130), + [sym_super] = ACTIONS(2130), + [sym_crate] = ACTIONS(2130), + [sym_metavariable] = ACTIONS(2128), + [sym__raw_string_literal_start] = ACTIONS(2128), + [sym_float_literal] = ACTIONS(2128), }, [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_macro_rules_BANG] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_u8] = ACTIONS(2144), - [anon_sym_i8] = ACTIONS(2144), - [anon_sym_u16] = ACTIONS(2144), - [anon_sym_i16] = ACTIONS(2144), - [anon_sym_u32] = ACTIONS(2144), - [anon_sym_i32] = ACTIONS(2144), - [anon_sym_u64] = ACTIONS(2144), - [anon_sym_i64] = ACTIONS(2144), - [anon_sym_u128] = ACTIONS(2144), - [anon_sym_i128] = ACTIONS(2144), - [anon_sym_isize] = ACTIONS(2144), - [anon_sym_usize] = ACTIONS(2144), - [anon_sym_f32] = ACTIONS(2144), - [anon_sym_f64] = ACTIONS(2144), - [anon_sym_bool] = ACTIONS(2144), - [anon_sym_str] = ACTIONS(2144), - [anon_sym_char] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_gen] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_yield] = ACTIONS(2144), - [anon_sym_move] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2142), - [aux_sym_string_literal_token1] = ACTIONS(2142), - [sym_char_literal] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2142), - [sym__raw_string_literal_start] = ACTIONS(2142), - [sym_float_literal] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_macro_rules_BANG] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_u8] = ACTIONS(2134), + [anon_sym_i8] = ACTIONS(2134), + [anon_sym_u16] = ACTIONS(2134), + [anon_sym_i16] = ACTIONS(2134), + [anon_sym_u32] = ACTIONS(2134), + [anon_sym_i32] = ACTIONS(2134), + [anon_sym_u64] = ACTIONS(2134), + [anon_sym_i64] = ACTIONS(2134), + [anon_sym_u128] = ACTIONS(2134), + [anon_sym_i128] = ACTIONS(2134), + [anon_sym_isize] = ACTIONS(2134), + [anon_sym_usize] = ACTIONS(2134), + [anon_sym_f32] = ACTIONS(2134), + [anon_sym_f64] = ACTIONS(2134), + [anon_sym_bool] = ACTIONS(2134), + [anon_sym_str] = ACTIONS(2134), + [anon_sym_char] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_fn] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_gen] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_impl] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_mod] = ACTIONS(2134), + [anon_sym_pub] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_trait] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_unsafe] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_move] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [sym_integer_literal] = ACTIONS(2132), + [aux_sym_string_literal_token1] = ACTIONS(2132), + [sym_char_literal] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2134), + [sym_metavariable] = ACTIONS(2132), + [sym__raw_string_literal_start] = ACTIONS(2132), + [sym_float_literal] = ACTIONS(2132), }, [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_macro_rules_BANG] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_u8] = ACTIONS(2148), - [anon_sym_i8] = ACTIONS(2148), - [anon_sym_u16] = ACTIONS(2148), - [anon_sym_i16] = ACTIONS(2148), - [anon_sym_u32] = ACTIONS(2148), - [anon_sym_i32] = ACTIONS(2148), - [anon_sym_u64] = ACTIONS(2148), - [anon_sym_i64] = ACTIONS(2148), - [anon_sym_u128] = ACTIONS(2148), - [anon_sym_i128] = ACTIONS(2148), - [anon_sym_isize] = ACTIONS(2148), - [anon_sym_usize] = ACTIONS(2148), - [anon_sym_f32] = ACTIONS(2148), - [anon_sym_f64] = ACTIONS(2148), - [anon_sym_bool] = ACTIONS(2148), - [anon_sym_str] = ACTIONS(2148), - [anon_sym_char] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_async] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_gen] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_impl] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_mod] = ACTIONS(2148), - [anon_sym_pub] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_trait] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_unsafe] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_yield] = ACTIONS(2148), - [anon_sym_move] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2146), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2148), - [sym_super] = ACTIONS(2148), - [sym_crate] = ACTIONS(2148), - [sym_metavariable] = ACTIONS(2146), - [sym__raw_string_literal_start] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_macro_rules_BANG] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_u8] = ACTIONS(2138), + [anon_sym_i8] = ACTIONS(2138), + [anon_sym_u16] = ACTIONS(2138), + [anon_sym_i16] = ACTIONS(2138), + [anon_sym_u32] = ACTIONS(2138), + [anon_sym_i32] = ACTIONS(2138), + [anon_sym_u64] = ACTIONS(2138), + [anon_sym_i64] = ACTIONS(2138), + [anon_sym_u128] = ACTIONS(2138), + [anon_sym_i128] = ACTIONS(2138), + [anon_sym_isize] = ACTIONS(2138), + [anon_sym_usize] = ACTIONS(2138), + [anon_sym_f32] = ACTIONS(2138), + [anon_sym_f64] = ACTIONS(2138), + [anon_sym_bool] = ACTIONS(2138), + [anon_sym_str] = ACTIONS(2138), + [anon_sym_char] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_fn] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_gen] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_impl] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_mod] = ACTIONS(2138), + [anon_sym_pub] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_trait] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_unsafe] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_move] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [sym_integer_literal] = ACTIONS(2136), + [aux_sym_string_literal_token1] = ACTIONS(2136), + [sym_char_literal] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_crate] = ACTIONS(2138), + [sym_metavariable] = ACTIONS(2136), + [sym__raw_string_literal_start] = ACTIONS(2136), + [sym_float_literal] = ACTIONS(2136), }, [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_macro_rules_BANG] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2152), - [anon_sym_i8] = ACTIONS(2152), - [anon_sym_u16] = ACTIONS(2152), - [anon_sym_i16] = ACTIONS(2152), - [anon_sym_u32] = ACTIONS(2152), - [anon_sym_i32] = ACTIONS(2152), - [anon_sym_u64] = ACTIONS(2152), - [anon_sym_i64] = ACTIONS(2152), - [anon_sym_u128] = ACTIONS(2152), - [anon_sym_i128] = ACTIONS(2152), - [anon_sym_isize] = ACTIONS(2152), - [anon_sym_usize] = ACTIONS(2152), - [anon_sym_f32] = ACTIONS(2152), - [anon_sym_f64] = ACTIONS(2152), - [anon_sym_bool] = ACTIONS(2152), - [anon_sym_str] = ACTIONS(2152), - [anon_sym_char] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2150), - [anon_sym_COLON_COLON] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_fn] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_gen] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_impl] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_mod] = ACTIONS(2152), - [anon_sym_pub] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_trait] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [anon_sym_unsafe] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_move] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [sym_integer_literal] = ACTIONS(2150), - [aux_sym_string_literal_token1] = ACTIONS(2150), - [sym_char_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_crate] = ACTIONS(2152), - [sym_metavariable] = ACTIONS(2150), - [sym__raw_string_literal_start] = ACTIONS(2150), - [sym_float_literal] = ACTIONS(2150), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_macro_rules_BANG] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_u8] = ACTIONS(2142), + [anon_sym_i8] = ACTIONS(2142), + [anon_sym_u16] = ACTIONS(2142), + [anon_sym_i16] = ACTIONS(2142), + [anon_sym_u32] = ACTIONS(2142), + [anon_sym_i32] = ACTIONS(2142), + [anon_sym_u64] = ACTIONS(2142), + [anon_sym_i64] = ACTIONS(2142), + [anon_sym_u128] = ACTIONS(2142), + [anon_sym_i128] = ACTIONS(2142), + [anon_sym_isize] = ACTIONS(2142), + [anon_sym_usize] = ACTIONS(2142), + [anon_sym_f32] = ACTIONS(2142), + [anon_sym_f64] = ACTIONS(2142), + [anon_sym_bool] = ACTIONS(2142), + [anon_sym_str] = ACTIONS(2142), + [anon_sym_char] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [anon_sym_fn] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_gen] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_impl] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_mod] = ACTIONS(2142), + [anon_sym_pub] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2142), + [anon_sym_trait] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_union] = ACTIONS(2142), + [anon_sym_unsafe] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [sym_integer_literal] = ACTIONS(2140), + [aux_sym_string_literal_token1] = ACTIONS(2140), + [sym_char_literal] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_crate] = ACTIONS(2142), + [sym_metavariable] = ACTIONS(2140), + [sym__raw_string_literal_start] = ACTIONS(2140), + [sym_float_literal] = ACTIONS(2140), }, [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_macro_rules_BANG] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_DOT_DOT] = ACTIONS(2154), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_gen] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_impl] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_mod] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_trait] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_move] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [sym_integer_literal] = ACTIONS(2154), - [aux_sym_string_literal_token1] = ACTIONS(2154), - [sym_char_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_crate] = ACTIONS(2156), - [sym_metavariable] = ACTIONS(2154), - [sym__raw_string_literal_start] = ACTIONS(2154), - [sym_float_literal] = ACTIONS(2154), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_macro_rules_BANG] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_u8] = ACTIONS(2146), + [anon_sym_i8] = ACTIONS(2146), + [anon_sym_u16] = ACTIONS(2146), + [anon_sym_i16] = ACTIONS(2146), + [anon_sym_u32] = ACTIONS(2146), + [anon_sym_i32] = ACTIONS(2146), + [anon_sym_u64] = ACTIONS(2146), + [anon_sym_i64] = ACTIONS(2146), + [anon_sym_u128] = ACTIONS(2146), + [anon_sym_i128] = ACTIONS(2146), + [anon_sym_isize] = ACTIONS(2146), + [anon_sym_usize] = ACTIONS(2146), + [anon_sym_f32] = ACTIONS(2146), + [anon_sym_f64] = ACTIONS(2146), + [anon_sym_bool] = ACTIONS(2146), + [anon_sym_str] = ACTIONS(2146), + [anon_sym_char] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_COLON_COLON] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_fn] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_gen] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_impl] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_mod] = ACTIONS(2146), + [anon_sym_pub] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_struct] = ACTIONS(2146), + [anon_sym_trait] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_union] = ACTIONS(2146), + [anon_sym_unsafe] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2146), + [anon_sym_move] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [sym_integer_literal] = ACTIONS(2144), + [aux_sym_string_literal_token1] = ACTIONS(2144), + [sym_char_literal] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_crate] = ACTIONS(2146), + [sym_metavariable] = ACTIONS(2144), + [sym__raw_string_literal_start] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), }, [STATE(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_macro_rules_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_u8] = ACTIONS(2160), - [anon_sym_i8] = ACTIONS(2160), - [anon_sym_u16] = ACTIONS(2160), - [anon_sym_i16] = ACTIONS(2160), - [anon_sym_u32] = ACTIONS(2160), - [anon_sym_i32] = ACTIONS(2160), - [anon_sym_u64] = ACTIONS(2160), - [anon_sym_i64] = ACTIONS(2160), - [anon_sym_u128] = ACTIONS(2160), - [anon_sym_i128] = ACTIONS(2160), - [anon_sym_isize] = ACTIONS(2160), - [anon_sym_usize] = ACTIONS(2160), - [anon_sym_f32] = ACTIONS(2160), - [anon_sym_f64] = ACTIONS(2160), - [anon_sym_bool] = ACTIONS(2160), - [anon_sym_str] = ACTIONS(2160), - [anon_sym_char] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2158), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_fn] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_gen] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_impl] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_mod] = ACTIONS(2160), - [anon_sym_pub] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_trait] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_unsafe] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_move] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(2158), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2158), - [sym__raw_string_literal_start] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_macro_rules_BANG] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_u8] = ACTIONS(2150), + [anon_sym_i8] = ACTIONS(2150), + [anon_sym_u16] = ACTIONS(2150), + [anon_sym_i16] = ACTIONS(2150), + [anon_sym_u32] = ACTIONS(2150), + [anon_sym_i32] = ACTIONS(2150), + [anon_sym_u64] = ACTIONS(2150), + [anon_sym_i64] = ACTIONS(2150), + [anon_sym_u128] = ACTIONS(2150), + [anon_sym_i128] = ACTIONS(2150), + [anon_sym_isize] = ACTIONS(2150), + [anon_sym_usize] = ACTIONS(2150), + [anon_sym_f32] = ACTIONS(2150), + [anon_sym_f64] = ACTIONS(2150), + [anon_sym_bool] = ACTIONS(2150), + [anon_sym_str] = ACTIONS(2150), + [anon_sym_char] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2150), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_fn] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_gen] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_impl] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_mod] = ACTIONS(2150), + [anon_sym_pub] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2150), + [anon_sym_trait] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_unsafe] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_yield] = ACTIONS(2150), + [anon_sym_move] = ACTIONS(2150), + [anon_sym_try] = ACTIONS(2150), + [sym_integer_literal] = ACTIONS(2148), + [aux_sym_string_literal_token1] = ACTIONS(2148), + [sym_char_literal] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2150), + [sym_super] = ACTIONS(2150), + [sym_crate] = ACTIONS(2150), + [sym_metavariable] = ACTIONS(2148), + [sym__raw_string_literal_start] = ACTIONS(2148), + [sym_float_literal] = ACTIONS(2148), }, [STATE(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_macro_rules_BANG] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_u8] = ACTIONS(2164), - [anon_sym_i8] = ACTIONS(2164), - [anon_sym_u16] = ACTIONS(2164), - [anon_sym_i16] = ACTIONS(2164), - [anon_sym_u32] = ACTIONS(2164), - [anon_sym_i32] = ACTIONS(2164), - [anon_sym_u64] = ACTIONS(2164), - [anon_sym_i64] = ACTIONS(2164), - [anon_sym_u128] = ACTIONS(2164), - [anon_sym_i128] = ACTIONS(2164), - [anon_sym_isize] = ACTIONS(2164), - [anon_sym_usize] = ACTIONS(2164), - [anon_sym_f32] = ACTIONS(2164), - [anon_sym_f64] = ACTIONS(2164), - [anon_sym_bool] = ACTIONS(2164), - [anon_sym_str] = ACTIONS(2164), - [anon_sym_char] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_gen] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_impl] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_loop] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_mod] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_trait] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_use] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_move] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2162), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_crate] = ACTIONS(2164), - [sym_metavariable] = ACTIONS(2162), - [sym__raw_string_literal_start] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_macro_rules_BANG] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_u8] = ACTIONS(2154), + [anon_sym_i8] = ACTIONS(2154), + [anon_sym_u16] = ACTIONS(2154), + [anon_sym_i16] = ACTIONS(2154), + [anon_sym_u32] = ACTIONS(2154), + [anon_sym_i32] = ACTIONS(2154), + [anon_sym_u64] = ACTIONS(2154), + [anon_sym_i64] = ACTIONS(2154), + [anon_sym_u128] = ACTIONS(2154), + [anon_sym_i128] = ACTIONS(2154), + [anon_sym_isize] = ACTIONS(2154), + [anon_sym_usize] = ACTIONS(2154), + [anon_sym_f32] = ACTIONS(2154), + [anon_sym_f64] = ACTIONS(2154), + [anon_sym_bool] = ACTIONS(2154), + [anon_sym_str] = ACTIONS(2154), + [anon_sym_char] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_const] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_fn] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_gen] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_impl] = ACTIONS(2154), + [anon_sym_let] = ACTIONS(2154), + [anon_sym_loop] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2154), + [anon_sym_mod] = ACTIONS(2154), + [anon_sym_pub] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_struct] = ACTIONS(2154), + [anon_sym_trait] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2154), + [anon_sym_union] = ACTIONS(2154), + [anon_sym_unsafe] = ACTIONS(2154), + [anon_sym_use] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_yield] = ACTIONS(2154), + [anon_sym_move] = ACTIONS(2154), + [anon_sym_try] = ACTIONS(2154), + [sym_integer_literal] = ACTIONS(2152), + [aux_sym_string_literal_token1] = ACTIONS(2152), + [sym_char_literal] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2154), + [sym_super] = ACTIONS(2154), + [sym_crate] = ACTIONS(2154), + [sym_metavariable] = ACTIONS(2152), + [sym__raw_string_literal_start] = ACTIONS(2152), + [sym_float_literal] = ACTIONS(2152), }, [STATE(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_macro_rules_BANG] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_u8] = ACTIONS(2168), - [anon_sym_i8] = ACTIONS(2168), - [anon_sym_u16] = ACTIONS(2168), - [anon_sym_i16] = ACTIONS(2168), - [anon_sym_u32] = ACTIONS(2168), - [anon_sym_i32] = ACTIONS(2168), - [anon_sym_u64] = ACTIONS(2168), - [anon_sym_i64] = ACTIONS(2168), - [anon_sym_u128] = ACTIONS(2168), - [anon_sym_i128] = ACTIONS(2168), - [anon_sym_isize] = ACTIONS(2168), - [anon_sym_usize] = ACTIONS(2168), - [anon_sym_f32] = ACTIONS(2168), - [anon_sym_f64] = ACTIONS(2168), - [anon_sym_bool] = ACTIONS(2168), - [anon_sym_str] = ACTIONS(2168), - [anon_sym_char] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [anon_sym_fn] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_gen] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_impl] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_loop] = ACTIONS(2168), - [anon_sym_match] = ACTIONS(2168), - [anon_sym_mod] = ACTIONS(2168), - [anon_sym_pub] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_trait] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2168), - [anon_sym_unsafe] = ACTIONS(2168), - [anon_sym_use] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_move] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [sym_integer_literal] = ACTIONS(2166), - [aux_sym_string_literal_token1] = ACTIONS(2166), - [sym_char_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_crate] = ACTIONS(2168), - [sym_metavariable] = ACTIONS(2166), - [sym__raw_string_literal_start] = ACTIONS(2166), - [sym_float_literal] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_macro_rules_BANG] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_DOT_DOT] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_async] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_fn] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_gen] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_impl] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_mod] = ACTIONS(2158), + [anon_sym_pub] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_struct] = ACTIONS(2158), + [anon_sym_trait] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_unsafe] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_yield] = ACTIONS(2158), + [anon_sym_move] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2156), + [aux_sym_string_literal_token1] = ACTIONS(2156), + [sym_char_literal] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2158), + [sym_super] = ACTIONS(2158), + [sym_crate] = ACTIONS(2158), + [sym_metavariable] = ACTIONS(2156), + [sym__raw_string_literal_start] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), }, [STATE(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_macro_rules_BANG] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_u8] = ACTIONS(2172), - [anon_sym_i8] = ACTIONS(2172), - [anon_sym_u16] = ACTIONS(2172), - [anon_sym_i16] = ACTIONS(2172), - [anon_sym_u32] = ACTIONS(2172), - [anon_sym_i32] = ACTIONS(2172), - [anon_sym_u64] = ACTIONS(2172), - [anon_sym_i64] = ACTIONS(2172), - [anon_sym_u128] = ACTIONS(2172), - [anon_sym_i128] = ACTIONS(2172), - [anon_sym_isize] = ACTIONS(2172), - [anon_sym_usize] = ACTIONS(2172), - [anon_sym_f32] = ACTIONS(2172), - [anon_sym_f64] = ACTIONS(2172), - [anon_sym_bool] = ACTIONS(2172), - [anon_sym_str] = ACTIONS(2172), - [anon_sym_char] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_COLON_COLON] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_gen] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_impl] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_mod] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_trait] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_move] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2170), - [aux_sym_string_literal_token1] = ACTIONS(2170), - [sym_char_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2170), - [sym__raw_string_literal_start] = ACTIONS(2170), - [sym_float_literal] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_macro_rules_BANG] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_u8] = ACTIONS(2162), + [anon_sym_i8] = ACTIONS(2162), + [anon_sym_u16] = ACTIONS(2162), + [anon_sym_i16] = ACTIONS(2162), + [anon_sym_u32] = ACTIONS(2162), + [anon_sym_i32] = ACTIONS(2162), + [anon_sym_u64] = ACTIONS(2162), + [anon_sym_i64] = ACTIONS(2162), + [anon_sym_u128] = ACTIONS(2162), + [anon_sym_i128] = ACTIONS(2162), + [anon_sym_isize] = ACTIONS(2162), + [anon_sym_usize] = ACTIONS(2162), + [anon_sym_f32] = ACTIONS(2162), + [anon_sym_f64] = ACTIONS(2162), + [anon_sym_bool] = ACTIONS(2162), + [anon_sym_str] = ACTIONS(2162), + [anon_sym_char] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_gen] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_impl] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_mod] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_trait] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_use] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_yield] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2162), + [sym_integer_literal] = ACTIONS(2160), + [aux_sym_string_literal_token1] = ACTIONS(2160), + [sym_char_literal] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2162), + [sym_super] = ACTIONS(2162), + [sym_crate] = ACTIONS(2162), + [sym_metavariable] = ACTIONS(2160), + [sym__raw_string_literal_start] = ACTIONS(2160), + [sym_float_literal] = ACTIONS(2160), }, [STATE(584)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [aux_sym_declaration_list_repeat1] = STATE(664), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_macro_rules_BANG] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_u8] = ACTIONS(2166), + [anon_sym_i8] = ACTIONS(2166), + [anon_sym_u16] = ACTIONS(2166), + [anon_sym_i16] = ACTIONS(2166), + [anon_sym_u32] = ACTIONS(2166), + [anon_sym_i32] = ACTIONS(2166), + [anon_sym_u64] = ACTIONS(2166), + [anon_sym_i64] = ACTIONS(2166), + [anon_sym_u128] = ACTIONS(2166), + [anon_sym_i128] = ACTIONS(2166), + [anon_sym_isize] = ACTIONS(2166), + [anon_sym_usize] = ACTIONS(2166), + [anon_sym_f32] = ACTIONS(2166), + [anon_sym_f64] = ACTIONS(2166), + [anon_sym_bool] = ACTIONS(2166), + [anon_sym_str] = ACTIONS(2166), + [anon_sym_char] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_DOT_DOT] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_fn] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_gen] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_impl] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_loop] = ACTIONS(2166), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_mod] = ACTIONS(2166), + [anon_sym_pub] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_struct] = ACTIONS(2166), + [anon_sym_trait] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_union] = ACTIONS(2166), + [anon_sym_unsafe] = ACTIONS(2166), + [anon_sym_use] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_move] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [sym_integer_literal] = ACTIONS(2164), + [aux_sym_string_literal_token1] = ACTIONS(2164), + [sym_char_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_crate] = ACTIONS(2166), + [sym_metavariable] = ACTIONS(2164), + [sym__raw_string_literal_start] = ACTIONS(2164), + [sym_float_literal] = ACTIONS(2164), + }, + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2168), + [anon_sym_macro_rules_BANG] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_gen] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_impl] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_mod] = ACTIONS(2170), + [anon_sym_pub] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_struct] = ACTIONS(2170), + [anon_sym_trait] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_union] = ACTIONS(2170), + [anon_sym_unsafe] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_move] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [sym_integer_literal] = ACTIONS(2168), + [aux_sym_string_literal_token1] = ACTIONS(2168), + [sym_char_literal] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_crate] = ACTIONS(2170), + [sym_metavariable] = ACTIONS(2168), + [sym__raw_string_literal_start] = ACTIONS(2168), + [sym_float_literal] = ACTIONS(2168), + }, + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(2172), [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_macro_rules_BANG] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_u8] = ACTIONS(2174), + [anon_sym_i8] = ACTIONS(2174), + [anon_sym_u16] = ACTIONS(2174), + [anon_sym_i16] = ACTIONS(2174), + [anon_sym_u32] = ACTIONS(2174), + [anon_sym_i32] = ACTIONS(2174), + [anon_sym_u64] = ACTIONS(2174), + [anon_sym_i64] = ACTIONS(2174), + [anon_sym_u128] = ACTIONS(2174), + [anon_sym_i128] = ACTIONS(2174), + [anon_sym_isize] = ACTIONS(2174), + [anon_sym_usize] = ACTIONS(2174), + [anon_sym_f32] = ACTIONS(2174), + [anon_sym_f64] = ACTIONS(2174), + [anon_sym_bool] = ACTIONS(2174), + [anon_sym_str] = ACTIONS(2174), + [anon_sym_char] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [anon_sym_fn] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_gen] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_impl] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_mod] = ACTIONS(2174), + [anon_sym_pub] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_struct] = ACTIONS(2174), + [anon_sym_trait] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_union] = ACTIONS(2174), + [anon_sym_unsafe] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_move] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [sym_integer_literal] = ACTIONS(2172), + [aux_sym_string_literal_token1] = ACTIONS(2172), + [sym_char_literal] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_crate] = ACTIONS(2174), + [sym_metavariable] = ACTIONS(2172), + [sym__raw_string_literal_start] = ACTIONS(2172), + [sym_float_literal] = ACTIONS(2172), + }, + [STATE(587)] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2178), [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [anon_sym_macro_rules_BANG] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_u8] = ACTIONS(2178), + [anon_sym_i8] = ACTIONS(2178), + [anon_sym_u16] = ACTIONS(2178), + [anon_sym_i16] = ACTIONS(2178), + [anon_sym_u32] = ACTIONS(2178), + [anon_sym_i32] = ACTIONS(2178), + [anon_sym_u64] = ACTIONS(2178), + [anon_sym_i64] = ACTIONS(2178), + [anon_sym_u128] = ACTIONS(2178), + [anon_sym_i128] = ACTIONS(2178), + [anon_sym_isize] = ACTIONS(2178), + [anon_sym_usize] = ACTIONS(2178), + [anon_sym_f32] = ACTIONS(2178), + [anon_sym_f64] = ACTIONS(2178), + [anon_sym_bool] = ACTIONS(2178), + [anon_sym_str] = ACTIONS(2178), + [anon_sym_char] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2176), + [anon_sym_COLON_COLON] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_fn] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_gen] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_impl] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_loop] = ACTIONS(2178), + [anon_sym_match] = ACTIONS(2178), + [anon_sym_mod] = ACTIONS(2178), + [anon_sym_pub] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_trait] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_unsafe] = ACTIONS(2178), + [anon_sym_use] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_move] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [sym_integer_literal] = ACTIONS(2176), + [aux_sym_string_literal_token1] = ACTIONS(2176), + [sym_char_literal] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2178), + [anon_sym_false] = ACTIONS(2178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_crate] = ACTIONS(2178), + [sym_metavariable] = ACTIONS(2176), + [sym__raw_string_literal_start] = ACTIONS(2176), + [sym_float_literal] = ACTIONS(2176), + }, + [STATE(588)] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_macro_rules_BANG] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), [anon_sym_u8] = ACTIONS(2182), [anon_sym_i8] = ACTIONS(2182), [anon_sym_u16] = ACTIONS(2182), @@ -78742,442 +79308,1276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2182), [anon_sym_str] = ACTIONS(2182), [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_fn] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_gen] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_impl] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_mod] = ACTIONS(2182), + [anon_sym_pub] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_trait] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_unsafe] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_move] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2180), + [aux_sym_string_literal_token1] = ACTIONS(2180), + [sym_char_literal] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_crate] = ACTIONS(2182), + [sym_metavariable] = ACTIONS(2180), + [sym__raw_string_literal_start] = ACTIONS(2180), + [sym_float_literal] = ACTIONS(2180), + }, + [STATE(589)] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_macro_rules_BANG] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_u8] = ACTIONS(2186), + [anon_sym_i8] = ACTIONS(2186), + [anon_sym_u16] = ACTIONS(2186), + [anon_sym_i16] = ACTIONS(2186), + [anon_sym_u32] = ACTIONS(2186), + [anon_sym_i32] = ACTIONS(2186), + [anon_sym_u64] = ACTIONS(2186), + [anon_sym_i64] = ACTIONS(2186), + [anon_sym_u128] = ACTIONS(2186), + [anon_sym_i128] = ACTIONS(2186), + [anon_sym_isize] = ACTIONS(2186), + [anon_sym_usize] = ACTIONS(2186), + [anon_sym_f32] = ACTIONS(2186), + [anon_sym_f64] = ACTIONS(2186), + [anon_sym_bool] = ACTIONS(2186), + [anon_sym_str] = ACTIONS(2186), + [anon_sym_char] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_DOT_DOT] = ACTIONS(2184), [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_fn] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_gen] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_impl] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_mod] = ACTIONS(2186), + [anon_sym_pub] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_trait] = ACTIONS(2186), + [anon_sym_type] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_unsafe] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_yield] = ACTIONS(2186), + [anon_sym_move] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(2184), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2184), + [sym__raw_string_literal_start] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), + }, + [STATE(590)] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_macro_rules_BANG] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_u8] = ACTIONS(2190), + [anon_sym_i8] = ACTIONS(2190), + [anon_sym_u16] = ACTIONS(2190), + [anon_sym_i16] = ACTIONS(2190), + [anon_sym_u32] = ACTIONS(2190), + [anon_sym_i32] = ACTIONS(2190), + [anon_sym_u64] = ACTIONS(2190), + [anon_sym_i64] = ACTIONS(2190), + [anon_sym_u128] = ACTIONS(2190), + [anon_sym_i128] = ACTIONS(2190), + [anon_sym_isize] = ACTIONS(2190), + [anon_sym_usize] = ACTIONS(2190), + [anon_sym_f32] = ACTIONS(2190), + [anon_sym_f64] = ACTIONS(2190), + [anon_sym_bool] = ACTIONS(2190), + [anon_sym_str] = ACTIONS(2190), + [anon_sym_char] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2190), + [anon_sym_async] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_fn] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_gen] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_impl] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_mod] = ACTIONS(2190), + [anon_sym_pub] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_trait] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_unsafe] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_yield] = ACTIONS(2190), + [anon_sym_move] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [sym_integer_literal] = ACTIONS(2188), + [aux_sym_string_literal_token1] = ACTIONS(2188), + [sym_char_literal] = ACTIONS(2188), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2190), + [sym_super] = ACTIONS(2190), + [sym_crate] = ACTIONS(2190), + [sym_metavariable] = ACTIONS(2188), + [sym__raw_string_literal_start] = ACTIONS(2188), + [sym_float_literal] = ACTIONS(2188), + }, + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_macro_rules_BANG] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_u8] = ACTIONS(2194), + [anon_sym_i8] = ACTIONS(2194), + [anon_sym_u16] = ACTIONS(2194), + [anon_sym_i16] = ACTIONS(2194), + [anon_sym_u32] = ACTIONS(2194), + [anon_sym_i32] = ACTIONS(2194), + [anon_sym_u64] = ACTIONS(2194), + [anon_sym_i64] = ACTIONS(2194), + [anon_sym_u128] = ACTIONS(2194), + [anon_sym_i128] = ACTIONS(2194), + [anon_sym_isize] = ACTIONS(2194), + [anon_sym_usize] = ACTIONS(2194), + [anon_sym_f32] = ACTIONS(2194), + [anon_sym_f64] = ACTIONS(2194), + [anon_sym_bool] = ACTIONS(2194), + [anon_sym_str] = ACTIONS(2194), + [anon_sym_char] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2194), + [anon_sym_async] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_gen] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_impl] = ACTIONS(2194), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_loop] = ACTIONS(2194), + [anon_sym_match] = ACTIONS(2194), + [anon_sym_mod] = ACTIONS(2194), + [anon_sym_pub] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_trait] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_unsafe] = ACTIONS(2194), + [anon_sym_use] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym_yield] = ACTIONS(2194), + [anon_sym_move] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [sym_integer_literal] = ACTIONS(2192), + [aux_sym_string_literal_token1] = ACTIONS(2192), + [sym_char_literal] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2194), + [sym_super] = ACTIONS(2194), + [sym_crate] = ACTIONS(2194), + [sym_metavariable] = ACTIONS(2192), + [sym__raw_string_literal_start] = ACTIONS(2192), + [sym_float_literal] = ACTIONS(2192), + }, + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [ts_builtin_sym_end] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_macro_rules_BANG] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_u8] = ACTIONS(2198), + [anon_sym_i8] = ACTIONS(2198), + [anon_sym_u16] = ACTIONS(2198), + [anon_sym_i16] = ACTIONS(2198), + [anon_sym_u32] = ACTIONS(2198), + [anon_sym_i32] = ACTIONS(2198), + [anon_sym_u64] = ACTIONS(2198), + [anon_sym_i64] = ACTIONS(2198), + [anon_sym_u128] = ACTIONS(2198), + [anon_sym_i128] = ACTIONS(2198), + [anon_sym_isize] = ACTIONS(2198), + [anon_sym_usize] = ACTIONS(2198), + [anon_sym_f32] = ACTIONS(2198), + [anon_sym_f64] = ACTIONS(2198), + [anon_sym_bool] = ACTIONS(2198), + [anon_sym_str] = ACTIONS(2198), + [anon_sym_char] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_DOT_DOT] = ACTIONS(2196), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_fn] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_gen] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_loop] = ACTIONS(2198), + [anon_sym_match] = ACTIONS(2198), + [anon_sym_mod] = ACTIONS(2198), + [anon_sym_pub] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_trait] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_unsafe] = ACTIONS(2198), + [anon_sym_use] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_move] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [sym_integer_literal] = ACTIONS(2196), + [aux_sym_string_literal_token1] = ACTIONS(2196), + [sym_char_literal] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_crate] = ACTIONS(2198), + [sym_metavariable] = ACTIONS(2196), + [sym__raw_string_literal_start] = ACTIONS(2196), + [sym_float_literal] = ACTIONS(2196), + }, + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_macro_rules_BANG] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_u8] = ACTIONS(2202), + [anon_sym_i8] = ACTIONS(2202), + [anon_sym_u16] = ACTIONS(2202), + [anon_sym_i16] = ACTIONS(2202), + [anon_sym_u32] = ACTIONS(2202), + [anon_sym_i32] = ACTIONS(2202), + [anon_sym_u64] = ACTIONS(2202), + [anon_sym_i64] = ACTIONS(2202), + [anon_sym_u128] = ACTIONS(2202), + [anon_sym_i128] = ACTIONS(2202), + [anon_sym_isize] = ACTIONS(2202), + [anon_sym_usize] = ACTIONS(2202), + [anon_sym_f32] = ACTIONS(2202), + [anon_sym_f64] = ACTIONS(2202), + [anon_sym_bool] = ACTIONS(2202), + [anon_sym_str] = ACTIONS(2202), + [anon_sym_char] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2202), + [anon_sym_async] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_fn] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_gen] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_impl] = ACTIONS(2202), + [anon_sym_let] = ACTIONS(2202), + [anon_sym_loop] = ACTIONS(2202), + [anon_sym_match] = ACTIONS(2202), [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), + [anon_sym_pub] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_trait] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_unsafe] = ACTIONS(2202), + [anon_sym_use] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_yield] = ACTIONS(2202), + [anon_sym_move] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2200), + [aux_sym_string_literal_token1] = ACTIONS(2200), + [sym_char_literal] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2202), + [sym_super] = ACTIONS(2202), + [sym_crate] = ACTIONS(2202), + [sym_metavariable] = ACTIONS(2200), + [sym__raw_string_literal_start] = ACTIONS(2200), + [sym_float_literal] = ACTIONS(2200), + }, + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_macro_rules_BANG] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_u8] = ACTIONS(2206), + [anon_sym_i8] = ACTIONS(2206), + [anon_sym_u16] = ACTIONS(2206), + [anon_sym_i16] = ACTIONS(2206), + [anon_sym_u32] = ACTIONS(2206), + [anon_sym_i32] = ACTIONS(2206), + [anon_sym_u64] = ACTIONS(2206), + [anon_sym_i64] = ACTIONS(2206), + [anon_sym_u128] = ACTIONS(2206), + [anon_sym_i128] = ACTIONS(2206), + [anon_sym_isize] = ACTIONS(2206), + [anon_sym_usize] = ACTIONS(2206), + [anon_sym_f32] = ACTIONS(2206), + [anon_sym_f64] = ACTIONS(2206), + [anon_sym_bool] = ACTIONS(2206), + [anon_sym_str] = ACTIONS(2206), + [anon_sym_char] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_gen] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_yield] = ACTIONS(2206), + [anon_sym_move] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2204), + [aux_sym_string_literal_token1] = ACTIONS(2204), + [sym_char_literal] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2204), + [sym__raw_string_literal_start] = ACTIONS(2204), + [sym_float_literal] = ACTIONS(2204), + }, + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_macro_rules_BANG] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_u8] = ACTIONS(2210), + [anon_sym_i8] = ACTIONS(2210), + [anon_sym_u16] = ACTIONS(2210), + [anon_sym_i16] = ACTIONS(2210), + [anon_sym_u32] = ACTIONS(2210), + [anon_sym_i32] = ACTIONS(2210), + [anon_sym_u64] = ACTIONS(2210), + [anon_sym_i64] = ACTIONS(2210), + [anon_sym_u128] = ACTIONS(2210), + [anon_sym_i128] = ACTIONS(2210), + [anon_sym_isize] = ACTIONS(2210), + [anon_sym_usize] = ACTIONS(2210), + [anon_sym_f32] = ACTIONS(2210), + [anon_sym_f64] = ACTIONS(2210), + [anon_sym_bool] = ACTIONS(2210), + [anon_sym_str] = ACTIONS(2210), + [anon_sym_char] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_DOT_DOT] = ACTIONS(2208), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_POUND] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2210), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_fn] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_gen] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_impl] = ACTIONS(2210), + [anon_sym_let] = ACTIONS(2210), + [anon_sym_loop] = ACTIONS(2210), + [anon_sym_match] = ACTIONS(2210), + [anon_sym_mod] = ACTIONS(2210), + [anon_sym_pub] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_trait] = ACTIONS(2210), [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_unsafe] = ACTIONS(2210), + [anon_sym_use] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym_yield] = ACTIONS(2210), + [anon_sym_move] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [sym_integer_literal] = ACTIONS(2208), + [aux_sym_string_literal_token1] = ACTIONS(2208), + [sym_char_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2210), + [sym_super] = ACTIONS(2210), + [sym_crate] = ACTIONS(2210), + [sym_metavariable] = ACTIONS(2208), + [sym__raw_string_literal_start] = ACTIONS(2208), + [sym_float_literal] = ACTIONS(2208), + }, + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_macro_rules_BANG] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_u8] = ACTIONS(2214), + [anon_sym_i8] = ACTIONS(2214), + [anon_sym_u16] = ACTIONS(2214), + [anon_sym_i16] = ACTIONS(2214), + [anon_sym_u32] = ACTIONS(2214), + [anon_sym_i32] = ACTIONS(2214), + [anon_sym_u64] = ACTIONS(2214), + [anon_sym_i64] = ACTIONS(2214), + [anon_sym_u128] = ACTIONS(2214), + [anon_sym_i128] = ACTIONS(2214), + [anon_sym_isize] = ACTIONS(2214), + [anon_sym_usize] = ACTIONS(2214), + [anon_sym_f32] = ACTIONS(2214), + [anon_sym_f64] = ACTIONS(2214), + [anon_sym_bool] = ACTIONS(2214), + [anon_sym_str] = ACTIONS(2214), + [anon_sym_char] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_DOT_DOT] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_fn] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_gen] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_impl] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_mod] = ACTIONS(2214), + [anon_sym_pub] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_trait] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_move] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2212), + [aux_sym_string_literal_token1] = ACTIONS(2212), + [sym_char_literal] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_crate] = ACTIONS(2214), + [sym_metavariable] = ACTIONS(2212), + [sym__raw_string_literal_start] = ACTIONS(2212), + [sym_float_literal] = ACTIONS(2212), + }, + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_macro_rules_BANG] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_u8] = ACTIONS(2218), + [anon_sym_i8] = ACTIONS(2218), + [anon_sym_u16] = ACTIONS(2218), + [anon_sym_i16] = ACTIONS(2218), + [anon_sym_u32] = ACTIONS(2218), + [anon_sym_i32] = ACTIONS(2218), + [anon_sym_u64] = ACTIONS(2218), + [anon_sym_i64] = ACTIONS(2218), + [anon_sym_u128] = ACTIONS(2218), + [anon_sym_i128] = ACTIONS(2218), + [anon_sym_isize] = ACTIONS(2218), + [anon_sym_usize] = ACTIONS(2218), + [anon_sym_f32] = ACTIONS(2218), + [anon_sym_f64] = ACTIONS(2218), + [anon_sym_bool] = ACTIONS(2218), + [anon_sym_str] = ACTIONS(2218), + [anon_sym_char] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2218), + [anon_sym_async] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_fn] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_gen] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_impl] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_mod] = ACTIONS(2218), + [anon_sym_pub] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_trait] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_unsafe] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), + [anon_sym_yield] = ACTIONS(2218), + [anon_sym_move] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [sym_integer_literal] = ACTIONS(2216), + [aux_sym_string_literal_token1] = ACTIONS(2216), + [sym_char_literal] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2218), + [sym_super] = ACTIONS(2218), + [sym_crate] = ACTIONS(2218), + [sym_metavariable] = ACTIONS(2216), + [sym__raw_string_literal_start] = ACTIONS(2216), + [sym_float_literal] = ACTIONS(2216), + }, + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_macro_rules_BANG] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_u8] = ACTIONS(2222), + [anon_sym_i8] = ACTIONS(2222), + [anon_sym_u16] = ACTIONS(2222), + [anon_sym_i16] = ACTIONS(2222), + [anon_sym_u32] = ACTIONS(2222), + [anon_sym_i32] = ACTIONS(2222), + [anon_sym_u64] = ACTIONS(2222), + [anon_sym_i64] = ACTIONS(2222), + [anon_sym_u128] = ACTIONS(2222), + [anon_sym_i128] = ACTIONS(2222), + [anon_sym_isize] = ACTIONS(2222), + [anon_sym_usize] = ACTIONS(2222), + [anon_sym_f32] = ACTIONS(2222), + [anon_sym_f64] = ACTIONS(2222), + [anon_sym_bool] = ACTIONS(2222), + [anon_sym_str] = ACTIONS(2222), + [anon_sym_char] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_DOT_DOT] = ACTIONS(2220), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_fn] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_gen] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_impl] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_mod] = ACTIONS(2222), + [anon_sym_pub] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_trait] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_unsafe] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_move] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [sym_integer_literal] = ACTIONS(2220), + [aux_sym_string_literal_token1] = ACTIONS(2220), + [sym_char_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), + [sym_metavariable] = ACTIONS(2220), + [sym__raw_string_literal_start] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), }, - [STATE(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_macro_rules_BANG] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(2228), - [anon_sym_i8] = ACTIONS(2228), - [anon_sym_u16] = ACTIONS(2228), - [anon_sym_i16] = ACTIONS(2228), - [anon_sym_u32] = ACTIONS(2228), - [anon_sym_i32] = ACTIONS(2228), - [anon_sym_u64] = ACTIONS(2228), - [anon_sym_i64] = ACTIONS(2228), - [anon_sym_u128] = ACTIONS(2228), - [anon_sym_i128] = ACTIONS(2228), - [anon_sym_isize] = ACTIONS(2228), - [anon_sym_usize] = ACTIONS(2228), - [anon_sym_f32] = ACTIONS(2228), - [anon_sym_f64] = ACTIONS(2228), - [anon_sym_bool] = ACTIONS(2228), - [anon_sym_str] = ACTIONS(2228), - [anon_sym_char] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_fn] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_gen] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_impl] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_loop] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2228), - [anon_sym_mod] = ACTIONS(2228), - [anon_sym_pub] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_trait] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_unsafe] = ACTIONS(2228), - [anon_sym_use] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_move] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [aux_sym_string_literal_token1] = ACTIONS(2226), - [sym_char_literal] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_crate] = ACTIONS(2228), - [sym_metavariable] = ACTIONS(2226), - [sym__raw_string_literal_start] = ACTIONS(2226), - [sym_float_literal] = ACTIONS(2226), + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_macro_rules_BANG] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_u8] = ACTIONS(2226), + [anon_sym_i8] = ACTIONS(2226), + [anon_sym_u16] = ACTIONS(2226), + [anon_sym_i16] = ACTIONS(2226), + [anon_sym_u32] = ACTIONS(2226), + [anon_sym_i32] = ACTIONS(2226), + [anon_sym_u64] = ACTIONS(2226), + [anon_sym_i64] = ACTIONS(2226), + [anon_sym_u128] = ACTIONS(2226), + [anon_sym_i128] = ACTIONS(2226), + [anon_sym_isize] = ACTIONS(2226), + [anon_sym_usize] = ACTIONS(2226), + [anon_sym_f32] = ACTIONS(2226), + [anon_sym_f64] = ACTIONS(2226), + [anon_sym_bool] = ACTIONS(2226), + [anon_sym_str] = ACTIONS(2226), + [anon_sym_char] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_fn] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_gen] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_impl] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_mod] = ACTIONS(2226), + [anon_sym_pub] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_trait] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_unsafe] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_move] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [sym_integer_literal] = ACTIONS(2224), + [aux_sym_string_literal_token1] = ACTIONS(2224), + [sym_char_literal] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_crate] = ACTIONS(2226), + [sym_metavariable] = ACTIONS(2224), + [sym__raw_string_literal_start] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), }, - [STATE(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_macro_rules_BANG] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_u8] = ACTIONS(2232), - [anon_sym_i8] = ACTIONS(2232), - [anon_sym_u16] = ACTIONS(2232), - [anon_sym_i16] = ACTIONS(2232), - [anon_sym_u32] = ACTIONS(2232), - [anon_sym_i32] = ACTIONS(2232), - [anon_sym_u64] = ACTIONS(2232), - [anon_sym_i64] = ACTIONS(2232), - [anon_sym_u128] = ACTIONS(2232), - [anon_sym_i128] = ACTIONS(2232), - [anon_sym_isize] = ACTIONS(2232), - [anon_sym_usize] = ACTIONS(2232), - [anon_sym_f32] = ACTIONS(2232), - [anon_sym_f64] = ACTIONS(2232), - [anon_sym_bool] = ACTIONS(2232), - [anon_sym_str] = ACTIONS(2232), - [anon_sym_char] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_enum] = ACTIONS(2232), - [anon_sym_fn] = ACTIONS(2232), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_gen] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_impl] = ACTIONS(2232), - [anon_sym_let] = ACTIONS(2232), - [anon_sym_loop] = ACTIONS(2232), - [anon_sym_match] = ACTIONS(2232), - [anon_sym_mod] = ACTIONS(2232), - [anon_sym_pub] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2232), - [anon_sym_trait] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2232), - [anon_sym_union] = ACTIONS(2232), - [anon_sym_unsafe] = ACTIONS(2232), - [anon_sym_use] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_move] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [sym_integer_literal] = ACTIONS(2230), - [aux_sym_string_literal_token1] = ACTIONS(2230), - [sym_char_literal] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2230), - [sym__raw_string_literal_start] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_macro_rules_BANG] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_u8] = ACTIONS(2230), + [anon_sym_i8] = ACTIONS(2230), + [anon_sym_u16] = ACTIONS(2230), + [anon_sym_i16] = ACTIONS(2230), + [anon_sym_u32] = ACTIONS(2230), + [anon_sym_i32] = ACTIONS(2230), + [anon_sym_u64] = ACTIONS(2230), + [anon_sym_i64] = ACTIONS(2230), + [anon_sym_u128] = ACTIONS(2230), + [anon_sym_i128] = ACTIONS(2230), + [anon_sym_isize] = ACTIONS(2230), + [anon_sym_usize] = ACTIONS(2230), + [anon_sym_f32] = ACTIONS(2230), + [anon_sym_f64] = ACTIONS(2230), + [anon_sym_bool] = ACTIONS(2230), + [anon_sym_str] = ACTIONS(2230), + [anon_sym_char] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2228), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_gen] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_impl] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_mod] = ACTIONS(2230), + [anon_sym_pub] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2230), + [anon_sym_struct] = ACTIONS(2230), + [anon_sym_trait] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_union] = ACTIONS(2230), + [anon_sym_unsafe] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_move] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [sym_integer_literal] = ACTIONS(2228), + [aux_sym_string_literal_token1] = ACTIONS(2228), + [sym_char_literal] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_crate] = ACTIONS(2230), + [sym_metavariable] = ACTIONS(2228), + [sym__raw_string_literal_start] = ACTIONS(2228), + [sym_float_literal] = ACTIONS(2228), }, - [STATE(587)] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_macro_rules_BANG] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_u8] = ACTIONS(2236), - [anon_sym_i8] = ACTIONS(2236), - [anon_sym_u16] = ACTIONS(2236), - [anon_sym_i16] = ACTIONS(2236), - [anon_sym_u32] = ACTIONS(2236), - [anon_sym_i32] = ACTIONS(2236), - [anon_sym_u64] = ACTIONS(2236), - [anon_sym_i64] = ACTIONS(2236), - [anon_sym_u128] = ACTIONS(2236), - [anon_sym_i128] = ACTIONS(2236), - [anon_sym_isize] = ACTIONS(2236), - [anon_sym_usize] = ACTIONS(2236), - [anon_sym_f32] = ACTIONS(2236), - [anon_sym_f64] = ACTIONS(2236), - [anon_sym_bool] = ACTIONS(2236), - [anon_sym_str] = ACTIONS(2236), - [anon_sym_char] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), - [anon_sym_fn] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_gen] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_impl] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_loop] = ACTIONS(2236), - [anon_sym_match] = ACTIONS(2236), - [anon_sym_mod] = ACTIONS(2236), - [anon_sym_pub] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_trait] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_union] = ACTIONS(2236), - [anon_sym_unsafe] = ACTIONS(2236), - [anon_sym_use] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2234), - [sym__raw_string_literal_start] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_macro_rules_BANG] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_u8] = ACTIONS(2234), + [anon_sym_i8] = ACTIONS(2234), + [anon_sym_u16] = ACTIONS(2234), + [anon_sym_i16] = ACTIONS(2234), + [anon_sym_u32] = ACTIONS(2234), + [anon_sym_i32] = ACTIONS(2234), + [anon_sym_u64] = ACTIONS(2234), + [anon_sym_i64] = ACTIONS(2234), + [anon_sym_u128] = ACTIONS(2234), + [anon_sym_i128] = ACTIONS(2234), + [anon_sym_isize] = ACTIONS(2234), + [anon_sym_usize] = ACTIONS(2234), + [anon_sym_f32] = ACTIONS(2234), + [anon_sym_f64] = ACTIONS(2234), + [anon_sym_bool] = ACTIONS(2234), + [anon_sym_str] = ACTIONS(2234), + [anon_sym_char] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_gen] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_impl] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_mod] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_trait] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_move] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [sym_integer_literal] = ACTIONS(2232), + [aux_sym_string_literal_token1] = ACTIONS(2232), + [sym_char_literal] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_crate] = ACTIONS(2234), + [sym_metavariable] = ACTIONS(2232), + [sym__raw_string_literal_start] = ACTIONS(2232), + [sym_float_literal] = ACTIONS(2232), }, - [STATE(588)] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_macro_rules_BANG] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(2240), - [anon_sym_i8] = ACTIONS(2240), - [anon_sym_u16] = ACTIONS(2240), - [anon_sym_i16] = ACTIONS(2240), - [anon_sym_u32] = ACTIONS(2240), - [anon_sym_i32] = ACTIONS(2240), - [anon_sym_u64] = ACTIONS(2240), - [anon_sym_i64] = ACTIONS(2240), - [anon_sym_u128] = ACTIONS(2240), - [anon_sym_i128] = ACTIONS(2240), - [anon_sym_isize] = ACTIONS(2240), - [anon_sym_usize] = ACTIONS(2240), - [anon_sym_f32] = ACTIONS(2240), - [anon_sym_f64] = ACTIONS(2240), - [anon_sym_bool] = ACTIONS(2240), - [anon_sym_str] = ACTIONS(2240), - [anon_sym_char] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - [anon_sym_fn] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_gen] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_impl] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_loop] = ACTIONS(2240), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_mod] = ACTIONS(2240), - [anon_sym_pub] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(2240), - [anon_sym_trait] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_union] = ACTIONS(2240), - [anon_sym_unsafe] = ACTIONS(2240), - [anon_sym_use] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_move] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(2238), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2238), - [sym__raw_string_literal_start] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [ts_builtin_sym_end] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_macro_rules_BANG] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_u8] = ACTIONS(2238), + [anon_sym_i8] = ACTIONS(2238), + [anon_sym_u16] = ACTIONS(2238), + [anon_sym_i16] = ACTIONS(2238), + [anon_sym_u32] = ACTIONS(2238), + [anon_sym_i32] = ACTIONS(2238), + [anon_sym_u64] = ACTIONS(2238), + [anon_sym_i64] = ACTIONS(2238), + [anon_sym_u128] = ACTIONS(2238), + [anon_sym_i128] = ACTIONS(2238), + [anon_sym_isize] = ACTIONS(2238), + [anon_sym_usize] = ACTIONS(2238), + [anon_sym_f32] = ACTIONS(2238), + [anon_sym_f64] = ACTIONS(2238), + [anon_sym_bool] = ACTIONS(2238), + [anon_sym_str] = ACTIONS(2238), + [anon_sym_char] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_DOT_DOT] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_fn] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_gen] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_impl] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_mod] = ACTIONS(2238), + [anon_sym_pub] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_trait] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_unsafe] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_move] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [sym_integer_literal] = ACTIONS(2236), + [aux_sym_string_literal_token1] = ACTIONS(2236), + [sym_char_literal] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_crate] = ACTIONS(2238), + [sym_metavariable] = ACTIONS(2236), + [sym__raw_string_literal_start] = ACTIONS(2236), + [sym_float_literal] = ACTIONS(2236), }, - [STATE(589)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [ts_builtin_sym_end] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_macro_rules_BANG] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_u8] = ACTIONS(2242), + [anon_sym_i8] = ACTIONS(2242), + [anon_sym_u16] = ACTIONS(2242), + [anon_sym_i16] = ACTIONS(2242), + [anon_sym_u32] = ACTIONS(2242), + [anon_sym_i32] = ACTIONS(2242), + [anon_sym_u64] = ACTIONS(2242), + [anon_sym_i64] = ACTIONS(2242), + [anon_sym_u128] = ACTIONS(2242), + [anon_sym_i128] = ACTIONS(2242), + [anon_sym_isize] = ACTIONS(2242), + [anon_sym_usize] = ACTIONS(2242), + [anon_sym_f32] = ACTIONS(2242), + [anon_sym_f64] = ACTIONS(2242), + [anon_sym_bool] = ACTIONS(2242), + [anon_sym_str] = ACTIONS(2242), + [anon_sym_char] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_DOT_DOT] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [anon_sym_fn] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_gen] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_impl] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_mod] = ACTIONS(2242), + [anon_sym_pub] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(2242), + [anon_sym_trait] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_union] = ACTIONS(2242), + [anon_sym_unsafe] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_move] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [sym_integer_literal] = ACTIONS(2240), + [aux_sym_string_literal_token1] = ACTIONS(2240), + [sym_char_literal] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_crate] = ACTIONS(2242), + [sym_metavariable] = ACTIONS(2240), + [sym__raw_string_literal_start] = ACTIONS(2240), + [sym_float_literal] = ACTIONS(2240), }, - [STATE(590)] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), + [STATE(604)] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2244), [sym_identifier] = ACTIONS(2246), [anon_sym_SEMI] = ACTIONS(2244), @@ -79256,9 +80656,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2244), [sym_float_literal] = ACTIONS(2244), }, - [STATE(591)] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [STATE(605)] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2248), [sym_identifier] = ACTIONS(2250), [anon_sym_SEMI] = ACTIONS(2248), @@ -79337,9 +80737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2248), [sym_float_literal] = ACTIONS(2248), }, - [STATE(592)] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [STATE(606)] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2252), [sym_identifier] = ACTIONS(2254), [anon_sym_SEMI] = ACTIONS(2252), @@ -79418,9 +80818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2252), [sym_float_literal] = ACTIONS(2252), }, - [STATE(593)] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [STATE(607)] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2256), [sym_identifier] = ACTIONS(2258), [anon_sym_SEMI] = ACTIONS(2256), @@ -79499,9 +80899,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2256), [sym_float_literal] = ACTIONS(2256), }, - [STATE(594)] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [STATE(608)] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2260), [sym_identifier] = ACTIONS(2262), [anon_sym_SEMI] = ACTIONS(2260), @@ -79580,9 +80980,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2260), [sym_float_literal] = ACTIONS(2260), }, - [STATE(595)] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [STATE(609)] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2264), [sym_identifier] = ACTIONS(2266), [anon_sym_SEMI] = ACTIONS(2264), @@ -79661,9 +81061,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2264), [sym_float_literal] = ACTIONS(2264), }, - [STATE(596)] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [STATE(610)] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2268), [sym_identifier] = ACTIONS(2270), [anon_sym_SEMI] = ACTIONS(2268), @@ -79742,9 +81142,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2268), [sym_float_literal] = ACTIONS(2268), }, - [STATE(597)] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [STATE(611)] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2272), [sym_identifier] = ACTIONS(2274), [anon_sym_SEMI] = ACTIONS(2272), @@ -79823,9 +81223,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2272), [sym_float_literal] = ACTIONS(2272), }, - [STATE(598)] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [STATE(612)] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2276), [sym_identifier] = ACTIONS(2278), [anon_sym_SEMI] = ACTIONS(2276), @@ -79904,9 +81304,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2276), [sym_float_literal] = ACTIONS(2276), }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [STATE(613)] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), [ts_builtin_sym_end] = ACTIONS(2280), [sym_identifier] = ACTIONS(2282), [anon_sym_SEMI] = ACTIONS(2280), @@ -79985,9 +81385,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2280), [sym_float_literal] = ACTIONS(2280), }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [STATE(614)] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), [ts_builtin_sym_end] = ACTIONS(2284), [sym_identifier] = ACTIONS(2286), [anon_sym_SEMI] = ACTIONS(2284), @@ -80066,9 +81466,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2284), [sym_float_literal] = ACTIONS(2284), }, - [STATE(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [STATE(615)] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), [ts_builtin_sym_end] = ACTIONS(2288), [sym_identifier] = ACTIONS(2290), [anon_sym_SEMI] = ACTIONS(2288), @@ -80147,9 +81547,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2288), [sym_float_literal] = ACTIONS(2288), }, - [STATE(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [STATE(616)] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_gen] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_yield] = ACTIONS(1523), + [anon_sym_move] = ACTIONS(1523), + [anon_sym_try] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym__raw_string_literal_start] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), + }, + [STATE(617)] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), [ts_builtin_sym_end] = ACTIONS(2292), [sym_identifier] = ACTIONS(2294), [anon_sym_SEMI] = ACTIONS(2292), @@ -80228,9 +81709,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2292), [sym_float_literal] = ACTIONS(2292), }, - [STATE(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [STATE(618)] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), [ts_builtin_sym_end] = ACTIONS(2296), [sym_identifier] = ACTIONS(2298), [anon_sym_SEMI] = ACTIONS(2296), @@ -80309,9 +81790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2296), [sym_float_literal] = ACTIONS(2296), }, - [STATE(604)] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [STATE(619)] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), [ts_builtin_sym_end] = ACTIONS(2300), [sym_identifier] = ACTIONS(2302), [anon_sym_SEMI] = ACTIONS(2300), @@ -80390,9 +81871,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2300), [sym_float_literal] = ACTIONS(2300), }, - [STATE(605)] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [STATE(620)] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), [ts_builtin_sym_end] = ACTIONS(2304), [sym_identifier] = ACTIONS(2306), [anon_sym_SEMI] = ACTIONS(2304), @@ -80471,9 +81952,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2304), [sym_float_literal] = ACTIONS(2304), }, - [STATE(606)] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [STATE(621)] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2308), [sym_identifier] = ACTIONS(2310), [anon_sym_SEMI] = ACTIONS(2308), @@ -80552,9 +82033,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2308), [sym_float_literal] = ACTIONS(2308), }, - [STATE(607)] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [STATE(622)] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), [ts_builtin_sym_end] = ACTIONS(2312), [sym_identifier] = ACTIONS(2314), [anon_sym_SEMI] = ACTIONS(2312), @@ -80633,9 +82114,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2312), [sym_float_literal] = ACTIONS(2312), }, - [STATE(608)] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [STATE(623)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_pattern] = STATE(3766), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), + [aux_sym_match_arm_repeat1] = STATE(1076), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), + }, + [STATE(624)] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2316), [sym_identifier] = ACTIONS(2318), [anon_sym_SEMI] = ACTIONS(2316), @@ -80714,9 +82276,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2316), [sym_float_literal] = ACTIONS(2316), }, - [STATE(609)] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), + [STATE(625)] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2320), [sym_identifier] = ACTIONS(2322), [anon_sym_SEMI] = ACTIONS(2320), @@ -80795,9 +82357,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2320), [sym_float_literal] = ACTIONS(2320), }, - [STATE(610)] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [STATE(626)] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2324), [sym_identifier] = ACTIONS(2326), [anon_sym_SEMI] = ACTIONS(2324), @@ -80876,9 +82438,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2324), [sym_float_literal] = ACTIONS(2324), }, - [STATE(611)] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [STATE(627)] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2328), [sym_identifier] = ACTIONS(2330), [anon_sym_SEMI] = ACTIONS(2328), @@ -80957,9 +82519,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2328), [sym_float_literal] = ACTIONS(2328), }, - [STATE(612)] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [STATE(628)] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2332), [sym_identifier] = ACTIONS(2334), [anon_sym_SEMI] = ACTIONS(2332), @@ -81038,9 +82600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2332), [sym_float_literal] = ACTIONS(2332), }, - [STATE(613)] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), + [STATE(629)] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2336), [sym_identifier] = ACTIONS(2338), [anon_sym_SEMI] = ACTIONS(2336), @@ -81119,9 +82681,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2336), [sym_float_literal] = ACTIONS(2336), }, - [STATE(614)] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [STATE(630)] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2340), [sym_identifier] = ACTIONS(2342), [anon_sym_SEMI] = ACTIONS(2340), @@ -81200,9 +82762,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2340), [sym_float_literal] = ACTIONS(2340), }, - [STATE(615)] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), + [STATE(631)] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2344), [sym_identifier] = ACTIONS(2346), [anon_sym_SEMI] = ACTIONS(2344), @@ -81281,9 +82843,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2344), [sym_float_literal] = ACTIONS(2344), }, - [STATE(616)] = { - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), + [STATE(632)] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2348), [sym_identifier] = ACTIONS(2350), [anon_sym_SEMI] = ACTIONS(2348), @@ -81362,9 +82924,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2348), [sym_float_literal] = ACTIONS(2348), }, - [STATE(617)] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), + [STATE(633)] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2352), [sym_identifier] = ACTIONS(2354), [anon_sym_SEMI] = ACTIONS(2352), @@ -81443,9 +83005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2352), [sym_float_literal] = ACTIONS(2352), }, - [STATE(618)] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), + [STATE(634)] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2356), [sym_identifier] = ACTIONS(2358), [anon_sym_SEMI] = ACTIONS(2356), @@ -81524,9 +83086,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2356), [sym_float_literal] = ACTIONS(2356), }, - [STATE(619)] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), + [STATE(635)] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2360), [sym_identifier] = ACTIONS(2362), [anon_sym_SEMI] = ACTIONS(2360), @@ -81605,9 +83167,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2360), [sym_float_literal] = ACTIONS(2360), }, - [STATE(620)] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), + [STATE(636)] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2364), [sym_identifier] = ACTIONS(2366), [anon_sym_SEMI] = ACTIONS(2364), @@ -81686,9 +83248,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2364), [sym_float_literal] = ACTIONS(2364), }, - [STATE(621)] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), + [STATE(637)] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2368), [sym_identifier] = ACTIONS(2370), [anon_sym_SEMI] = ACTIONS(2368), @@ -81767,9 +83329,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2368), [sym_float_literal] = ACTIONS(2368), }, - [STATE(622)] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2372), [sym_identifier] = ACTIONS(2374), [anon_sym_SEMI] = ACTIONS(2372), @@ -81848,9 +83410,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2372), [sym_float_literal] = ACTIONS(2372), }, - [STATE(623)] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2376), [sym_identifier] = ACTIONS(2378), [anon_sym_SEMI] = ACTIONS(2376), @@ -81929,9 +83491,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2376), [sym_float_literal] = ACTIONS(2376), }, - [STATE(624)] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2380), [sym_identifier] = ACTIONS(2382), [anon_sym_SEMI] = ACTIONS(2380), @@ -82010,9 +83572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2380), [sym_float_literal] = ACTIONS(2380), }, - [STATE(625)] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2384), [sym_identifier] = ACTIONS(2386), [anon_sym_SEMI] = ACTIONS(2384), @@ -82091,9 +83653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2384), [sym_float_literal] = ACTIONS(2384), }, - [STATE(626)] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2388), [sym_identifier] = ACTIONS(2390), [anon_sym_SEMI] = ACTIONS(2388), @@ -82172,90 +83734,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2388), [sym_float_literal] = ACTIONS(2388), }, - [STATE(627)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3705), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(628)] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2392), [sym_identifier] = ACTIONS(2394), [anon_sym_SEMI] = ACTIONS(2392), @@ -82334,9 +83815,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2392), [sym_float_literal] = ACTIONS(2392), }, - [STATE(629)] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [STATE(644)] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2396), [sym_identifier] = ACTIONS(2398), [anon_sym_SEMI] = ACTIONS(2396), @@ -82415,9 +83896,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2396), [sym_float_literal] = ACTIONS(2396), }, - [STATE(630)] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [STATE(645)] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(2400), [sym_identifier] = ACTIONS(2402), [anon_sym_SEMI] = ACTIONS(2400), @@ -82486,2773 +83967,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_literal_token1] = ACTIONS(2400), [sym_char_literal] = ACTIONS(2400), [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - }, - [STATE(631)] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_gen] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym__raw_string_literal_start] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - }, - [STATE(632)] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_macro_rules_BANG] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2406), - [anon_sym_i8] = ACTIONS(2406), - [anon_sym_u16] = ACTIONS(2406), - [anon_sym_i16] = ACTIONS(2406), - [anon_sym_u32] = ACTIONS(2406), - [anon_sym_i32] = ACTIONS(2406), - [anon_sym_u64] = ACTIONS(2406), - [anon_sym_i64] = ACTIONS(2406), - [anon_sym_u128] = ACTIONS(2406), - [anon_sym_i128] = ACTIONS(2406), - [anon_sym_isize] = ACTIONS(2406), - [anon_sym_usize] = ACTIONS(2406), - [anon_sym_f32] = ACTIONS(2406), - [anon_sym_f64] = ACTIONS(2406), - [anon_sym_bool] = ACTIONS(2406), - [anon_sym_str] = ACTIONS(2406), - [anon_sym_char] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(2404), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_default] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_gen] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_impl] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_mod] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_trait] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_yield] = ACTIONS(2406), - [anon_sym_move] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [sym_integer_literal] = ACTIONS(2404), - [aux_sym_string_literal_token1] = ACTIONS(2404), - [sym_char_literal] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2406), - [sym_super] = ACTIONS(2406), - [sym_crate] = ACTIONS(2406), - [sym_metavariable] = ACTIONS(2404), - [sym__raw_string_literal_start] = ACTIONS(2404), - [sym_float_literal] = ACTIONS(2404), - }, - [STATE(633)] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_macro_rules_BANG] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_u8] = ACTIONS(2410), - [anon_sym_i8] = ACTIONS(2410), - [anon_sym_u16] = ACTIONS(2410), - [anon_sym_i16] = ACTIONS(2410), - [anon_sym_u32] = ACTIONS(2410), - [anon_sym_i32] = ACTIONS(2410), - [anon_sym_u64] = ACTIONS(2410), - [anon_sym_i64] = ACTIONS(2410), - [anon_sym_u128] = ACTIONS(2410), - [anon_sym_i128] = ACTIONS(2410), - [anon_sym_isize] = ACTIONS(2410), - [anon_sym_usize] = ACTIONS(2410), - [anon_sym_f32] = ACTIONS(2410), - [anon_sym_f64] = ACTIONS(2410), - [anon_sym_bool] = ACTIONS(2410), - [anon_sym_str] = ACTIONS(2410), - [anon_sym_char] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_DOT_DOT] = ACTIONS(2408), - [anon_sym_COLON_COLON] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(2408), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [anon_sym_fn] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_gen] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_impl] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_mod] = ACTIONS(2410), - [anon_sym_pub] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2410), - [anon_sym_trait] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_union] = ACTIONS(2410), - [anon_sym_unsafe] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_move] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [sym_integer_literal] = ACTIONS(2408), - [aux_sym_string_literal_token1] = ACTIONS(2408), - [sym_char_literal] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_crate] = ACTIONS(2410), - [sym_metavariable] = ACTIONS(2408), - [sym__raw_string_literal_start] = ACTIONS(2408), - [sym_float_literal] = ACTIONS(2408), - }, - [STATE(634)] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_macro_rules_BANG] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_STAR] = ACTIONS(2412), - [anon_sym_u8] = ACTIONS(2414), - [anon_sym_i8] = ACTIONS(2414), - [anon_sym_u16] = ACTIONS(2414), - [anon_sym_i16] = ACTIONS(2414), - [anon_sym_u32] = ACTIONS(2414), - [anon_sym_i32] = ACTIONS(2414), - [anon_sym_u64] = ACTIONS(2414), - [anon_sym_i64] = ACTIONS(2414), - [anon_sym_u128] = ACTIONS(2414), - [anon_sym_i128] = ACTIONS(2414), - [anon_sym_isize] = ACTIONS(2414), - [anon_sym_usize] = ACTIONS(2414), - [anon_sym_f32] = ACTIONS(2414), - [anon_sym_f64] = ACTIONS(2414), - [anon_sym_bool] = ACTIONS(2414), - [anon_sym_str] = ACTIONS(2414), - [anon_sym_char] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [anon_sym_COLON_COLON] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(2412), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_fn] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_gen] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_impl] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_mod] = ACTIONS(2414), - [anon_sym_pub] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_trait] = ACTIONS(2414), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_unsafe] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_yield] = ACTIONS(2414), - [anon_sym_move] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [sym_integer_literal] = ACTIONS(2412), - [aux_sym_string_literal_token1] = ACTIONS(2412), - [sym_char_literal] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2414), - [sym_super] = ACTIONS(2414), - [sym_crate] = ACTIONS(2414), - [sym_metavariable] = ACTIONS(2412), - [sym__raw_string_literal_start] = ACTIONS(2412), - [sym_float_literal] = ACTIONS(2412), - }, - [STATE(635)] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2416), - [sym_identifier] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_macro_rules_BANG] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_u8] = ACTIONS(2418), - [anon_sym_i8] = ACTIONS(2418), - [anon_sym_u16] = ACTIONS(2418), - [anon_sym_i16] = ACTIONS(2418), - [anon_sym_u32] = ACTIONS(2418), - [anon_sym_i32] = ACTIONS(2418), - [anon_sym_u64] = ACTIONS(2418), - [anon_sym_i64] = ACTIONS(2418), - [anon_sym_u128] = ACTIONS(2418), - [anon_sym_i128] = ACTIONS(2418), - [anon_sym_isize] = ACTIONS(2418), - [anon_sym_usize] = ACTIONS(2418), - [anon_sym_f32] = ACTIONS(2418), - [anon_sym_f64] = ACTIONS(2418), - [anon_sym_bool] = ACTIONS(2418), - [anon_sym_str] = ACTIONS(2418), - [anon_sym_char] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_DOT_DOT] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2418), - [anon_sym_fn] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_gen] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_impl] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_mod] = ACTIONS(2418), - [anon_sym_pub] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_struct] = ACTIONS(2418), - [anon_sym_trait] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2418), - [anon_sym_union] = ACTIONS(2418), - [anon_sym_unsafe] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_yield] = ACTIONS(2418), - [anon_sym_move] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [sym_integer_literal] = ACTIONS(2416), - [aux_sym_string_literal_token1] = ACTIONS(2416), - [sym_char_literal] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2418), - [sym_super] = ACTIONS(2418), - [sym_crate] = ACTIONS(2418), - [sym_metavariable] = ACTIONS(2416), - [sym__raw_string_literal_start] = ACTIONS(2416), - [sym_float_literal] = ACTIONS(2416), - }, - [STATE(636)] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_macro_rules_BANG] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2420), - [anon_sym_u8] = ACTIONS(2422), - [anon_sym_i8] = ACTIONS(2422), - [anon_sym_u16] = ACTIONS(2422), - [anon_sym_i16] = ACTIONS(2422), - [anon_sym_u32] = ACTIONS(2422), - [anon_sym_i32] = ACTIONS(2422), - [anon_sym_u64] = ACTIONS(2422), - [anon_sym_i64] = ACTIONS(2422), - [anon_sym_u128] = ACTIONS(2422), - [anon_sym_i128] = ACTIONS(2422), - [anon_sym_isize] = ACTIONS(2422), - [anon_sym_usize] = ACTIONS(2422), - [anon_sym_f32] = ACTIONS(2422), - [anon_sym_f64] = ACTIONS(2422), - [anon_sym_bool] = ACTIONS(2422), - [anon_sym_str] = ACTIONS(2422), - [anon_sym_char] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_DOT_DOT] = ACTIONS(2420), - [anon_sym_COLON_COLON] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2422), - [anon_sym_async] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_fn] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_gen] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_impl] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_mod] = ACTIONS(2422), - [anon_sym_pub] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_trait] = ACTIONS(2422), - [anon_sym_type] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_unsafe] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_yield] = ACTIONS(2422), - [anon_sym_move] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [sym_integer_literal] = ACTIONS(2420), - [aux_sym_string_literal_token1] = ACTIONS(2420), - [sym_char_literal] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2422), - [sym_super] = ACTIONS(2422), - [sym_crate] = ACTIONS(2422), - [sym_metavariable] = ACTIONS(2420), - [sym__raw_string_literal_start] = ACTIONS(2420), - [sym_float_literal] = ACTIONS(2420), - }, - [STATE(637)] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_macro_rules_BANG] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_u8] = ACTIONS(2426), - [anon_sym_i8] = ACTIONS(2426), - [anon_sym_u16] = ACTIONS(2426), - [anon_sym_i16] = ACTIONS(2426), - [anon_sym_u32] = ACTIONS(2426), - [anon_sym_i32] = ACTIONS(2426), - [anon_sym_u64] = ACTIONS(2426), - [anon_sym_i64] = ACTIONS(2426), - [anon_sym_u128] = ACTIONS(2426), - [anon_sym_i128] = ACTIONS(2426), - [anon_sym_isize] = ACTIONS(2426), - [anon_sym_usize] = ACTIONS(2426), - [anon_sym_f32] = ACTIONS(2426), - [anon_sym_f64] = ACTIONS(2426), - [anon_sym_bool] = ACTIONS(2426), - [anon_sym_str] = ACTIONS(2426), - [anon_sym_char] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2424), - [anon_sym_COLON_COLON] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [anon_sym_fn] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_gen] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_impl] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_mod] = ACTIONS(2426), - [anon_sym_pub] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2426), - [anon_sym_trait] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_union] = ACTIONS(2426), - [anon_sym_unsafe] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_move] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [sym_integer_literal] = ACTIONS(2424), - [aux_sym_string_literal_token1] = ACTIONS(2424), - [sym_char_literal] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_crate] = ACTIONS(2426), - [sym_metavariable] = ACTIONS(2424), - [sym__raw_string_literal_start] = ACTIONS(2424), - [sym_float_literal] = ACTIONS(2424), - }, - [STATE(638)] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_macro_rules_BANG] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(2430), - [anon_sym_i8] = ACTIONS(2430), - [anon_sym_u16] = ACTIONS(2430), - [anon_sym_i16] = ACTIONS(2430), - [anon_sym_u32] = ACTIONS(2430), - [anon_sym_i32] = ACTIONS(2430), - [anon_sym_u64] = ACTIONS(2430), - [anon_sym_i64] = ACTIONS(2430), - [anon_sym_u128] = ACTIONS(2430), - [anon_sym_i128] = ACTIONS(2430), - [anon_sym_isize] = ACTIONS(2430), - [anon_sym_usize] = ACTIONS(2430), - [anon_sym_f32] = ACTIONS(2430), - [anon_sym_f64] = ACTIONS(2430), - [anon_sym_bool] = ACTIONS(2430), - [anon_sym_str] = ACTIONS(2430), - [anon_sym_char] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [anon_sym_COLON_COLON] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2430), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_default] = ACTIONS(2430), - [anon_sym_enum] = ACTIONS(2430), - [anon_sym_fn] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_gen] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_mod] = ACTIONS(2430), - [anon_sym_pub] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(2430), - [anon_sym_trait] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_unsafe] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [sym_integer_literal] = ACTIONS(2428), - [aux_sym_string_literal_token1] = ACTIONS(2428), - [sym_char_literal] = ACTIONS(2428), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2430), - [sym_super] = ACTIONS(2430), - [sym_crate] = ACTIONS(2430), - [sym_metavariable] = ACTIONS(2428), - [sym__raw_string_literal_start] = ACTIONS(2428), - [sym_float_literal] = ACTIONS(2428), - }, - [STATE(639)] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_macro_rules_BANG] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2432), - [anon_sym_u8] = ACTIONS(2434), - [anon_sym_i8] = ACTIONS(2434), - [anon_sym_u16] = ACTIONS(2434), - [anon_sym_i16] = ACTIONS(2434), - [anon_sym_u32] = ACTIONS(2434), - [anon_sym_i32] = ACTIONS(2434), - [anon_sym_u64] = ACTIONS(2434), - [anon_sym_i64] = ACTIONS(2434), - [anon_sym_u128] = ACTIONS(2434), - [anon_sym_i128] = ACTIONS(2434), - [anon_sym_isize] = ACTIONS(2434), - [anon_sym_usize] = ACTIONS(2434), - [anon_sym_f32] = ACTIONS(2434), - [anon_sym_f64] = ACTIONS(2434), - [anon_sym_bool] = ACTIONS(2434), - [anon_sym_str] = ACTIONS(2434), - [anon_sym_char] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_DOT_DOT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [anon_sym_fn] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_gen] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_impl] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_mod] = ACTIONS(2434), - [anon_sym_pub] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_struct] = ACTIONS(2434), - [anon_sym_trait] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_union] = ACTIONS(2434), - [anon_sym_unsafe] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_move] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [sym_integer_literal] = ACTIONS(2432), - [aux_sym_string_literal_token1] = ACTIONS(2432), - [sym_char_literal] = ACTIONS(2432), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_crate] = ACTIONS(2434), - [sym_metavariable] = ACTIONS(2432), - [sym__raw_string_literal_start] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(2432), - }, - [STATE(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2436), - [sym_identifier] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_macro_rules_BANG] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_u8] = ACTIONS(2438), - [anon_sym_i8] = ACTIONS(2438), - [anon_sym_u16] = ACTIONS(2438), - [anon_sym_i16] = ACTIONS(2438), - [anon_sym_u32] = ACTIONS(2438), - [anon_sym_i32] = ACTIONS(2438), - [anon_sym_u64] = ACTIONS(2438), - [anon_sym_i64] = ACTIONS(2438), - [anon_sym_u128] = ACTIONS(2438), - [anon_sym_i128] = ACTIONS(2438), - [anon_sym_isize] = ACTIONS(2438), - [anon_sym_usize] = ACTIONS(2438), - [anon_sym_f32] = ACTIONS(2438), - [anon_sym_f64] = ACTIONS(2438), - [anon_sym_bool] = ACTIONS(2438), - [anon_sym_str] = ACTIONS(2438), - [anon_sym_char] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_AMP] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(2436), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [anon_sym_COLON_COLON] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [anon_sym_fn] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_gen] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_impl] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_loop] = ACTIONS(2438), - [anon_sym_match] = ACTIONS(2438), - [anon_sym_mod] = ACTIONS(2438), - [anon_sym_pub] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_struct] = ACTIONS(2438), - [anon_sym_trait] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_union] = ACTIONS(2438), - [anon_sym_unsafe] = ACTIONS(2438), - [anon_sym_use] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_extern] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_move] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [sym_integer_literal] = ACTIONS(2436), - [aux_sym_string_literal_token1] = ACTIONS(2436), - [sym_char_literal] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_crate] = ACTIONS(2438), - [sym_metavariable] = ACTIONS(2436), - [sym__raw_string_literal_start] = ACTIONS(2436), - [sym_float_literal] = ACTIONS(2436), - }, - [STATE(641)] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2440), - [sym_identifier] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_macro_rules_BANG] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_u8] = ACTIONS(2442), - [anon_sym_i8] = ACTIONS(2442), - [anon_sym_u16] = ACTIONS(2442), - [anon_sym_i16] = ACTIONS(2442), - [anon_sym_u32] = ACTIONS(2442), - [anon_sym_i32] = ACTIONS(2442), - [anon_sym_u64] = ACTIONS(2442), - [anon_sym_i64] = ACTIONS(2442), - [anon_sym_u128] = ACTIONS(2442), - [anon_sym_i128] = ACTIONS(2442), - [anon_sym_isize] = ACTIONS(2442), - [anon_sym_usize] = ACTIONS(2442), - [anon_sym_f32] = ACTIONS(2442), - [anon_sym_f64] = ACTIONS(2442), - [anon_sym_bool] = ACTIONS(2442), - [anon_sym_str] = ACTIONS(2442), - [anon_sym_char] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_DOT_DOT] = ACTIONS(2440), - [anon_sym_COLON_COLON] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_gen] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_impl] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_mod] = ACTIONS(2442), - [anon_sym_pub] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2442), - [anon_sym_trait] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_union] = ACTIONS(2442), - [anon_sym_unsafe] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_move] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [sym_integer_literal] = ACTIONS(2440), - [aux_sym_string_literal_token1] = ACTIONS(2440), - [sym_char_literal] = ACTIONS(2440), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_crate] = ACTIONS(2442), - [sym_metavariable] = ACTIONS(2440), - [sym__raw_string_literal_start] = ACTIONS(2440), - [sym_float_literal] = ACTIONS(2440), - }, - [STATE(642)] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2444), - [sym_identifier] = ACTIONS(2446), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_macro_rules_BANG] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2444), - [anon_sym_u8] = ACTIONS(2446), - [anon_sym_i8] = ACTIONS(2446), - [anon_sym_u16] = ACTIONS(2446), - [anon_sym_i16] = ACTIONS(2446), - [anon_sym_u32] = ACTIONS(2446), - [anon_sym_i32] = ACTIONS(2446), - [anon_sym_u64] = ACTIONS(2446), - [anon_sym_i64] = ACTIONS(2446), - [anon_sym_u128] = ACTIONS(2446), - [anon_sym_i128] = ACTIONS(2446), - [anon_sym_isize] = ACTIONS(2446), - [anon_sym_usize] = ACTIONS(2446), - [anon_sym_f32] = ACTIONS(2446), - [anon_sym_f64] = ACTIONS(2446), - [anon_sym_bool] = ACTIONS(2446), - [anon_sym_str] = ACTIONS(2446), - [anon_sym_char] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_DOT_DOT] = ACTIONS(2444), - [anon_sym_COLON_COLON] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2446), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_default] = ACTIONS(2446), - [anon_sym_enum] = ACTIONS(2446), - [anon_sym_fn] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_gen] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_impl] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_loop] = ACTIONS(2446), - [anon_sym_match] = ACTIONS(2446), - [anon_sym_mod] = ACTIONS(2446), - [anon_sym_pub] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2446), - [anon_sym_trait] = ACTIONS(2446), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_union] = ACTIONS(2446), - [anon_sym_unsafe] = ACTIONS(2446), - [anon_sym_use] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2446), - [anon_sym_yield] = ACTIONS(2446), - [anon_sym_move] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [sym_integer_literal] = ACTIONS(2444), - [aux_sym_string_literal_token1] = ACTIONS(2444), - [sym_char_literal] = ACTIONS(2444), - [anon_sym_true] = ACTIONS(2446), - [anon_sym_false] = ACTIONS(2446), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2446), - [sym_super] = ACTIONS(2446), - [sym_crate] = ACTIONS(2446), - [sym_metavariable] = ACTIONS(2444), - [sym__raw_string_literal_start] = ACTIONS(2444), - [sym_float_literal] = ACTIONS(2444), - }, - [STATE(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2448), - [sym_identifier] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_macro_rules_BANG] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_u8] = ACTIONS(2450), - [anon_sym_i8] = ACTIONS(2450), - [anon_sym_u16] = ACTIONS(2450), - [anon_sym_i16] = ACTIONS(2450), - [anon_sym_u32] = ACTIONS(2450), - [anon_sym_i32] = ACTIONS(2450), - [anon_sym_u64] = ACTIONS(2450), - [anon_sym_i64] = ACTIONS(2450), - [anon_sym_u128] = ACTIONS(2450), - [anon_sym_i128] = ACTIONS(2450), - [anon_sym_isize] = ACTIONS(2450), - [anon_sym_usize] = ACTIONS(2450), - [anon_sym_f32] = ACTIONS(2450), - [anon_sym_f64] = ACTIONS(2450), - [anon_sym_bool] = ACTIONS(2450), - [anon_sym_str] = ACTIONS(2450), - [anon_sym_char] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(2448), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_DOT_DOT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_fn] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_gen] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_impl] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_loop] = ACTIONS(2450), - [anon_sym_match] = ACTIONS(2450), - [anon_sym_mod] = ACTIONS(2450), - [anon_sym_pub] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_trait] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(2450), - [anon_sym_use] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_move] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2450), - [sym_integer_literal] = ACTIONS(2448), - [aux_sym_string_literal_token1] = ACTIONS(2448), - [sym_char_literal] = ACTIONS(2448), - [anon_sym_true] = ACTIONS(2450), - [anon_sym_false] = ACTIONS(2450), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2450), - [sym_super] = ACTIONS(2450), - [sym_crate] = ACTIONS(2450), - [sym_metavariable] = ACTIONS(2448), - [sym__raw_string_literal_start] = ACTIONS(2448), - [sym_float_literal] = ACTIONS(2448), - }, - [STATE(644)] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_gen] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym__raw_string_literal_start] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), - }, - [STATE(645)] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(2452), - [sym_identifier] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_macro_rules_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_u8] = ACTIONS(2454), - [anon_sym_i8] = ACTIONS(2454), - [anon_sym_u16] = ACTIONS(2454), - [anon_sym_i16] = ACTIONS(2454), - [anon_sym_u32] = ACTIONS(2454), - [anon_sym_i32] = ACTIONS(2454), - [anon_sym_u64] = ACTIONS(2454), - [anon_sym_i64] = ACTIONS(2454), - [anon_sym_u128] = ACTIONS(2454), - [anon_sym_i128] = ACTIONS(2454), - [anon_sym_isize] = ACTIONS(2454), - [anon_sym_usize] = ACTIONS(2454), - [anon_sym_f32] = ACTIONS(2454), - [anon_sym_f64] = ACTIONS(2454), - [anon_sym_bool] = ACTIONS(2454), - [anon_sym_str] = ACTIONS(2454), - [anon_sym_char] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_DOT_DOT] = ACTIONS(2452), - [anon_sym_COLON_COLON] = ACTIONS(2452), - [anon_sym_POUND] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_default] = ACTIONS(2454), - [anon_sym_enum] = ACTIONS(2454), - [anon_sym_fn] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_gen] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_impl] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_loop] = ACTIONS(2454), - [anon_sym_match] = ACTIONS(2454), - [anon_sym_mod] = ACTIONS(2454), - [anon_sym_pub] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_struct] = ACTIONS(2454), - [anon_sym_trait] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_union] = ACTIONS(2454), - [anon_sym_unsafe] = ACTIONS(2454), - [anon_sym_use] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_extern] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2454), - [anon_sym_move] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2454), - [sym_integer_literal] = ACTIONS(2452), - [aux_sym_string_literal_token1] = ACTIONS(2452), - [sym_char_literal] = ACTIONS(2452), - [anon_sym_true] = ACTIONS(2454), - [anon_sym_false] = ACTIONS(2454), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_crate] = ACTIONS(2454), - [sym_metavariable] = ACTIONS(2452), - [sym__raw_string_literal_start] = ACTIONS(2452), - [sym_float_literal] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2402), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_crate] = ACTIONS(2402), + [sym_metavariable] = ACTIONS(2400), + [sym__raw_string_literal_start] = ACTIONS(2400), + [sym_float_literal] = ACTIONS(2400), }, [STATE(646)] = { + [sym_empty_statement] = STATE(1112), + [sym_macro_definition] = STATE(1112), + [sym_attribute_item] = STATE(1112), + [sym_inner_attribute_item] = STATE(1112), + [sym_mod_item] = STATE(1112), + [sym_foreign_mod_item] = STATE(1112), + [sym_struct_item] = STATE(1112), + [sym_union_item] = STATE(1112), + [sym_enum_item] = STATE(1112), + [sym_extern_crate_declaration] = STATE(1112), + [sym_const_item] = STATE(1112), + [sym_static_item] = STATE(1112), + [sym_type_item] = STATE(1112), + [sym_function_item] = STATE(1112), + [sym_function_signature_item] = STATE(1112), + [sym_function_modifiers] = STATE(3749), + [sym_impl_item] = STATE(1112), + [sym_trait_item] = STATE(1112), + [sym_associated_type] = STATE(1112), + [sym_let_declaration] = STATE(1112), + [sym_use_declaration] = STATE(1112), + [sym_extern_modifier] = STATE(2237), + [sym_visibility_modifier] = STATE(2006), + [sym_bracketed_type] = STATE(3714), + [sym_generic_type_with_turbofish] = STATE(3774), + [sym_macro_invocation] = STATE(1112), + [sym_scoped_identifier] = STATE(3435), [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(2456), - [sym_identifier] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2456), - [anon_sym_macro_rules_BANG] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_u8] = ACTIONS(2458), - [anon_sym_i8] = ACTIONS(2458), - [anon_sym_u16] = ACTIONS(2458), - [anon_sym_i16] = ACTIONS(2458), - [anon_sym_u32] = ACTIONS(2458), - [anon_sym_i32] = ACTIONS(2458), - [anon_sym_u64] = ACTIONS(2458), - [anon_sym_i64] = ACTIONS(2458), - [anon_sym_u128] = ACTIONS(2458), - [anon_sym_i128] = ACTIONS(2458), - [anon_sym_isize] = ACTIONS(2458), - [anon_sym_usize] = ACTIONS(2458), - [anon_sym_f32] = ACTIONS(2458), - [anon_sym_f64] = ACTIONS(2458), - [anon_sym_bool] = ACTIONS(2458), - [anon_sym_str] = ACTIONS(2458), - [anon_sym_char] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_DOT_DOT] = ACTIONS(2456), - [anon_sym_COLON_COLON] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [anon_sym_fn] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_gen] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_impl] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_loop] = ACTIONS(2458), - [anon_sym_match] = ACTIONS(2458), - [anon_sym_mod] = ACTIONS(2458), - [anon_sym_pub] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_struct] = ACTIONS(2458), - [anon_sym_trait] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_union] = ACTIONS(2458), - [anon_sym_unsafe] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_extern] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_move] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [sym_integer_literal] = ACTIONS(2456), - [aux_sym_string_literal_token1] = ACTIONS(2456), - [sym_char_literal] = ACTIONS(2456), - [anon_sym_true] = ACTIONS(2458), - [anon_sym_false] = ACTIONS(2458), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_crate] = ACTIONS(2458), - [sym_metavariable] = ACTIONS(2456), - [sym__raw_string_literal_start] = ACTIONS(2456), - [sym_float_literal] = ACTIONS(2456), + [aux_sym_declaration_list_repeat1] = STATE(646), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_macro_rules_BANG] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2415), + [anon_sym_i8] = ACTIONS(2415), + [anon_sym_u16] = ACTIONS(2415), + [anon_sym_i16] = ACTIONS(2415), + [anon_sym_u32] = ACTIONS(2415), + [anon_sym_i32] = ACTIONS(2415), + [anon_sym_u64] = ACTIONS(2415), + [anon_sym_i64] = ACTIONS(2415), + [anon_sym_u128] = ACTIONS(2415), + [anon_sym_i128] = ACTIONS(2415), + [anon_sym_isize] = ACTIONS(2415), + [anon_sym_usize] = ACTIONS(2415), + [anon_sym_f32] = ACTIONS(2415), + [anon_sym_f64] = ACTIONS(2415), + [anon_sym_bool] = ACTIONS(2415), + [anon_sym_str] = ACTIONS(2415), + [anon_sym_char] = ACTIONS(2415), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_COLON_COLON] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_gen] = ACTIONS(2442), + [anon_sym_impl] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_mod] = ACTIONS(2451), + [anon_sym_pub] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2460), + [anon_sym_trait] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_unsafe] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_crate] = ACTIONS(2484), + [sym_metavariable] = ACTIONS(2487), }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_try] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_macro_rules_BANG] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2490), + [anon_sym_u8] = ACTIONS(2492), + [anon_sym_i8] = ACTIONS(2492), + [anon_sym_u16] = ACTIONS(2492), + [anon_sym_i16] = ACTIONS(2492), + [anon_sym_u32] = ACTIONS(2492), + [anon_sym_i32] = ACTIONS(2492), + [anon_sym_u64] = ACTIONS(2492), + [anon_sym_i64] = ACTIONS(2492), + [anon_sym_u128] = ACTIONS(2492), + [anon_sym_i128] = ACTIONS(2492), + [anon_sym_isize] = ACTIONS(2492), + [anon_sym_usize] = ACTIONS(2492), + [anon_sym_f32] = ACTIONS(2492), + [anon_sym_f64] = ACTIONS(2492), + [anon_sym_bool] = ACTIONS(2492), + [anon_sym_str] = ACTIONS(2492), + [anon_sym_char] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2490), + [anon_sym_DOT_DOT] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_async] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [anon_sym_fn] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_gen] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_impl] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_mod] = ACTIONS(2492), + [anon_sym_pub] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_struct] = ACTIONS(2492), + [anon_sym_trait] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_yield] = ACTIONS(2492), + [anon_sym_move] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [sym_integer_literal] = ACTIONS(2490), + [aux_sym_string_literal_token1] = ACTIONS(2490), + [sym_char_literal] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2492), + [sym_super] = ACTIONS(2492), + [sym_crate] = ACTIONS(2492), + [sym_metavariable] = ACTIONS(2490), + [sym__raw_string_literal_start] = ACTIONS(2490), + [sym_float_literal] = ACTIONS(2490), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2460), - [sym_identifier] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_macro_rules_BANG] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_u8] = ACTIONS(2462), - [anon_sym_i8] = ACTIONS(2462), - [anon_sym_u16] = ACTIONS(2462), - [anon_sym_i16] = ACTIONS(2462), - [anon_sym_u32] = ACTIONS(2462), - [anon_sym_i32] = ACTIONS(2462), - [anon_sym_u64] = ACTIONS(2462), - [anon_sym_i64] = ACTIONS(2462), - [anon_sym_u128] = ACTIONS(2462), - [anon_sym_i128] = ACTIONS(2462), - [anon_sym_isize] = ACTIONS(2462), - [anon_sym_usize] = ACTIONS(2462), - [anon_sym_f32] = ACTIONS(2462), - [anon_sym_f64] = ACTIONS(2462), - [anon_sym_bool] = ACTIONS(2462), - [anon_sym_str] = ACTIONS(2462), - [anon_sym_char] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_DOT_DOT] = ACTIONS(2460), - [anon_sym_COLON_COLON] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(2462), - [anon_sym_async] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_default] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_fn] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_gen] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_impl] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_loop] = ACTIONS(2462), - [anon_sym_match] = ACTIONS(2462), - [anon_sym_mod] = ACTIONS(2462), - [anon_sym_pub] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_struct] = ACTIONS(2462), - [anon_sym_trait] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_union] = ACTIONS(2462), - [anon_sym_unsafe] = ACTIONS(2462), - [anon_sym_use] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_yield] = ACTIONS(2462), - [anon_sym_move] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [sym_integer_literal] = ACTIONS(2460), - [aux_sym_string_literal_token1] = ACTIONS(2460), - [sym_char_literal] = ACTIONS(2460), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2462), - [sym_super] = ACTIONS(2462), - [sym_crate] = ACTIONS(2462), - [sym_metavariable] = ACTIONS(2460), - [sym__raw_string_literal_start] = ACTIONS(2460), - [sym_float_literal] = ACTIONS(2460), + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_macro_rules_BANG] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2494), + [anon_sym_u8] = ACTIONS(2496), + [anon_sym_i8] = ACTIONS(2496), + [anon_sym_u16] = ACTIONS(2496), + [anon_sym_i16] = ACTIONS(2496), + [anon_sym_u32] = ACTIONS(2496), + [anon_sym_i32] = ACTIONS(2496), + [anon_sym_u64] = ACTIONS(2496), + [anon_sym_i64] = ACTIONS(2496), + [anon_sym_u128] = ACTIONS(2496), + [anon_sym_i128] = ACTIONS(2496), + [anon_sym_isize] = ACTIONS(2496), + [anon_sym_usize] = ACTIONS(2496), + [anon_sym_f32] = ACTIONS(2496), + [anon_sym_f64] = ACTIONS(2496), + [anon_sym_bool] = ACTIONS(2496), + [anon_sym_str] = ACTIONS(2496), + [anon_sym_char] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2494), + [anon_sym_DOT_DOT] = ACTIONS(2494), + [anon_sym_COLON_COLON] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [anon_sym_fn] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_gen] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_impl] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_mod] = ACTIONS(2496), + [anon_sym_pub] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_struct] = ACTIONS(2496), + [anon_sym_trait] = ACTIONS(2496), + [anon_sym_type] = ACTIONS(2496), + [anon_sym_union] = ACTIONS(2496), + [anon_sym_unsafe] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2496), + [anon_sym_move] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [sym_integer_literal] = ACTIONS(2494), + [aux_sym_string_literal_token1] = ACTIONS(2494), + [sym_char_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2496), + [sym_super] = ACTIONS(2496), + [sym_crate] = ACTIONS(2496), + [sym_metavariable] = ACTIONS(2494), + [sym__raw_string_literal_start] = ACTIONS(2494), + [sym_float_literal] = ACTIONS(2494), }, [STATE(649)] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_macro_rules_BANG] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2498), + [anon_sym_u8] = ACTIONS(2500), + [anon_sym_i8] = ACTIONS(2500), + [anon_sym_u16] = ACTIONS(2500), + [anon_sym_i16] = ACTIONS(2500), + [anon_sym_u32] = ACTIONS(2500), + [anon_sym_i32] = ACTIONS(2500), + [anon_sym_u64] = ACTIONS(2500), + [anon_sym_i64] = ACTIONS(2500), + [anon_sym_u128] = ACTIONS(2500), + [anon_sym_i128] = ACTIONS(2500), + [anon_sym_isize] = ACTIONS(2500), + [anon_sym_usize] = ACTIONS(2500), + [anon_sym_f32] = ACTIONS(2500), + [anon_sym_f64] = ACTIONS(2500), + [anon_sym_bool] = ACTIONS(2500), + [anon_sym_str] = ACTIONS(2500), + [anon_sym_char] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_DOT_DOT] = ACTIONS(2498), + [anon_sym_COLON_COLON] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_async] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), + [anon_sym_fn] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_gen] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_impl] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_mod] = ACTIONS(2500), + [anon_sym_pub] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_struct] = ACTIONS(2500), + [anon_sym_trait] = ACTIONS(2500), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_union] = ACTIONS(2500), + [anon_sym_unsafe] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2500), + [anon_sym_move] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [sym_integer_literal] = ACTIONS(2498), + [aux_sym_string_literal_token1] = ACTIONS(2498), + [sym_char_literal] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2498), + [sym__raw_string_literal_start] = ACTIONS(2498), + [sym_float_literal] = ACTIONS(2498), }, [STATE(650)] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_gen] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_macro_rules_BANG] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(2504), + [anon_sym_i8] = ACTIONS(2504), + [anon_sym_u16] = ACTIONS(2504), + [anon_sym_i16] = ACTIONS(2504), + [anon_sym_u32] = ACTIONS(2504), + [anon_sym_i32] = ACTIONS(2504), + [anon_sym_u64] = ACTIONS(2504), + [anon_sym_i64] = ACTIONS(2504), + [anon_sym_u128] = ACTIONS(2504), + [anon_sym_i128] = ACTIONS(2504), + [anon_sym_isize] = ACTIONS(2504), + [anon_sym_usize] = ACTIONS(2504), + [anon_sym_f32] = ACTIONS(2504), + [anon_sym_f64] = ACTIONS(2504), + [anon_sym_bool] = ACTIONS(2504), + [anon_sym_str] = ACTIONS(2504), + [anon_sym_char] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_DOT_DOT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [anon_sym_fn] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_gen] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_impl] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_mod] = ACTIONS(2504), + [anon_sym_pub] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_struct] = ACTIONS(2504), + [anon_sym_trait] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_union] = ACTIONS(2504), + [anon_sym_unsafe] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_move] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [sym_integer_literal] = ACTIONS(2502), + [aux_sym_string_literal_token1] = ACTIONS(2502), + [sym_char_literal] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2502), + [sym__raw_string_literal_start] = ACTIONS(2502), + [sym_float_literal] = ACTIONS(2502), }, [STATE(651)] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_macro_rules_BANG] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_u8] = ACTIONS(2466), - [anon_sym_i8] = ACTIONS(2466), - [anon_sym_u16] = ACTIONS(2466), - [anon_sym_i16] = ACTIONS(2466), - [anon_sym_u32] = ACTIONS(2466), - [anon_sym_i32] = ACTIONS(2466), - [anon_sym_u64] = ACTIONS(2466), - [anon_sym_i64] = ACTIONS(2466), - [anon_sym_u128] = ACTIONS(2466), - [anon_sym_i128] = ACTIONS(2466), - [anon_sym_isize] = ACTIONS(2466), - [anon_sym_usize] = ACTIONS(2466), - [anon_sym_f32] = ACTIONS(2466), - [anon_sym_f64] = ACTIONS(2466), - [anon_sym_bool] = ACTIONS(2466), - [anon_sym_str] = ACTIONS(2466), - [anon_sym_char] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_fn] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_gen] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_impl] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_loop] = ACTIONS(2466), - [anon_sym_match] = ACTIONS(2466), - [anon_sym_mod] = ACTIONS(2466), - [anon_sym_pub] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_trait] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2466), - [anon_sym_unsafe] = ACTIONS(2466), - [anon_sym_use] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_move] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [sym_integer_literal] = ACTIONS(2464), - [aux_sym_string_literal_token1] = ACTIONS(2464), - [sym_char_literal] = ACTIONS(2464), - [anon_sym_true] = ACTIONS(2466), - [anon_sym_false] = ACTIONS(2466), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_crate] = ACTIONS(2466), - [sym_metavariable] = ACTIONS(2464), - [sym__raw_string_literal_start] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2464), + [ts_builtin_sym_end] = ACTIONS(2506), + [sym_identifier] = ACTIONS(2508), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_macro_rules_BANG] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(2506), + [anon_sym_u8] = ACTIONS(2508), + [anon_sym_i8] = ACTIONS(2508), + [anon_sym_u16] = ACTIONS(2508), + [anon_sym_i16] = ACTIONS(2508), + [anon_sym_u32] = ACTIONS(2508), + [anon_sym_i32] = ACTIONS(2508), + [anon_sym_u64] = ACTIONS(2508), + [anon_sym_i64] = ACTIONS(2508), + [anon_sym_u128] = ACTIONS(2508), + [anon_sym_i128] = ACTIONS(2508), + [anon_sym_isize] = ACTIONS(2508), + [anon_sym_usize] = ACTIONS(2508), + [anon_sym_f32] = ACTIONS(2508), + [anon_sym_f64] = ACTIONS(2508), + [anon_sym_bool] = ACTIONS(2508), + [anon_sym_str] = ACTIONS(2508), + [anon_sym_char] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_DOT_DOT] = ACTIONS(2506), + [anon_sym_COLON_COLON] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2508), + [anon_sym_async] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_fn] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_gen] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_impl] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_mod] = ACTIONS(2508), + [anon_sym_pub] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_trait] = ACTIONS(2508), + [anon_sym_type] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_unsafe] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_yield] = ACTIONS(2508), + [anon_sym_move] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2508), + [sym_integer_literal] = ACTIONS(2506), + [aux_sym_string_literal_token1] = ACTIONS(2506), + [sym_char_literal] = ACTIONS(2506), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2508), + [sym_super] = ACTIONS(2508), + [sym_crate] = ACTIONS(2508), + [sym_metavariable] = ACTIONS(2506), + [sym__raw_string_literal_start] = ACTIONS(2506), + [sym_float_literal] = ACTIONS(2506), }, [STATE(652)] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_macro_rules_BANG] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_u8] = ACTIONS(2470), - [anon_sym_i8] = ACTIONS(2470), - [anon_sym_u16] = ACTIONS(2470), - [anon_sym_i16] = ACTIONS(2470), - [anon_sym_u32] = ACTIONS(2470), - [anon_sym_i32] = ACTIONS(2470), - [anon_sym_u64] = ACTIONS(2470), - [anon_sym_i64] = ACTIONS(2470), - [anon_sym_u128] = ACTIONS(2470), - [anon_sym_i128] = ACTIONS(2470), - [anon_sym_isize] = ACTIONS(2470), - [anon_sym_usize] = ACTIONS(2470), - [anon_sym_f32] = ACTIONS(2470), - [anon_sym_f64] = ACTIONS(2470), - [anon_sym_bool] = ACTIONS(2470), - [anon_sym_str] = ACTIONS(2470), - [anon_sym_char] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_DOT_DOT] = ACTIONS(2468), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_fn] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_gen] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_impl] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_mod] = ACTIONS(2470), - [anon_sym_pub] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_struct] = ACTIONS(2470), - [anon_sym_trait] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_union] = ACTIONS(2470), - [anon_sym_unsafe] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_move] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [sym_integer_literal] = ACTIONS(2468), - [aux_sym_string_literal_token1] = ACTIONS(2468), - [sym_char_literal] = ACTIONS(2468), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_crate] = ACTIONS(2470), - [sym_metavariable] = ACTIONS(2468), - [sym__raw_string_literal_start] = ACTIONS(2468), - [sym_float_literal] = ACTIONS(2468), + [ts_builtin_sym_end] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2512), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_macro_rules_BANG] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_STAR] = ACTIONS(2510), + [anon_sym_u8] = ACTIONS(2512), + [anon_sym_i8] = ACTIONS(2512), + [anon_sym_u16] = ACTIONS(2512), + [anon_sym_i16] = ACTIONS(2512), + [anon_sym_u32] = ACTIONS(2512), + [anon_sym_i32] = ACTIONS(2512), + [anon_sym_u64] = ACTIONS(2512), + [anon_sym_i64] = ACTIONS(2512), + [anon_sym_u128] = ACTIONS(2512), + [anon_sym_i128] = ACTIONS(2512), + [anon_sym_isize] = ACTIONS(2512), + [anon_sym_usize] = ACTIONS(2512), + [anon_sym_f32] = ACTIONS(2512), + [anon_sym_f64] = ACTIONS(2512), + [anon_sym_bool] = ACTIONS(2512), + [anon_sym_str] = ACTIONS(2512), + [anon_sym_char] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2510), + [anon_sym_DOT_DOT] = ACTIONS(2510), + [anon_sym_COLON_COLON] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_fn] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_gen] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_impl] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_loop] = ACTIONS(2512), + [anon_sym_match] = ACTIONS(2512), + [anon_sym_mod] = ACTIONS(2512), + [anon_sym_pub] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_trait] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_unsafe] = ACTIONS(2512), + [anon_sym_use] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(2512), + [anon_sym_move] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2512), + [sym_integer_literal] = ACTIONS(2510), + [aux_sym_string_literal_token1] = ACTIONS(2510), + [sym_char_literal] = ACTIONS(2510), + [anon_sym_true] = ACTIONS(2512), + [anon_sym_false] = ACTIONS(2512), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2512), + [sym_super] = ACTIONS(2512), + [sym_crate] = ACTIONS(2512), + [sym_metavariable] = ACTIONS(2510), + [sym__raw_string_literal_start] = ACTIONS(2510), + [sym_float_literal] = ACTIONS(2510), }, [STATE(653)] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_identifier] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_macro_rules_BANG] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_u8] = ACTIONS(2474), - [anon_sym_i8] = ACTIONS(2474), - [anon_sym_u16] = ACTIONS(2474), - [anon_sym_i16] = ACTIONS(2474), - [anon_sym_u32] = ACTIONS(2474), - [anon_sym_i32] = ACTIONS(2474), - [anon_sym_u64] = ACTIONS(2474), - [anon_sym_i64] = ACTIONS(2474), - [anon_sym_u128] = ACTIONS(2474), - [anon_sym_i128] = ACTIONS(2474), - [anon_sym_isize] = ACTIONS(2474), - [anon_sym_usize] = ACTIONS(2474), - [anon_sym_f32] = ACTIONS(2474), - [anon_sym_f64] = ACTIONS(2474), - [anon_sym_bool] = ACTIONS(2474), - [anon_sym_str] = ACTIONS(2474), - [anon_sym_char] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_fn] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_gen] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_impl] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_mod] = ACTIONS(2474), - [anon_sym_pub] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_struct] = ACTIONS(2474), - [anon_sym_trait] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_union] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_move] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2472), - [aux_sym_string_literal_token1] = ACTIONS(2472), - [sym_char_literal] = ACTIONS(2472), - [anon_sym_true] = ACTIONS(2474), - [anon_sym_false] = ACTIONS(2474), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_crate] = ACTIONS(2474), - [sym_metavariable] = ACTIONS(2472), - [sym__raw_string_literal_start] = ACTIONS(2472), - [sym_float_literal] = ACTIONS(2472), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_macro_rules_BANG] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_STAR] = ACTIONS(2514), + [anon_sym_u8] = ACTIONS(2516), + [anon_sym_i8] = ACTIONS(2516), + [anon_sym_u16] = ACTIONS(2516), + [anon_sym_i16] = ACTIONS(2516), + [anon_sym_u32] = ACTIONS(2516), + [anon_sym_i32] = ACTIONS(2516), + [anon_sym_u64] = ACTIONS(2516), + [anon_sym_i64] = ACTIONS(2516), + [anon_sym_u128] = ACTIONS(2516), + [anon_sym_i128] = ACTIONS(2516), + [anon_sym_isize] = ACTIONS(2516), + [anon_sym_usize] = ACTIONS(2516), + [anon_sym_f32] = ACTIONS(2516), + [anon_sym_f64] = ACTIONS(2516), + [anon_sym_bool] = ACTIONS(2516), + [anon_sym_str] = ACTIONS(2516), + [anon_sym_char] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_COLON_COLON] = ACTIONS(2514), + [anon_sym_POUND] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_fn] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_gen] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_impl] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_mod] = ACTIONS(2516), + [anon_sym_pub] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_trait] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_unsafe] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_move] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [sym_integer_literal] = ACTIONS(2514), + [aux_sym_string_literal_token1] = ACTIONS(2514), + [sym_char_literal] = ACTIONS(2514), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_crate] = ACTIONS(2516), + [sym_metavariable] = ACTIONS(2514), + [sym__raw_string_literal_start] = ACTIONS(2514), + [sym_float_literal] = ACTIONS(2514), }, [STATE(654)] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_macro_rules_BANG] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_u8] = ACTIONS(2478), - [anon_sym_i8] = ACTIONS(2478), - [anon_sym_u16] = ACTIONS(2478), - [anon_sym_i16] = ACTIONS(2478), - [anon_sym_u32] = ACTIONS(2478), - [anon_sym_i32] = ACTIONS(2478), - [anon_sym_u64] = ACTIONS(2478), - [anon_sym_i64] = ACTIONS(2478), - [anon_sym_u128] = ACTIONS(2478), - [anon_sym_i128] = ACTIONS(2478), - [anon_sym_isize] = ACTIONS(2478), - [anon_sym_usize] = ACTIONS(2478), - [anon_sym_f32] = ACTIONS(2478), - [anon_sym_f64] = ACTIONS(2478), - [anon_sym_bool] = ACTIONS(2478), - [anon_sym_str] = ACTIONS(2478), - [anon_sym_char] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_PIPE] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_DOT_DOT] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_fn] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_gen] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_impl] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_mod] = ACTIONS(2478), - [anon_sym_pub] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_trait] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_unsafe] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_move] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [sym_integer_literal] = ACTIONS(2476), - [aux_sym_string_literal_token1] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [anon_sym_true] = ACTIONS(2478), - [anon_sym_false] = ACTIONS(2478), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_crate] = ACTIONS(2478), - [sym_metavariable] = ACTIONS(2476), - [sym__raw_string_literal_start] = ACTIONS(2476), - [sym_float_literal] = ACTIONS(2476), - }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_macro_rules_BANG] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_u8] = ACTIONS(2482), - [anon_sym_i8] = ACTIONS(2482), - [anon_sym_u16] = ACTIONS(2482), - [anon_sym_i16] = ACTIONS(2482), - [anon_sym_u32] = ACTIONS(2482), - [anon_sym_i32] = ACTIONS(2482), - [anon_sym_u64] = ACTIONS(2482), - [anon_sym_i64] = ACTIONS(2482), - [anon_sym_u128] = ACTIONS(2482), - [anon_sym_i128] = ACTIONS(2482), - [anon_sym_isize] = ACTIONS(2482), - [anon_sym_usize] = ACTIONS(2482), - [anon_sym_f32] = ACTIONS(2482), - [anon_sym_f64] = ACTIONS(2482), - [anon_sym_bool] = ACTIONS(2482), - [anon_sym_str] = ACTIONS(2482), - [anon_sym_char] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_DOT_DOT] = ACTIONS(2480), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_async] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_default] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_fn] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_gen] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_impl] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_mod] = ACTIONS(2482), - [anon_sym_pub] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_trait] = ACTIONS(2482), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_unsafe] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_yield] = ACTIONS(2482), - [anon_sym_move] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [sym_integer_literal] = ACTIONS(2480), - [aux_sym_string_literal_token1] = ACTIONS(2480), - [sym_char_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2482), - [anon_sym_false] = ACTIONS(2482), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2482), - [sym_super] = ACTIONS(2482), - [sym_crate] = ACTIONS(2482), - [sym_metavariable] = ACTIONS(2480), - [sym__raw_string_literal_start] = ACTIONS(2480), - [sym_float_literal] = ACTIONS(2480), - }, - [STATE(656)] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(2484), - [sym_identifier] = ACTIONS(2486), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_macro_rules_BANG] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2484), - [anon_sym_LBRACE] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2484), - [anon_sym_u8] = ACTIONS(2486), - [anon_sym_i8] = ACTIONS(2486), - [anon_sym_u16] = ACTIONS(2486), - [anon_sym_i16] = ACTIONS(2486), - [anon_sym_u32] = ACTIONS(2486), - [anon_sym_i32] = ACTIONS(2486), - [anon_sym_u64] = ACTIONS(2486), - [anon_sym_i64] = ACTIONS(2486), - [anon_sym_u128] = ACTIONS(2486), - [anon_sym_i128] = ACTIONS(2486), - [anon_sym_isize] = ACTIONS(2486), - [anon_sym_usize] = ACTIONS(2486), - [anon_sym_f32] = ACTIONS(2486), - [anon_sym_f64] = ACTIONS(2486), - [anon_sym_bool] = ACTIONS(2486), - [anon_sym_str] = ACTIONS(2486), - [anon_sym_char] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2484), - [anon_sym_BANG] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2484), - [anon_sym_DOT_DOT] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_enum] = ACTIONS(2486), - [anon_sym_fn] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_gen] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_impl] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_mod] = ACTIONS(2486), - [anon_sym_pub] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_struct] = ACTIONS(2486), - [anon_sym_trait] = ACTIONS(2486), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_union] = ACTIONS(2486), - [anon_sym_unsafe] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_yield] = ACTIONS(2486), - [anon_sym_move] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2486), - [sym_integer_literal] = ACTIONS(2484), - [aux_sym_string_literal_token1] = ACTIONS(2484), - [sym_char_literal] = ACTIONS(2484), - [anon_sym_true] = ACTIONS(2486), - [anon_sym_false] = ACTIONS(2486), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2486), - [sym_super] = ACTIONS(2486), - [sym_crate] = ACTIONS(2486), - [sym_metavariable] = ACTIONS(2484), - [sym__raw_string_literal_start] = ACTIONS(2484), - [sym_float_literal] = ACTIONS(2484), - }, - [STATE(657)] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2488), - [sym_identifier] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_macro_rules_BANG] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2488), - [anon_sym_u8] = ACTIONS(2490), - [anon_sym_i8] = ACTIONS(2490), - [anon_sym_u16] = ACTIONS(2490), - [anon_sym_i16] = ACTIONS(2490), - [anon_sym_u32] = ACTIONS(2490), - [anon_sym_i32] = ACTIONS(2490), - [anon_sym_u64] = ACTIONS(2490), - [anon_sym_i64] = ACTIONS(2490), - [anon_sym_u128] = ACTIONS(2490), - [anon_sym_i128] = ACTIONS(2490), - [anon_sym_isize] = ACTIONS(2490), - [anon_sym_usize] = ACTIONS(2490), - [anon_sym_f32] = ACTIONS(2490), - [anon_sym_f64] = ACTIONS(2490), - [anon_sym_bool] = ACTIONS(2490), - [anon_sym_str] = ACTIONS(2490), - [anon_sym_char] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_BANG] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_DOT_DOT] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_default] = ACTIONS(2490), - [anon_sym_enum] = ACTIONS(2490), - [anon_sym_fn] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_gen] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_impl] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_mod] = ACTIONS(2490), - [anon_sym_pub] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_struct] = ACTIONS(2490), - [anon_sym_trait] = ACTIONS(2490), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_union] = ACTIONS(2490), - [anon_sym_unsafe] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_yield] = ACTIONS(2490), - [anon_sym_move] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2490), - [sym_integer_literal] = ACTIONS(2488), - [aux_sym_string_literal_token1] = ACTIONS(2488), - [sym_char_literal] = ACTIONS(2488), - [anon_sym_true] = ACTIONS(2490), - [anon_sym_false] = ACTIONS(2490), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2490), - [sym_super] = ACTIONS(2490), - [sym_crate] = ACTIONS(2490), - [sym_metavariable] = ACTIONS(2488), - [sym__raw_string_literal_start] = ACTIONS(2488), - [sym_float_literal] = ACTIONS(2488), - }, - [STATE(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2492), - [sym_identifier] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_macro_rules_BANG] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_u8] = ACTIONS(2494), - [anon_sym_i8] = ACTIONS(2494), - [anon_sym_u16] = ACTIONS(2494), - [anon_sym_i16] = ACTIONS(2494), - [anon_sym_u32] = ACTIONS(2494), - [anon_sym_i32] = ACTIONS(2494), - [anon_sym_u64] = ACTIONS(2494), - [anon_sym_i64] = ACTIONS(2494), - [anon_sym_u128] = ACTIONS(2494), - [anon_sym_i128] = ACTIONS(2494), - [anon_sym_isize] = ACTIONS(2494), - [anon_sym_usize] = ACTIONS(2494), - [anon_sym_f32] = ACTIONS(2494), - [anon_sym_f64] = ACTIONS(2494), - [anon_sym_bool] = ACTIONS(2494), - [anon_sym_str] = ACTIONS(2494), - [anon_sym_char] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_DOT_DOT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_enum] = ACTIONS(2494), - [anon_sym_fn] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_gen] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_impl] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_mod] = ACTIONS(2494), - [anon_sym_pub] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_struct] = ACTIONS(2494), - [anon_sym_trait] = ACTIONS(2494), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_union] = ACTIONS(2494), - [anon_sym_unsafe] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2494), - [anon_sym_move] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [sym_integer_literal] = ACTIONS(2492), - [aux_sym_string_literal_token1] = ACTIONS(2492), - [sym_char_literal] = ACTIONS(2492), - [anon_sym_true] = ACTIONS(2494), - [anon_sym_false] = ACTIONS(2494), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_crate] = ACTIONS(2494), - [sym_metavariable] = ACTIONS(2492), - [sym__raw_string_literal_start] = ACTIONS(2492), - [sym_float_literal] = ACTIONS(2492), - }, - [STATE(659)] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2496), - [sym_identifier] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_macro_rules_BANG] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2496), - [anon_sym_u8] = ACTIONS(2498), - [anon_sym_i8] = ACTIONS(2498), - [anon_sym_u16] = ACTIONS(2498), - [anon_sym_i16] = ACTIONS(2498), - [anon_sym_u32] = ACTIONS(2498), - [anon_sym_i32] = ACTIONS(2498), - [anon_sym_u64] = ACTIONS(2498), - [anon_sym_i64] = ACTIONS(2498), - [anon_sym_u128] = ACTIONS(2498), - [anon_sym_i128] = ACTIONS(2498), - [anon_sym_isize] = ACTIONS(2498), - [anon_sym_usize] = ACTIONS(2498), - [anon_sym_f32] = ACTIONS(2498), - [anon_sym_f64] = ACTIONS(2498), - [anon_sym_bool] = ACTIONS(2498), - [anon_sym_str] = ACTIONS(2498), - [anon_sym_char] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_DOT_DOT] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_async] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_default] = ACTIONS(2498), - [anon_sym_enum] = ACTIONS(2498), - [anon_sym_fn] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_gen] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_impl] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_loop] = ACTIONS(2498), - [anon_sym_match] = ACTIONS(2498), - [anon_sym_mod] = ACTIONS(2498), - [anon_sym_pub] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_struct] = ACTIONS(2498), - [anon_sym_trait] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_union] = ACTIONS(2498), - [anon_sym_unsafe] = ACTIONS(2498), - [anon_sym_use] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_extern] = ACTIONS(2498), - [anon_sym_yield] = ACTIONS(2498), - [anon_sym_move] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [sym_integer_literal] = ACTIONS(2496), - [aux_sym_string_literal_token1] = ACTIONS(2496), - [sym_char_literal] = ACTIONS(2496), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2498), - [sym_super] = ACTIONS(2498), - [sym_crate] = ACTIONS(2498), - [sym_metavariable] = ACTIONS(2496), - [sym__raw_string_literal_start] = ACTIONS(2496), - [sym_float_literal] = ACTIONS(2496), - }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2500), - [sym_identifier] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_macro_rules_BANG] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2500), - [anon_sym_u8] = ACTIONS(2502), - [anon_sym_i8] = ACTIONS(2502), - [anon_sym_u16] = ACTIONS(2502), - [anon_sym_i16] = ACTIONS(2502), - [anon_sym_u32] = ACTIONS(2502), - [anon_sym_i32] = ACTIONS(2502), - [anon_sym_u64] = ACTIONS(2502), - [anon_sym_i64] = ACTIONS(2502), - [anon_sym_u128] = ACTIONS(2502), - [anon_sym_i128] = ACTIONS(2502), - [anon_sym_isize] = ACTIONS(2502), - [anon_sym_usize] = ACTIONS(2502), - [anon_sym_f32] = ACTIONS(2502), - [anon_sym_f64] = ACTIONS(2502), - [anon_sym_bool] = ACTIONS(2502), - [anon_sym_str] = ACTIONS(2502), - [anon_sym_char] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2500), - [anon_sym_DOT_DOT] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_default] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), - [anon_sym_fn] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_gen] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_impl] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_loop] = ACTIONS(2502), - [anon_sym_match] = ACTIONS(2502), - [anon_sym_mod] = ACTIONS(2502), - [anon_sym_pub] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_struct] = ACTIONS(2502), - [anon_sym_trait] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_union] = ACTIONS(2502), - [anon_sym_unsafe] = ACTIONS(2502), - [anon_sym_use] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_extern] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_move] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [sym_integer_literal] = ACTIONS(2500), - [aux_sym_string_literal_token1] = ACTIONS(2500), - [sym_char_literal] = ACTIONS(2500), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_crate] = ACTIONS(2502), - [sym_metavariable] = ACTIONS(2500), - [sym__raw_string_literal_start] = ACTIONS(2500), - [sym_float_literal] = ACTIONS(2500), - }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2504), - [sym_identifier] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_macro_rules_BANG] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2504), - [anon_sym_u8] = ACTIONS(2506), - [anon_sym_i8] = ACTIONS(2506), - [anon_sym_u16] = ACTIONS(2506), - [anon_sym_i16] = ACTIONS(2506), - [anon_sym_u32] = ACTIONS(2506), - [anon_sym_i32] = ACTIONS(2506), - [anon_sym_u64] = ACTIONS(2506), - [anon_sym_i64] = ACTIONS(2506), - [anon_sym_u128] = ACTIONS(2506), - [anon_sym_i128] = ACTIONS(2506), - [anon_sym_isize] = ACTIONS(2506), - [anon_sym_usize] = ACTIONS(2506), - [anon_sym_f32] = ACTIONS(2506), - [anon_sym_f64] = ACTIONS(2506), - [anon_sym_bool] = ACTIONS(2506), - [anon_sym_str] = ACTIONS(2506), - [anon_sym_char] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_DOT_DOT] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2504), - [anon_sym_POUND] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_async] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - [anon_sym_fn] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_gen] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_impl] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_loop] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2506), - [anon_sym_mod] = ACTIONS(2506), - [anon_sym_pub] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2506), - [anon_sym_trait] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_union] = ACTIONS(2506), - [anon_sym_unsafe] = ACTIONS(2506), - [anon_sym_use] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_yield] = ACTIONS(2506), - [anon_sym_move] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [sym_integer_literal] = ACTIONS(2504), - [aux_sym_string_literal_token1] = ACTIONS(2504), - [sym_char_literal] = ACTIONS(2504), - [anon_sym_true] = ACTIONS(2506), - [anon_sym_false] = ACTIONS(2506), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2506), - [sym_super] = ACTIONS(2506), - [sym_crate] = ACTIONS(2506), - [sym_metavariable] = ACTIONS(2504), - [sym__raw_string_literal_start] = ACTIONS(2504), - [sym_float_literal] = ACTIONS(2504), - }, - [STATE(662)] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_macro_rules_BANG] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_u8] = ACTIONS(2510), - [anon_sym_i8] = ACTIONS(2510), - [anon_sym_u16] = ACTIONS(2510), - [anon_sym_i16] = ACTIONS(2510), - [anon_sym_u32] = ACTIONS(2510), - [anon_sym_i32] = ACTIONS(2510), - [anon_sym_u64] = ACTIONS(2510), - [anon_sym_i64] = ACTIONS(2510), - [anon_sym_u128] = ACTIONS(2510), - [anon_sym_i128] = ACTIONS(2510), - [anon_sym_isize] = ACTIONS(2510), - [anon_sym_usize] = ACTIONS(2510), - [anon_sym_f32] = ACTIONS(2510), - [anon_sym_f64] = ACTIONS(2510), - [anon_sym_bool] = ACTIONS(2510), - [anon_sym_str] = ACTIONS(2510), - [anon_sym_char] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_PIPE] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2508), - [anon_sym_DOT_DOT] = ACTIONS(2508), - [anon_sym_COLON_COLON] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2510), - [anon_sym_async] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_fn] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_gen] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_impl] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_loop] = ACTIONS(2510), - [anon_sym_match] = ACTIONS(2510), - [anon_sym_mod] = ACTIONS(2510), - [anon_sym_pub] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_trait] = ACTIONS(2510), - [anon_sym_type] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_unsafe] = ACTIONS(2510), - [anon_sym_use] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_yield] = ACTIONS(2510), - [anon_sym_move] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [sym_integer_literal] = ACTIONS(2508), - [aux_sym_string_literal_token1] = ACTIONS(2508), - [sym_char_literal] = ACTIONS(2508), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2510), - [sym_super] = ACTIONS(2510), - [sym_crate] = ACTIONS(2510), - [sym_metavariable] = ACTIONS(2508), - [sym__raw_string_literal_start] = ACTIONS(2508), - [sym_float_literal] = ACTIONS(2508), - }, - [STATE(663)] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(2512), - [sym_identifier] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_macro_rules_BANG] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_u8] = ACTIONS(2514), - [anon_sym_i8] = ACTIONS(2514), - [anon_sym_u16] = ACTIONS(2514), - [anon_sym_i16] = ACTIONS(2514), - [anon_sym_u32] = ACTIONS(2514), - [anon_sym_i32] = ACTIONS(2514), - [anon_sym_u64] = ACTIONS(2514), - [anon_sym_i64] = ACTIONS(2514), - [anon_sym_u128] = ACTIONS(2514), - [anon_sym_i128] = ACTIONS(2514), - [anon_sym_isize] = ACTIONS(2514), - [anon_sym_usize] = ACTIONS(2514), - [anon_sym_f32] = ACTIONS(2514), - [anon_sym_f64] = ACTIONS(2514), - [anon_sym_bool] = ACTIONS(2514), - [anon_sym_str] = ACTIONS(2514), - [anon_sym_char] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_PIPE] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2512), - [anon_sym_DOT_DOT] = ACTIONS(2512), - [anon_sym_COLON_COLON] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2514), - [anon_sym_async] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - [anon_sym_fn] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_gen] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_impl] = ACTIONS(2514), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_loop] = ACTIONS(2514), - [anon_sym_match] = ACTIONS(2514), - [anon_sym_mod] = ACTIONS(2514), - [anon_sym_pub] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_struct] = ACTIONS(2514), - [anon_sym_trait] = ACTIONS(2514), - [anon_sym_type] = ACTIONS(2514), - [anon_sym_union] = ACTIONS(2514), - [anon_sym_unsafe] = ACTIONS(2514), - [anon_sym_use] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym_yield] = ACTIONS(2514), - [anon_sym_move] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [sym_integer_literal] = ACTIONS(2512), - [aux_sym_string_literal_token1] = ACTIONS(2512), - [sym_char_literal] = ACTIONS(2512), - [anon_sym_true] = ACTIONS(2514), - [anon_sym_false] = ACTIONS(2514), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_crate] = ACTIONS(2514), - [sym_metavariable] = ACTIONS(2512), - [sym__raw_string_literal_start] = ACTIONS(2512), - [sym_float_literal] = ACTIONS(2512), - }, - [STATE(664)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(665)] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), [ts_builtin_sym_end] = ACTIONS(2518), [sym_identifier] = ACTIONS(2520), [anon_sym_SEMI] = ACTIONS(2518), @@ -85331,9 +84706,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2518), [sym_float_literal] = ACTIONS(2518), }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(2522), [sym_identifier] = ACTIONS(2524), [anon_sym_SEMI] = ACTIONS(2522), @@ -85412,9 +84787,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2522), [sym_float_literal] = ACTIONS(2522), }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), + [STATE(656)] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), [ts_builtin_sym_end] = ACTIONS(2526), [sym_identifier] = ACTIONS(2528), [anon_sym_SEMI] = ACTIONS(2526), @@ -85493,9 +84868,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2526), [sym_float_literal] = ACTIONS(2526), }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), [ts_builtin_sym_end] = ACTIONS(2530), [sym_identifier] = ACTIONS(2532), [anon_sym_SEMI] = ACTIONS(2530), @@ -85574,9 +84949,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2530), [sym_float_literal] = ACTIONS(2530), }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), [ts_builtin_sym_end] = ACTIONS(2534), [sym_identifier] = ACTIONS(2536), [anon_sym_SEMI] = ACTIONS(2534), @@ -85655,9 +85030,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2534), [sym_float_literal] = ACTIONS(2534), }, - [STATE(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), [ts_builtin_sym_end] = ACTIONS(2538), [sym_identifier] = ACTIONS(2540), [anon_sym_SEMI] = ACTIONS(2538), @@ -85736,9 +85111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2538), [sym_float_literal] = ACTIONS(2538), }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), [ts_builtin_sym_end] = ACTIONS(2542), [sym_identifier] = ACTIONS(2544), [anon_sym_SEMI] = ACTIONS(2542), @@ -85817,414 +85192,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2542), [sym_float_literal] = ACTIONS(2542), }, - [STATE(672)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [aux_sym_declaration_list_repeat1] = STATE(676), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2546), [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(2548), + [anon_sym_i8] = ACTIONS(2548), + [anon_sym_u16] = ACTIONS(2548), + [anon_sym_i16] = ACTIONS(2548), + [anon_sym_u32] = ACTIONS(2548), + [anon_sym_i32] = ACTIONS(2548), + [anon_sym_u64] = ACTIONS(2548), + [anon_sym_i64] = ACTIONS(2548), + [anon_sym_u128] = ACTIONS(2548), + [anon_sym_i128] = ACTIONS(2548), + [anon_sym_isize] = ACTIONS(2548), + [anon_sym_usize] = ACTIONS(2548), + [anon_sym_f32] = ACTIONS(2548), + [anon_sym_f64] = ACTIONS(2548), + [anon_sym_bool] = ACTIONS(2548), + [anon_sym_str] = ACTIONS(2548), + [anon_sym_char] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2546), + [anon_sym_COLON_COLON] = ACTIONS(2546), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_gen] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_impl] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_loop] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_mod] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_use] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_move] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [sym_integer_literal] = ACTIONS(2546), + [aux_sym_string_literal_token1] = ACTIONS(2546), + [sym_char_literal] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_crate] = ACTIONS(2548), + [sym_metavariable] = ACTIONS(2546), + [sym__raw_string_literal_start] = ACTIONS(2546), + [sym_float_literal] = ACTIONS(2546), }, - [STATE(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2548), - [sym_identifier] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2548), - [anon_sym_u8] = ACTIONS(2550), - [anon_sym_i8] = ACTIONS(2550), - [anon_sym_u16] = ACTIONS(2550), - [anon_sym_i16] = ACTIONS(2550), - [anon_sym_u32] = ACTIONS(2550), - [anon_sym_i32] = ACTIONS(2550), - [anon_sym_u64] = ACTIONS(2550), - [anon_sym_i64] = ACTIONS(2550), - [anon_sym_u128] = ACTIONS(2550), - [anon_sym_i128] = ACTIONS(2550), - [anon_sym_isize] = ACTIONS(2550), - [anon_sym_usize] = ACTIONS(2550), - [anon_sym_f32] = ACTIONS(2550), - [anon_sym_f64] = ACTIONS(2550), - [anon_sym_bool] = ACTIONS(2550), - [anon_sym_str] = ACTIONS(2550), - [anon_sym_char] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2550), - [anon_sym_async] = ACTIONS(2550), - [anon_sym_break] = ACTIONS(2550), - [anon_sym_const] = ACTIONS(2550), - [anon_sym_continue] = ACTIONS(2550), - [anon_sym_default] = ACTIONS(2550), - [anon_sym_enum] = ACTIONS(2550), - [anon_sym_fn] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2550), - [anon_sym_gen] = ACTIONS(2550), - [anon_sym_if] = ACTIONS(2550), - [anon_sym_impl] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_loop] = ACTIONS(2550), - [anon_sym_match] = ACTIONS(2550), - [anon_sym_mod] = ACTIONS(2550), - [anon_sym_pub] = ACTIONS(2550), - [anon_sym_return] = ACTIONS(2550), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(2550), - [anon_sym_trait] = ACTIONS(2550), - [anon_sym_type] = ACTIONS(2550), - [anon_sym_union] = ACTIONS(2550), - [anon_sym_unsafe] = ACTIONS(2550), - [anon_sym_use] = ACTIONS(2550), - [anon_sym_while] = ACTIONS(2550), - [anon_sym_extern] = ACTIONS(2550), - [anon_sym_yield] = ACTIONS(2550), - [anon_sym_move] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2550), - [sym_integer_literal] = ACTIONS(2548), - [aux_sym_string_literal_token1] = ACTIONS(2548), - [sym_char_literal] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2550), - [anon_sym_false] = ACTIONS(2550), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2550), - [sym_super] = ACTIONS(2550), - [sym_crate] = ACTIONS(2550), - [sym_metavariable] = ACTIONS(2548), - [sym__raw_string_literal_start] = ACTIONS(2548), - [sym_float_literal] = ACTIONS(2548), + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_macro_rules_BANG] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_u8] = ACTIONS(2552), + [anon_sym_i8] = ACTIONS(2552), + [anon_sym_u16] = ACTIONS(2552), + [anon_sym_i16] = ACTIONS(2552), + [anon_sym_u32] = ACTIONS(2552), + [anon_sym_i32] = ACTIONS(2552), + [anon_sym_u64] = ACTIONS(2552), + [anon_sym_i64] = ACTIONS(2552), + [anon_sym_u128] = ACTIONS(2552), + [anon_sym_i128] = ACTIONS(2552), + [anon_sym_isize] = ACTIONS(2552), + [anon_sym_usize] = ACTIONS(2552), + [anon_sym_f32] = ACTIONS(2552), + [anon_sym_f64] = ACTIONS(2552), + [anon_sym_bool] = ACTIONS(2552), + [anon_sym_str] = ACTIONS(2552), + [anon_sym_char] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2550), + [anon_sym_DOT_DOT] = ACTIONS(2550), + [anon_sym_COLON_COLON] = ACTIONS(2550), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_fn] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_gen] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_loop] = ACTIONS(2552), + [anon_sym_match] = ACTIONS(2552), + [anon_sym_mod] = ACTIONS(2552), + [anon_sym_pub] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_trait] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_unsafe] = ACTIONS(2552), + [anon_sym_use] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym_yield] = ACTIONS(2552), + [anon_sym_move] = ACTIONS(2552), + [anon_sym_try] = ACTIONS(2552), + [sym_integer_literal] = ACTIONS(2550), + [aux_sym_string_literal_token1] = ACTIONS(2550), + [sym_char_literal] = ACTIONS(2550), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2552), + [sym_super] = ACTIONS(2552), + [sym_crate] = ACTIONS(2552), + [sym_metavariable] = ACTIONS(2550), + [sym__raw_string_literal_start] = ACTIONS(2550), + [sym_float_literal] = ACTIONS(2550), }, - [STATE(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_identifier] = ACTIONS(2554), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_macro_rules_BANG] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2552), - [anon_sym_u8] = ACTIONS(2554), - [anon_sym_i8] = ACTIONS(2554), - [anon_sym_u16] = ACTIONS(2554), - [anon_sym_i16] = ACTIONS(2554), - [anon_sym_u32] = ACTIONS(2554), - [anon_sym_i32] = ACTIONS(2554), - [anon_sym_u64] = ACTIONS(2554), - [anon_sym_i64] = ACTIONS(2554), - [anon_sym_u128] = ACTIONS(2554), - [anon_sym_i128] = ACTIONS(2554), - [anon_sym_isize] = ACTIONS(2554), - [anon_sym_usize] = ACTIONS(2554), - [anon_sym_f32] = ACTIONS(2554), - [anon_sym_f64] = ACTIONS(2554), - [anon_sym_bool] = ACTIONS(2554), - [anon_sym_str] = ACTIONS(2554), - [anon_sym_char] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_DOT_DOT] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2554), - [anon_sym_async] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2554), - [anon_sym_fn] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2554), - [anon_sym_gen] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_impl] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_loop] = ACTIONS(2554), - [anon_sym_match] = ACTIONS(2554), - [anon_sym_mod] = ACTIONS(2554), - [anon_sym_pub] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_struct] = ACTIONS(2554), - [anon_sym_trait] = ACTIONS(2554), - [anon_sym_type] = ACTIONS(2554), - [anon_sym_union] = ACTIONS(2554), - [anon_sym_unsafe] = ACTIONS(2554), - [anon_sym_use] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2554), - [anon_sym_extern] = ACTIONS(2554), - [anon_sym_yield] = ACTIONS(2554), - [anon_sym_move] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [sym_integer_literal] = ACTIONS(2552), - [aux_sym_string_literal_token1] = ACTIONS(2552), - [sym_char_literal] = ACTIONS(2552), - [anon_sym_true] = ACTIONS(2554), - [anon_sym_false] = ACTIONS(2554), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2554), - [sym_super] = ACTIONS(2554), - [sym_crate] = ACTIONS(2554), - [sym_metavariable] = ACTIONS(2552), - [sym__raw_string_literal_start] = ACTIONS(2552), - [sym_float_literal] = ACTIONS(2552), + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_macro_rules_BANG] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_u8] = ACTIONS(2556), + [anon_sym_i8] = ACTIONS(2556), + [anon_sym_u16] = ACTIONS(2556), + [anon_sym_i16] = ACTIONS(2556), + [anon_sym_u32] = ACTIONS(2556), + [anon_sym_i32] = ACTIONS(2556), + [anon_sym_u64] = ACTIONS(2556), + [anon_sym_i64] = ACTIONS(2556), + [anon_sym_u128] = ACTIONS(2556), + [anon_sym_i128] = ACTIONS(2556), + [anon_sym_isize] = ACTIONS(2556), + [anon_sym_usize] = ACTIONS(2556), + [anon_sym_f32] = ACTIONS(2556), + [anon_sym_f64] = ACTIONS(2556), + [anon_sym_bool] = ACTIONS(2556), + [anon_sym_str] = ACTIONS(2556), + [anon_sym_char] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_fn] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_gen] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_impl] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_loop] = ACTIONS(2556), + [anon_sym_match] = ACTIONS(2556), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_trait] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_move] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [sym_integer_literal] = ACTIONS(2554), + [aux_sym_string_literal_token1] = ACTIONS(2554), + [sym_char_literal] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_crate] = ACTIONS(2556), + [sym_metavariable] = ACTIONS(2554), + [sym__raw_string_literal_start] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2554), }, - [STATE(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2556), - [sym_identifier] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_macro_rules_BANG] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_u8] = ACTIONS(2558), - [anon_sym_i8] = ACTIONS(2558), - [anon_sym_u16] = ACTIONS(2558), - [anon_sym_i16] = ACTIONS(2558), - [anon_sym_u32] = ACTIONS(2558), - [anon_sym_i32] = ACTIONS(2558), - [anon_sym_u64] = ACTIONS(2558), - [anon_sym_i64] = ACTIONS(2558), - [anon_sym_u128] = ACTIONS(2558), - [anon_sym_i128] = ACTIONS(2558), - [anon_sym_isize] = ACTIONS(2558), - [anon_sym_usize] = ACTIONS(2558), - [anon_sym_f32] = ACTIONS(2558), - [anon_sym_f64] = ACTIONS(2558), - [anon_sym_bool] = ACTIONS(2558), - [anon_sym_str] = ACTIONS(2558), - [anon_sym_char] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2556), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_DOT_DOT] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2556), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), - [anon_sym_fn] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_gen] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_impl] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_loop] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_mod] = ACTIONS(2558), - [anon_sym_pub] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_struct] = ACTIONS(2558), - [anon_sym_trait] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_union] = ACTIONS(2558), - [anon_sym_unsafe] = ACTIONS(2558), - [anon_sym_use] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_extern] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_move] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [sym_integer_literal] = ACTIONS(2556), - [aux_sym_string_literal_token1] = ACTIONS(2556), - [sym_char_literal] = ACTIONS(2556), - [anon_sym_true] = ACTIONS(2558), - [anon_sym_false] = ACTIONS(2558), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_crate] = ACTIONS(2558), - [sym_metavariable] = ACTIONS(2556), - [sym__raw_string_literal_start] = ACTIONS(2556), - [sym_float_literal] = ACTIONS(2556), + [STATE(664)] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_macro_rules_BANG] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_u8] = ACTIONS(2560), + [anon_sym_i8] = ACTIONS(2560), + [anon_sym_u16] = ACTIONS(2560), + [anon_sym_i16] = ACTIONS(2560), + [anon_sym_u32] = ACTIONS(2560), + [anon_sym_i32] = ACTIONS(2560), + [anon_sym_u64] = ACTIONS(2560), + [anon_sym_i64] = ACTIONS(2560), + [anon_sym_u128] = ACTIONS(2560), + [anon_sym_i128] = ACTIONS(2560), + [anon_sym_isize] = ACTIONS(2560), + [anon_sym_usize] = ACTIONS(2560), + [anon_sym_f32] = ACTIONS(2560), + [anon_sym_f64] = ACTIONS(2560), + [anon_sym_bool] = ACTIONS(2560), + [anon_sym_str] = ACTIONS(2560), + [anon_sym_char] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [anon_sym_COLON_COLON] = ACTIONS(2558), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_fn] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_gen] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_impl] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_loop] = ACTIONS(2560), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_mod] = ACTIONS(2560), + [anon_sym_pub] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_unsafe] = ACTIONS(2560), + [anon_sym_use] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_move] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [sym_integer_literal] = ACTIONS(2558), + [aux_sym_string_literal_token1] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_crate] = ACTIONS(2560), + [sym_metavariable] = ACTIONS(2558), + [sym__raw_string_literal_start] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), }, - [STATE(676)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_gen] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_impl] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_pub] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_trait] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_unsafe] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), }, - [STATE(677)] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2562), [sym_identifier] = ACTIONS(2564), [anon_sym_SEMI] = ACTIONS(2562), @@ -86303,9 +85678,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2562), [sym_float_literal] = ACTIONS(2562), }, - [STATE(678)] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2566), [sym_identifier] = ACTIONS(2568), [anon_sym_SEMI] = ACTIONS(2566), @@ -86384,171 +85759,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2566), [sym_float_literal] = ACTIONS(2566), }, - [STATE(679)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(680)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_macro_rules_BANG] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_u8] = ACTIONS(2572), + [anon_sym_i8] = ACTIONS(2572), + [anon_sym_u16] = ACTIONS(2572), + [anon_sym_i16] = ACTIONS(2572), + [anon_sym_u32] = ACTIONS(2572), + [anon_sym_i32] = ACTIONS(2572), + [anon_sym_u64] = ACTIONS(2572), + [anon_sym_i64] = ACTIONS(2572), + [anon_sym_u128] = ACTIONS(2572), + [anon_sym_i128] = ACTIONS(2572), + [anon_sym_isize] = ACTIONS(2572), + [anon_sym_usize] = ACTIONS(2572), + [anon_sym_f32] = ACTIONS(2572), + [anon_sym_f64] = ACTIONS(2572), + [anon_sym_bool] = ACTIONS(2572), + [anon_sym_str] = ACTIONS(2572), + [anon_sym_char] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DOT_DOT] = ACTIONS(2570), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2572), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_fn] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_gen] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_impl] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_loop] = ACTIONS(2572), + [anon_sym_match] = ACTIONS(2572), + [anon_sym_mod] = ACTIONS(2572), + [anon_sym_pub] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_trait] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_unsafe] = ACTIONS(2572), + [anon_sym_use] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_yield] = ACTIONS(2572), + [anon_sym_move] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [sym_integer_literal] = ACTIONS(2570), + [aux_sym_string_literal_token1] = ACTIONS(2570), + [sym_char_literal] = ACTIONS(2570), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_crate] = ACTIONS(2572), + [sym_metavariable] = ACTIONS(2570), + [sym__raw_string_literal_start] = ACTIONS(2570), + [sym_float_literal] = ACTIONS(2570), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2574), [sym_identifier] = ACTIONS(2576), [anon_sym_SEMI] = ACTIONS(2574), @@ -86627,9 +85921,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2574), [sym_float_literal] = ACTIONS(2574), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2578), [sym_identifier] = ACTIONS(2580), [anon_sym_SEMI] = ACTIONS(2578), @@ -86708,9 +86002,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2578), [sym_float_literal] = ACTIONS(2578), }, - [STATE(683)] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2582), [sym_identifier] = ACTIONS(2584), [anon_sym_SEMI] = ACTIONS(2582), @@ -86789,1305 +86083,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2582), [sym_float_literal] = ACTIONS(2582), }, - [STATE(684)] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_macro_rules_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_u8] = ACTIONS(2588), - [anon_sym_i8] = ACTIONS(2588), - [anon_sym_u16] = ACTIONS(2588), - [anon_sym_i16] = ACTIONS(2588), - [anon_sym_u32] = ACTIONS(2588), - [anon_sym_i32] = ACTIONS(2588), - [anon_sym_u64] = ACTIONS(2588), - [anon_sym_i64] = ACTIONS(2588), - [anon_sym_u128] = ACTIONS(2588), - [anon_sym_i128] = ACTIONS(2588), - [anon_sym_isize] = ACTIONS(2588), - [anon_sym_usize] = ACTIONS(2588), - [anon_sym_f32] = ACTIONS(2588), - [anon_sym_f64] = ACTIONS(2588), - [anon_sym_bool] = ACTIONS(2588), - [anon_sym_str] = ACTIONS(2588), - [anon_sym_char] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_DOT_DOT] = ACTIONS(2586), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_fn] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_gen] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_impl] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_loop] = ACTIONS(2588), - [anon_sym_match] = ACTIONS(2588), - [anon_sym_mod] = ACTIONS(2588), - [anon_sym_pub] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_unsafe] = ACTIONS(2588), - [anon_sym_use] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_move] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [sym_integer_literal] = ACTIONS(2586), - [aux_sym_string_literal_token1] = ACTIONS(2586), - [sym_char_literal] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_crate] = ACTIONS(2588), - [sym_metavariable] = ACTIONS(2586), - [sym__raw_string_literal_start] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(2586), - }, - [STATE(685)] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2590), + [STATE(672)] = { + [sym_empty_statement] = STATE(1112), + [sym_macro_definition] = STATE(1112), + [sym_attribute_item] = STATE(1112), + [sym_inner_attribute_item] = STATE(1112), + [sym_mod_item] = STATE(1112), + [sym_foreign_mod_item] = STATE(1112), + [sym_struct_item] = STATE(1112), + [sym_union_item] = STATE(1112), + [sym_enum_item] = STATE(1112), + [sym_extern_crate_declaration] = STATE(1112), + [sym_const_item] = STATE(1112), + [sym_static_item] = STATE(1112), + [sym_type_item] = STATE(1112), + [sym_function_item] = STATE(1112), + [sym_function_signature_item] = STATE(1112), + [sym_function_modifiers] = STATE(3749), + [sym_impl_item] = STATE(1112), + [sym_trait_item] = STATE(1112), + [sym_associated_type] = STATE(1112), + [sym_let_declaration] = STATE(1112), + [sym_use_declaration] = STATE(1112), + [sym_extern_modifier] = STATE(2237), + [sym_visibility_modifier] = STATE(2006), + [sym_bracketed_type] = STATE(3714), + [sym_generic_type_with_turbofish] = STATE(3774), + [sym_macro_invocation] = STATE(1112), + [sym_scoped_identifier] = STATE(3435), + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [aux_sym_declaration_list_repeat1] = STATE(751), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), [anon_sym_macro_rules_BANG] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_u8] = ACTIONS(2592), - [anon_sym_i8] = ACTIONS(2592), - [anon_sym_u16] = ACTIONS(2592), - [anon_sym_i16] = ACTIONS(2592), - [anon_sym_u32] = ACTIONS(2592), - [anon_sym_i32] = ACTIONS(2592), - [anon_sym_u64] = ACTIONS(2592), - [anon_sym_i64] = ACTIONS(2592), - [anon_sym_u128] = ACTIONS(2592), - [anon_sym_i128] = ACTIONS(2592), - [anon_sym_isize] = ACTIONS(2592), - [anon_sym_usize] = ACTIONS(2592), - [anon_sym_f32] = ACTIONS(2592), - [anon_sym_f64] = ACTIONS(2592), - [anon_sym_bool] = ACTIONS(2592), - [anon_sym_str] = ACTIONS(2592), - [anon_sym_char] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_async] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_fn] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_gen] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_impl] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_loop] = ACTIONS(2592), - [anon_sym_match] = ACTIONS(2592), - [anon_sym_mod] = ACTIONS(2592), - [anon_sym_pub] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_struct] = ACTIONS(2592), - [anon_sym_trait] = ACTIONS(2592), - [anon_sym_type] = ACTIONS(2592), - [anon_sym_union] = ACTIONS(2592), - [anon_sym_unsafe] = ACTIONS(2592), - [anon_sym_use] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2592), - [anon_sym_move] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [sym_integer_literal] = ACTIONS(2590), - [aux_sym_string_literal_token1] = ACTIONS(2590), - [sym_char_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2592), - [sym_super] = ACTIONS(2592), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2590), - [sym__raw_string_literal_start] = ACTIONS(2590), - [sym_float_literal] = ACTIONS(2590), - }, - [STATE(686)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_macro_rules_BANG] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_u8] = ACTIONS(2598), - [anon_sym_i8] = ACTIONS(2598), - [anon_sym_u16] = ACTIONS(2598), - [anon_sym_i16] = ACTIONS(2598), - [anon_sym_u32] = ACTIONS(2598), - [anon_sym_i32] = ACTIONS(2598), - [anon_sym_u64] = ACTIONS(2598), - [anon_sym_i64] = ACTIONS(2598), - [anon_sym_u128] = ACTIONS(2598), - [anon_sym_i128] = ACTIONS(2598), - [anon_sym_isize] = ACTIONS(2598), - [anon_sym_usize] = ACTIONS(2598), - [anon_sym_f32] = ACTIONS(2598), - [anon_sym_f64] = ACTIONS(2598), - [anon_sym_bool] = ACTIONS(2598), - [anon_sym_str] = ACTIONS(2598), - [anon_sym_char] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), - [anon_sym_fn] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_gen] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_impl] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_loop] = ACTIONS(2598), - [anon_sym_match] = ACTIONS(2598), - [anon_sym_mod] = ACTIONS(2598), - [anon_sym_pub] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_struct] = ACTIONS(2598), - [anon_sym_trait] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_union] = ACTIONS(2598), - [anon_sym_unsafe] = ACTIONS(2598), - [anon_sym_use] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_extern] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_move] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [sym_integer_literal] = ACTIONS(2596), - [aux_sym_string_literal_token1] = ACTIONS(2596), - [sym_char_literal] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2598), - [anon_sym_false] = ACTIONS(2598), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_crate] = ACTIONS(2598), - [sym_metavariable] = ACTIONS(2596), - [sym__raw_string_literal_start] = ACTIONS(2596), - [sym_float_literal] = ACTIONS(2596), - }, - [STATE(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2600), - [sym_identifier] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_macro_rules_BANG] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2600), - [anon_sym_u8] = ACTIONS(2602), - [anon_sym_i8] = ACTIONS(2602), - [anon_sym_u16] = ACTIONS(2602), - [anon_sym_i16] = ACTIONS(2602), - [anon_sym_u32] = ACTIONS(2602), - [anon_sym_i32] = ACTIONS(2602), - [anon_sym_u64] = ACTIONS(2602), - [anon_sym_i64] = ACTIONS(2602), - [anon_sym_u128] = ACTIONS(2602), - [anon_sym_i128] = ACTIONS(2602), - [anon_sym_isize] = ACTIONS(2602), - [anon_sym_usize] = ACTIONS(2602), - [anon_sym_f32] = ACTIONS(2602), - [anon_sym_f64] = ACTIONS(2602), - [anon_sym_bool] = ACTIONS(2602), - [anon_sym_str] = ACTIONS(2602), - [anon_sym_char] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_DOT_DOT] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(2600), [anon_sym_default] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_fn] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_gen] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_impl] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_loop] = ACTIONS(2602), - [anon_sym_match] = ACTIONS(2602), - [anon_sym_mod] = ACTIONS(2602), - [anon_sym_pub] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_trait] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_unsafe] = ACTIONS(2602), - [anon_sym_use] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_move] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [sym_integer_literal] = ACTIONS(2600), - [aux_sym_string_literal_token1] = ACTIONS(2600), - [sym_char_literal] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_crate] = ACTIONS(2602), - [sym_metavariable] = ACTIONS(2600), - [sym__raw_string_literal_start] = ACTIONS(2600), - [sym_float_literal] = ACTIONS(2600), - }, - [STATE(689)] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_macro_rules_BANG] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_STAR] = ACTIONS(2604), - [anon_sym_u8] = ACTIONS(2606), - [anon_sym_i8] = ACTIONS(2606), - [anon_sym_u16] = ACTIONS(2606), - [anon_sym_i16] = ACTIONS(2606), - [anon_sym_u32] = ACTIONS(2606), - [anon_sym_i32] = ACTIONS(2606), - [anon_sym_u64] = ACTIONS(2606), - [anon_sym_i64] = ACTIONS(2606), - [anon_sym_u128] = ACTIONS(2606), - [anon_sym_i128] = ACTIONS(2606), - [anon_sym_isize] = ACTIONS(2606), - [anon_sym_usize] = ACTIONS(2606), - [anon_sym_f32] = ACTIONS(2606), - [anon_sym_f64] = ACTIONS(2606), - [anon_sym_bool] = ACTIONS(2606), - [anon_sym_str] = ACTIONS(2606), - [anon_sym_char] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_DOT_DOT] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2606), - [anon_sym_async] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2604), [anon_sym_fn] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_gen] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_impl] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_loop] = ACTIONS(2606), - [anon_sym_match] = ACTIONS(2606), - [anon_sym_mod] = ACTIONS(2606), - [anon_sym_pub] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_trait] = ACTIONS(2606), - [anon_sym_type] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_unsafe] = ACTIONS(2606), - [anon_sym_use] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_yield] = ACTIONS(2606), - [anon_sym_move] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [sym_integer_literal] = ACTIONS(2604), - [aux_sym_string_literal_token1] = ACTIONS(2604), - [sym_char_literal] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_crate] = ACTIONS(2606), - [sym_metavariable] = ACTIONS(2604), - [sym__raw_string_literal_start] = ACTIONS(2604), - [sym_float_literal] = ACTIONS(2604), - }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_macro_rules_BANG] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_u8] = ACTIONS(2610), - [anon_sym_i8] = ACTIONS(2610), - [anon_sym_u16] = ACTIONS(2610), - [anon_sym_i16] = ACTIONS(2610), - [anon_sym_u32] = ACTIONS(2610), - [anon_sym_i32] = ACTIONS(2610), - [anon_sym_u64] = ACTIONS(2610), - [anon_sym_i64] = ACTIONS(2610), - [anon_sym_u128] = ACTIONS(2610), - [anon_sym_i128] = ACTIONS(2610), - [anon_sym_isize] = ACTIONS(2610), - [anon_sym_usize] = ACTIONS(2610), - [anon_sym_f32] = ACTIONS(2610), - [anon_sym_f64] = ACTIONS(2610), - [anon_sym_bool] = ACTIONS(2610), - [anon_sym_str] = ACTIONS(2610), - [anon_sym_char] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_DOT_DOT] = ACTIONS(2608), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_fn] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_gen] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), + [anon_sym_gen] = ACTIONS(2608), [anon_sym_impl] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_loop] = ACTIONS(2610), - [anon_sym_match] = ACTIONS(2610), - [anon_sym_mod] = ACTIONS(2610), - [anon_sym_pub] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_trait] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(2610), - [anon_sym_use] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_move] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [sym_integer_literal] = ACTIONS(2608), - [aux_sym_string_literal_token1] = ACTIONS(2608), - [sym_char_literal] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2610), - [anon_sym_false] = ACTIONS(2610), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_crate] = ACTIONS(2610), - [sym_metavariable] = ACTIONS(2608), - [sym__raw_string_literal_start] = ACTIONS(2608), - [sym_float_literal] = ACTIONS(2608), - }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_macro_rules_BANG] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_u8] = ACTIONS(2614), - [anon_sym_i8] = ACTIONS(2614), - [anon_sym_u16] = ACTIONS(2614), - [anon_sym_i16] = ACTIONS(2614), - [anon_sym_u32] = ACTIONS(2614), - [anon_sym_i32] = ACTIONS(2614), - [anon_sym_u64] = ACTIONS(2614), - [anon_sym_i64] = ACTIONS(2614), - [anon_sym_u128] = ACTIONS(2614), - [anon_sym_i128] = ACTIONS(2614), - [anon_sym_isize] = ACTIONS(2614), - [anon_sym_usize] = ACTIONS(2614), - [anon_sym_f32] = ACTIONS(2614), - [anon_sym_f64] = ACTIONS(2614), - [anon_sym_bool] = ACTIONS(2614), - [anon_sym_str] = ACTIONS(2614), - [anon_sym_char] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_fn] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_gen] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_impl] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), + [anon_sym_let] = ACTIONS(2612), [anon_sym_mod] = ACTIONS(2614), - [anon_sym_pub] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_trait] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2614), - [anon_sym_use] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_move] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [sym_integer_literal] = ACTIONS(2612), - [aux_sym_string_literal_token1] = ACTIONS(2612), - [sym_char_literal] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_crate] = ACTIONS(2614), - [sym_metavariable] = ACTIONS(2612), - [sym__raw_string_literal_start] = ACTIONS(2612), - [sym_float_literal] = ACTIONS(2612), - }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_macro_rules_BANG] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_u8] = ACTIONS(2618), - [anon_sym_i8] = ACTIONS(2618), - [anon_sym_u16] = ACTIONS(2618), - [anon_sym_i16] = ACTIONS(2618), - [anon_sym_u32] = ACTIONS(2618), - [anon_sym_i32] = ACTIONS(2618), - [anon_sym_u64] = ACTIONS(2618), - [anon_sym_i64] = ACTIONS(2618), - [anon_sym_u128] = ACTIONS(2618), - [anon_sym_i128] = ACTIONS(2618), - [anon_sym_isize] = ACTIONS(2618), - [anon_sym_usize] = ACTIONS(2618), - [anon_sym_f32] = ACTIONS(2618), - [anon_sym_f64] = ACTIONS(2618), - [anon_sym_bool] = ACTIONS(2618), - [anon_sym_str] = ACTIONS(2618), - [anon_sym_char] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_DOT_DOT] = ACTIONS(2616), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_POUND] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_const] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_default] = ACTIONS(2618), - [anon_sym_enum] = ACTIONS(2618), - [anon_sym_fn] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_gen] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_impl] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_loop] = ACTIONS(2618), - [anon_sym_match] = ACTIONS(2618), - [anon_sym_mod] = ACTIONS(2618), - [anon_sym_pub] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_static] = ACTIONS(2618), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2616), [anon_sym_struct] = ACTIONS(2618), - [anon_sym_trait] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_union] = ACTIONS(2618), - [anon_sym_unsafe] = ACTIONS(2618), - [anon_sym_use] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_extern] = ACTIONS(2618), - [anon_sym_yield] = ACTIONS(2618), - [anon_sym_move] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [sym_integer_literal] = ACTIONS(2616), - [aux_sym_string_literal_token1] = ACTIONS(2616), - [sym_char_literal] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2618), - [sym_super] = ACTIONS(2618), - [sym_crate] = ACTIONS(2618), - [sym_metavariable] = ACTIONS(2616), - [sym__raw_string_literal_start] = ACTIONS(2616), - [sym_float_literal] = ACTIONS(2616), - }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), - }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(2620), - [sym_identifier] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_macro_rules_BANG] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_u8] = ACTIONS(2622), - [anon_sym_i8] = ACTIONS(2622), - [anon_sym_u16] = ACTIONS(2622), - [anon_sym_i16] = ACTIONS(2622), - [anon_sym_u32] = ACTIONS(2622), - [anon_sym_i32] = ACTIONS(2622), - [anon_sym_u64] = ACTIONS(2622), - [anon_sym_i64] = ACTIONS(2622), - [anon_sym_u128] = ACTIONS(2622), - [anon_sym_i128] = ACTIONS(2622), - [anon_sym_isize] = ACTIONS(2622), - [anon_sym_usize] = ACTIONS(2622), - [anon_sym_f32] = ACTIONS(2622), - [anon_sym_f64] = ACTIONS(2622), - [anon_sym_bool] = ACTIONS(2622), - [anon_sym_str] = ACTIONS(2622), - [anon_sym_char] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_DOT_DOT] = ACTIONS(2620), - [anon_sym_COLON_COLON] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_fn] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_gen] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_impl] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_loop] = ACTIONS(2622), - [anon_sym_match] = ACTIONS(2622), - [anon_sym_mod] = ACTIONS(2622), - [anon_sym_pub] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_trait] = ACTIONS(2622), + [anon_sym_trait] = ACTIONS(2620), [anon_sym_type] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_unsafe] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2622), - [anon_sym_move] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [sym_integer_literal] = ACTIONS(2620), - [aux_sym_string_literal_token1] = ACTIONS(2620), - [sym_char_literal] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2622), - [anon_sym_false] = ACTIONS(2622), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2622), - [sym_super] = ACTIONS(2622), - [sym_crate] = ACTIONS(2622), - [sym_metavariable] = ACTIONS(2620), - [sym__raw_string_literal_start] = ACTIONS(2620), - [sym_float_literal] = ACTIONS(2620), - }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_macro_rules_BANG] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_u8] = ACTIONS(2626), - [anon_sym_i8] = ACTIONS(2626), - [anon_sym_u16] = ACTIONS(2626), - [anon_sym_i16] = ACTIONS(2626), - [anon_sym_u32] = ACTIONS(2626), - [anon_sym_i32] = ACTIONS(2626), - [anon_sym_u64] = ACTIONS(2626), - [anon_sym_i64] = ACTIONS(2626), - [anon_sym_u128] = ACTIONS(2626), - [anon_sym_i128] = ACTIONS(2626), - [anon_sym_isize] = ACTIONS(2626), - [anon_sym_usize] = ACTIONS(2626), - [anon_sym_f32] = ACTIONS(2626), - [anon_sym_f64] = ACTIONS(2626), - [anon_sym_bool] = ACTIONS(2626), - [anon_sym_str] = ACTIONS(2626), - [anon_sym_char] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_PIPE] = ACTIONS(2624), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_DOT_DOT] = ACTIONS(2624), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_POUND] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_gen] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_impl] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_loop] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_mod] = ACTIONS(2626), - [anon_sym_pub] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_trait] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_union] = ACTIONS(2626), + [anon_sym_union] = ACTIONS(2624), [anon_sym_unsafe] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_extern] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_move] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [sym_integer_literal] = ACTIONS(2624), - [aux_sym_string_literal_token1] = ACTIONS(2624), - [sym_char_literal] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_crate] = ACTIONS(2626), - [sym_metavariable] = ACTIONS(2624), - [sym__raw_string_literal_start] = ACTIONS(2624), - [sym_float_literal] = ACTIONS(2624), - }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_macro_rules_BANG] = ACTIONS(2628), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_u8] = ACTIONS(2630), - [anon_sym_i8] = ACTIONS(2630), - [anon_sym_u16] = ACTIONS(2630), - [anon_sym_i16] = ACTIONS(2630), - [anon_sym_u32] = ACTIONS(2630), - [anon_sym_i32] = ACTIONS(2630), - [anon_sym_u64] = ACTIONS(2630), - [anon_sym_i64] = ACTIONS(2630), - [anon_sym_u128] = ACTIONS(2630), - [anon_sym_i128] = ACTIONS(2630), - [anon_sym_isize] = ACTIONS(2630), - [anon_sym_usize] = ACTIONS(2630), - [anon_sym_f32] = ACTIONS(2630), - [anon_sym_f64] = ACTIONS(2630), - [anon_sym_bool] = ACTIONS(2630), - [anon_sym_str] = ACTIONS(2630), - [anon_sym_char] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_DOT_DOT] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_POUND] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2630), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_fn] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_gen] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_impl] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2630), - [anon_sym_loop] = ACTIONS(2630), - [anon_sym_match] = ACTIONS(2630), - [anon_sym_mod] = ACTIONS(2630), - [anon_sym_pub] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_trait] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_unsafe] = ACTIONS(2630), - [anon_sym_use] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2628), [anon_sym_extern] = ACTIONS(2630), - [anon_sym_yield] = ACTIONS(2630), - [anon_sym_move] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [sym_integer_literal] = ACTIONS(2628), - [aux_sym_string_literal_token1] = ACTIONS(2628), - [sym_char_literal] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2630), - [anon_sym_false] = ACTIONS(2630), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2630), - [sym_super] = ACTIONS(2630), - [sym_crate] = ACTIONS(2630), - [sym_metavariable] = ACTIONS(2628), - [sym__raw_string_literal_start] = ACTIONS(2628), - [sym_float_literal] = ACTIONS(2628), - }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_macro_rules_BANG] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_u8] = ACTIONS(2634), - [anon_sym_i8] = ACTIONS(2634), - [anon_sym_u16] = ACTIONS(2634), - [anon_sym_i16] = ACTIONS(2634), - [anon_sym_u32] = ACTIONS(2634), - [anon_sym_i32] = ACTIONS(2634), - [anon_sym_u64] = ACTIONS(2634), - [anon_sym_i64] = ACTIONS(2634), - [anon_sym_u128] = ACTIONS(2634), - [anon_sym_i128] = ACTIONS(2634), - [anon_sym_isize] = ACTIONS(2634), - [anon_sym_usize] = ACTIONS(2634), - [anon_sym_f32] = ACTIONS(2634), - [anon_sym_f64] = ACTIONS(2634), - [anon_sym_bool] = ACTIONS(2634), - [anon_sym_str] = ACTIONS(2634), - [anon_sym_char] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_fn] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_gen] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_impl] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_loop] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_mod] = ACTIONS(2634), - [anon_sym_pub] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_trait] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(2634), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_move] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [sym_integer_literal] = ACTIONS(2632), - [aux_sym_string_literal_token1] = ACTIONS(2632), - [sym_char_literal] = ACTIONS(2632), - [anon_sym_true] = ACTIONS(2634), - [anon_sym_false] = ACTIONS(2634), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2634), - [sym_super] = ACTIONS(2634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), [sym_crate] = ACTIONS(2634), - [sym_metavariable] = ACTIONS(2632), - [sym__raw_string_literal_start] = ACTIONS(2632), - [sym_float_literal] = ACTIONS(2632), - }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_macro_rules_BANG] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_u8] = ACTIONS(2638), - [anon_sym_i8] = ACTIONS(2638), - [anon_sym_u16] = ACTIONS(2638), - [anon_sym_i16] = ACTIONS(2638), - [anon_sym_u32] = ACTIONS(2638), - [anon_sym_i32] = ACTIONS(2638), - [anon_sym_u64] = ACTIONS(2638), - [anon_sym_i64] = ACTIONS(2638), - [anon_sym_u128] = ACTIONS(2638), - [anon_sym_i128] = ACTIONS(2638), - [anon_sym_isize] = ACTIONS(2638), - [anon_sym_usize] = ACTIONS(2638), - [anon_sym_f32] = ACTIONS(2638), - [anon_sym_f64] = ACTIONS(2638), - [anon_sym_bool] = ACTIONS(2638), - [anon_sym_str] = ACTIONS(2638), - [anon_sym_char] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_DOT_DOT] = ACTIONS(2636), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_POUND] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2638), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_fn] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_gen] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_impl] = ACTIONS(2638), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_loop] = ACTIONS(2638), - [anon_sym_match] = ACTIONS(2638), - [anon_sym_mod] = ACTIONS(2638), - [anon_sym_pub] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_trait] = ACTIONS(2638), - [anon_sym_type] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_unsafe] = ACTIONS(2638), - [anon_sym_use] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym_yield] = ACTIONS(2638), - [anon_sym_move] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [sym_integer_literal] = ACTIONS(2636), - [aux_sym_string_literal_token1] = ACTIONS(2636), - [sym_char_literal] = ACTIONS(2636), - [anon_sym_true] = ACTIONS(2638), - [anon_sym_false] = ACTIONS(2638), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2638), - [sym_super] = ACTIONS(2638), - [sym_crate] = ACTIONS(2638), [sym_metavariable] = ACTIONS(2636), - [sym__raw_string_literal_start] = ACTIONS(2636), - [sym_float_literal] = ACTIONS(2636), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2640), - [sym_identifier] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_macro_rules_BANG] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2640), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_u8] = ACTIONS(2642), - [anon_sym_i8] = ACTIONS(2642), - [anon_sym_u16] = ACTIONS(2642), - [anon_sym_i16] = ACTIONS(2642), - [anon_sym_u32] = ACTIONS(2642), - [anon_sym_i32] = ACTIONS(2642), - [anon_sym_u64] = ACTIONS(2642), - [anon_sym_i64] = ACTIONS(2642), - [anon_sym_u128] = ACTIONS(2642), - [anon_sym_i128] = ACTIONS(2642), - [anon_sym_isize] = ACTIONS(2642), - [anon_sym_usize] = ACTIONS(2642), - [anon_sym_f32] = ACTIONS(2642), - [anon_sym_f64] = ACTIONS(2642), - [anon_sym_bool] = ACTIONS(2642), - [anon_sym_str] = ACTIONS(2642), - [anon_sym_char] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(2640), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_DOT_DOT] = ACTIONS(2640), - [anon_sym_COLON_COLON] = ACTIONS(2640), - [anon_sym_POUND] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2642), - [anon_sym_async] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_gen] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_impl] = ACTIONS(2642), - [anon_sym_let] = ACTIONS(2642), - [anon_sym_loop] = ACTIONS(2642), - [anon_sym_match] = ACTIONS(2642), - [anon_sym_mod] = ACTIONS(2642), - [anon_sym_pub] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_struct] = ACTIONS(2642), - [anon_sym_trait] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_union] = ACTIONS(2642), - [anon_sym_unsafe] = ACTIONS(2642), - [anon_sym_use] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_extern] = ACTIONS(2642), - [anon_sym_yield] = ACTIONS(2642), - [anon_sym_move] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [sym_integer_literal] = ACTIONS(2640), - [aux_sym_string_literal_token1] = ACTIONS(2640), - [sym_char_literal] = ACTIONS(2640), - [anon_sym_true] = ACTIONS(2642), - [anon_sym_false] = ACTIONS(2642), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2642), - [sym_super] = ACTIONS(2642), - [sym_crate] = ACTIONS(2642), - [sym_metavariable] = ACTIONS(2640), - [sym__raw_string_literal_start] = ACTIONS(2640), - [sym_float_literal] = ACTIONS(2640), + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym_macro_rules_BANG] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(2638), + [anon_sym_u8] = ACTIONS(2640), + [anon_sym_i8] = ACTIONS(2640), + [anon_sym_u16] = ACTIONS(2640), + [anon_sym_i16] = ACTIONS(2640), + [anon_sym_u32] = ACTIONS(2640), + [anon_sym_i32] = ACTIONS(2640), + [anon_sym_u64] = ACTIONS(2640), + [anon_sym_i64] = ACTIONS(2640), + [anon_sym_u128] = ACTIONS(2640), + [anon_sym_i128] = ACTIONS(2640), + [anon_sym_isize] = ACTIONS(2640), + [anon_sym_usize] = ACTIONS(2640), + [anon_sym_f32] = ACTIONS(2640), + [anon_sym_f64] = ACTIONS(2640), + [anon_sym_bool] = ACTIONS(2640), + [anon_sym_str] = ACTIONS(2640), + [anon_sym_char] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_PIPE] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_COLON_COLON] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2640), + [anon_sym_async] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [anon_sym_fn] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_gen] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_impl] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_loop] = ACTIONS(2640), + [anon_sym_match] = ACTIONS(2640), + [anon_sym_mod] = ACTIONS(2640), + [anon_sym_pub] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_struct] = ACTIONS(2640), + [anon_sym_trait] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_union] = ACTIONS(2640), + [anon_sym_unsafe] = ACTIONS(2640), + [anon_sym_use] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_extern] = ACTIONS(2640), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_move] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [sym_integer_literal] = ACTIONS(2638), + [aux_sym_string_literal_token1] = ACTIONS(2638), + [sym_char_literal] = ACTIONS(2638), + [anon_sym_true] = ACTIONS(2640), + [anon_sym_false] = ACTIONS(2640), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2640), + [sym_super] = ACTIONS(2640), + [sym_crate] = ACTIONS(2640), + [sym_metavariable] = ACTIONS(2638), + [sym__raw_string_literal_start] = ACTIONS(2638), + [sym_float_literal] = ACTIONS(2638), }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), + [STATE(674)] = { + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3268), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(3038), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_macro_rules_BANG] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_gen] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_impl] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_pub] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_trait] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_unsafe] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), + }, + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_macro_rules_BANG] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_gen] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsafe] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), + }, + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2644), [sym_identifier] = ACTIONS(2646), [anon_sym_SEMI] = ACTIONS(2644), @@ -88166,9 +86569,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2644), [sym_float_literal] = ACTIONS(2644), }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_macro_rules_BANG] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_gen] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_impl] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_pub] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_trait] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_unsafe] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_crate] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym__raw_string_literal_start] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), + }, + [STATE(679)] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_macro_rules_BANG] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1441), + [anon_sym_i8] = ACTIONS(1441), + [anon_sym_u16] = ACTIONS(1441), + [anon_sym_i16] = ACTIONS(1441), + [anon_sym_u32] = ACTIONS(1441), + [anon_sym_i32] = ACTIONS(1441), + [anon_sym_u64] = ACTIONS(1441), + [anon_sym_i64] = ACTIONS(1441), + [anon_sym_u128] = ACTIONS(1441), + [anon_sym_i128] = ACTIONS(1441), + [anon_sym_isize] = ACTIONS(1441), + [anon_sym_usize] = ACTIONS(1441), + [anon_sym_f32] = ACTIONS(1441), + [anon_sym_f64] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_str] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_gen] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_impl] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_pub] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_trait] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_unsafe] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_move] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1439), + [aux_sym_string_literal_token1] = ACTIONS(1439), + [sym_char_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_crate] = ACTIONS(1441), + [sym_metavariable] = ACTIONS(1439), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1439), + }, + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2648), [sym_identifier] = ACTIONS(2650), [anon_sym_SEMI] = ACTIONS(2648), @@ -88247,9 +86812,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2648), [sym_float_literal] = ACTIONS(2648), }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2652), [sym_identifier] = ACTIONS(2654), [anon_sym_SEMI] = ACTIONS(2652), @@ -88328,9 +86893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2652), [sym_float_literal] = ACTIONS(2652), }, - [STATE(703)] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2656), [sym_identifier] = ACTIONS(2658), [anon_sym_SEMI] = ACTIONS(2656), @@ -88409,9 +86974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2656), [sym_float_literal] = ACTIONS(2656), }, - [STATE(704)] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2660), [sym_identifier] = ACTIONS(2662), [anon_sym_SEMI] = ACTIONS(2660), @@ -88490,9 +87055,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2660), [sym_float_literal] = ACTIONS(2660), }, - [STATE(705)] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [STATE(684)] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2664), [sym_identifier] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2664), @@ -88571,9 +87136,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2664), [sym_float_literal] = ACTIONS(2664), }, - [STATE(706)] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [STATE(685)] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(2668), [sym_identifier] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2668), @@ -88652,9 +87217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2668), [sym_float_literal] = ACTIONS(2668), }, - [STATE(707)] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), + [STATE(686)] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2672), [sym_identifier] = ACTIONS(2674), [anon_sym_SEMI] = ACTIONS(2672), @@ -88733,9 +87298,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2672), [sym_float_literal] = ACTIONS(2672), }, - [STATE(708)] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2676), [sym_identifier] = ACTIONS(2678), [anon_sym_SEMI] = ACTIONS(2676), @@ -88814,9 +87379,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2676), [sym_float_literal] = ACTIONS(2676), }, - [STATE(709)] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2680), [sym_identifier] = ACTIONS(2682), [anon_sym_SEMI] = ACTIONS(2680), @@ -88895,9 +87460,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2680), [sym_float_literal] = ACTIONS(2680), }, - [STATE(710)] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2684), [sym_identifier] = ACTIONS(2686), [anon_sym_SEMI] = ACTIONS(2684), @@ -88976,9 +87541,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2684), [sym_float_literal] = ACTIONS(2684), }, - [STATE(711)] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2688), [sym_identifier] = ACTIONS(2690), [anon_sym_SEMI] = ACTIONS(2688), @@ -89057,9 +87622,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2688), [sym_float_literal] = ACTIONS(2688), }, - [STATE(712)] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), [ts_builtin_sym_end] = ACTIONS(2692), [sym_identifier] = ACTIONS(2694), [anon_sym_SEMI] = ACTIONS(2692), @@ -89138,414 +87703,495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2692), [sym_float_literal] = ACTIONS(2692), }, - [STATE(713)] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_macro_rules_BANG] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), + [STATE(692)] = { + [sym_empty_statement] = STATE(1112), + [sym_macro_definition] = STATE(1112), + [sym_attribute_item] = STATE(1112), + [sym_inner_attribute_item] = STATE(1112), + [sym_mod_item] = STATE(1112), + [sym_foreign_mod_item] = STATE(1112), + [sym_struct_item] = STATE(1112), + [sym_union_item] = STATE(1112), + [sym_enum_item] = STATE(1112), + [sym_extern_crate_declaration] = STATE(1112), + [sym_const_item] = STATE(1112), + [sym_static_item] = STATE(1112), + [sym_type_item] = STATE(1112), + [sym_function_item] = STATE(1112), + [sym_function_signature_item] = STATE(1112), + [sym_function_modifiers] = STATE(3749), + [sym_impl_item] = STATE(1112), + [sym_trait_item] = STATE(1112), + [sym_associated_type] = STATE(1112), + [sym_let_declaration] = STATE(1112), + [sym_use_declaration] = STATE(1112), + [sym_extern_modifier] = STATE(2237), + [sym_visibility_modifier] = STATE(2006), + [sym_bracketed_type] = STATE(3714), + [sym_generic_type_with_turbofish] = STATE(3774), + [sym_macro_invocation] = STATE(1112), + [sym_scoped_identifier] = STATE(3435), + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [aux_sym_declaration_list_repeat1] = STATE(697), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2590), [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_u8] = ACTIONS(2698), - [anon_sym_i8] = ACTIONS(2698), - [anon_sym_u16] = ACTIONS(2698), - [anon_sym_i16] = ACTIONS(2698), - [anon_sym_u32] = ACTIONS(2698), - [anon_sym_i32] = ACTIONS(2698), - [anon_sym_u64] = ACTIONS(2698), - [anon_sym_i64] = ACTIONS(2698), - [anon_sym_u128] = ACTIONS(2698), - [anon_sym_i128] = ACTIONS(2698), - [anon_sym_isize] = ACTIONS(2698), - [anon_sym_usize] = ACTIONS(2698), - [anon_sym_f32] = ACTIONS(2698), - [anon_sym_f64] = ACTIONS(2698), - [anon_sym_bool] = ACTIONS(2698), - [anon_sym_str] = ACTIONS(2698), - [anon_sym_char] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_DOT_DOT] = ACTIONS(2696), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2698), - [anon_sym_async] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_fn] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_gen] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_impl] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_loop] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2698), - [anon_sym_mod] = ACTIONS(2698), - [anon_sym_pub] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_trait] = ACTIONS(2698), - [anon_sym_type] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_unsafe] = ACTIONS(2698), - [anon_sym_use] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_yield] = ACTIONS(2698), - [anon_sym_move] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [sym_integer_literal] = ACTIONS(2696), - [aux_sym_string_literal_token1] = ACTIONS(2696), - [sym_char_literal] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2698), - [sym_super] = ACTIONS(2698), - [sym_crate] = ACTIONS(2698), - [sym_metavariable] = ACTIONS(2696), - [sym__raw_string_literal_start] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_fn] = ACTIONS(2606), + [anon_sym_gen] = ACTIONS(2608), + [anon_sym_impl] = ACTIONS(2610), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_mod] = ACTIONS(2614), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2618), + [anon_sym_trait] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2622), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_unsafe] = ACTIONS(2626), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2630), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), + [sym_crate] = ACTIONS(2634), + [sym_metavariable] = ACTIONS(2636), }, - [STATE(714)] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_macro_rules_BANG] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_u8] = ACTIONS(2702), - [anon_sym_i8] = ACTIONS(2702), - [anon_sym_u16] = ACTIONS(2702), - [anon_sym_i16] = ACTIONS(2702), - [anon_sym_u32] = ACTIONS(2702), - [anon_sym_i32] = ACTIONS(2702), - [anon_sym_u64] = ACTIONS(2702), - [anon_sym_i64] = ACTIONS(2702), - [anon_sym_u128] = ACTIONS(2702), - [anon_sym_i128] = ACTIONS(2702), - [anon_sym_isize] = ACTIONS(2702), - [anon_sym_usize] = ACTIONS(2702), - [anon_sym_f32] = ACTIONS(2702), - [anon_sym_f64] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_str] = ACTIONS(2702), - [anon_sym_char] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2700), - [anon_sym_COLON_COLON] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2702), - [anon_sym_async] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_fn] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_gen] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_impl] = ACTIONS(2702), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_loop] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2702), - [anon_sym_mod] = ACTIONS(2702), - [anon_sym_pub] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2702), - [anon_sym_trait] = ACTIONS(2702), - [anon_sym_type] = ACTIONS(2702), - [anon_sym_union] = ACTIONS(2702), - [anon_sym_unsafe] = ACTIONS(2702), - [anon_sym_use] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym_yield] = ACTIONS(2702), - [anon_sym_move] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [sym_integer_literal] = ACTIONS(2700), - [aux_sym_string_literal_token1] = ACTIONS(2700), - [sym_char_literal] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2702), - [sym_super] = ACTIONS(2702), - [sym_crate] = ACTIONS(2702), - [sym_metavariable] = ACTIONS(2700), - [sym__raw_string_literal_start] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), + [STATE(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_macro_rules_BANG] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_u8] = ACTIONS(2700), + [anon_sym_i8] = ACTIONS(2700), + [anon_sym_u16] = ACTIONS(2700), + [anon_sym_i16] = ACTIONS(2700), + [anon_sym_u32] = ACTIONS(2700), + [anon_sym_i32] = ACTIONS(2700), + [anon_sym_u64] = ACTIONS(2700), + [anon_sym_i64] = ACTIONS(2700), + [anon_sym_u128] = ACTIONS(2700), + [anon_sym_i128] = ACTIONS(2700), + [anon_sym_isize] = ACTIONS(2700), + [anon_sym_usize] = ACTIONS(2700), + [anon_sym_f32] = ACTIONS(2700), + [anon_sym_f64] = ACTIONS(2700), + [anon_sym_bool] = ACTIONS(2700), + [anon_sym_str] = ACTIONS(2700), + [anon_sym_char] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2698), + [anon_sym_COLON_COLON] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_gen] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_impl] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_loop] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_mod] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_trait] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_use] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_move] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [sym_integer_literal] = ACTIONS(2698), + [aux_sym_string_literal_token1] = ACTIONS(2698), + [sym_char_literal] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_crate] = ACTIONS(2700), + [sym_metavariable] = ACTIONS(2698), + [sym__raw_string_literal_start] = ACTIONS(2698), + [sym_float_literal] = ACTIONS(2698), }, - [STATE(715)] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_macro_rules_BANG] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_u8] = ACTIONS(2706), - [anon_sym_i8] = ACTIONS(2706), - [anon_sym_u16] = ACTIONS(2706), - [anon_sym_i16] = ACTIONS(2706), - [anon_sym_u32] = ACTIONS(2706), - [anon_sym_i32] = ACTIONS(2706), - [anon_sym_u64] = ACTIONS(2706), - [anon_sym_i64] = ACTIONS(2706), - [anon_sym_u128] = ACTIONS(2706), - [anon_sym_i128] = ACTIONS(2706), - [anon_sym_isize] = ACTIONS(2706), - [anon_sym_usize] = ACTIONS(2706), - [anon_sym_f32] = ACTIONS(2706), - [anon_sym_f64] = ACTIONS(2706), - [anon_sym_bool] = ACTIONS(2706), - [anon_sym_str] = ACTIONS(2706), - [anon_sym_char] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_DOT_DOT] = ACTIONS(2704), - [anon_sym_COLON_COLON] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_fn] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_gen] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_impl] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_loop] = ACTIONS(2706), - [anon_sym_match] = ACTIONS(2706), - [anon_sym_mod] = ACTIONS(2706), - [anon_sym_pub] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_struct] = ACTIONS(2706), - [anon_sym_trait] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_union] = ACTIONS(2706), - [anon_sym_unsafe] = ACTIONS(2706), - [anon_sym_use] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_move] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [sym_integer_literal] = ACTIONS(2704), - [aux_sym_string_literal_token1] = ACTIONS(2704), - [sym_char_literal] = ACTIONS(2704), - [anon_sym_true] = ACTIONS(2706), - [anon_sym_false] = ACTIONS(2706), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_crate] = ACTIONS(2706), - [sym_metavariable] = ACTIONS(2704), - [sym__raw_string_literal_start] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_macro_rules_BANG] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u128] = ACTIONS(2704), + [anon_sym_i128] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_str] = ACTIONS(2704), + [anon_sym_char] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2702), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_COLON_COLON] = ACTIONS(2702), + [anon_sym_POUND] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2704), + [anon_sym_async] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_gen] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_impl] = ACTIONS(2704), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_loop] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_mod] = ACTIONS(2704), + [anon_sym_pub] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_trait] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_use] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_move] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [sym_integer_literal] = ACTIONS(2702), + [aux_sym_string_literal_token1] = ACTIONS(2702), + [sym_char_literal] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2704), + [sym_super] = ACTIONS(2704), + [sym_crate] = ACTIONS(2704), + [sym_metavariable] = ACTIONS(2702), + [sym__raw_string_literal_start] = ACTIONS(2702), + [sym_float_literal] = ACTIONS(2702), }, - [STATE(716)] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_macro_rules_BANG] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_u8] = ACTIONS(2710), - [anon_sym_i8] = ACTIONS(2710), - [anon_sym_u16] = ACTIONS(2710), - [anon_sym_i16] = ACTIONS(2710), - [anon_sym_u32] = ACTIONS(2710), - [anon_sym_i32] = ACTIONS(2710), - [anon_sym_u64] = ACTIONS(2710), - [anon_sym_i64] = ACTIONS(2710), - [anon_sym_u128] = ACTIONS(2710), - [anon_sym_i128] = ACTIONS(2710), - [anon_sym_isize] = ACTIONS(2710), - [anon_sym_usize] = ACTIONS(2710), - [anon_sym_f32] = ACTIONS(2710), - [anon_sym_f64] = ACTIONS(2710), - [anon_sym_bool] = ACTIONS(2710), - [anon_sym_str] = ACTIONS(2710), - [anon_sym_char] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2708), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2708), - [anon_sym_COLON_COLON] = ACTIONS(2708), - [anon_sym_POUND] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_async] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_gen] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_impl] = ACTIONS(2710), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_loop] = ACTIONS(2710), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_mod] = ACTIONS(2710), - [anon_sym_pub] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_trait] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_use] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym_yield] = ACTIONS(2710), - [anon_sym_move] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [sym_integer_literal] = ACTIONS(2708), - [aux_sym_string_literal_token1] = ACTIONS(2708), - [sym_char_literal] = ACTIONS(2708), - [anon_sym_true] = ACTIONS(2710), - [anon_sym_false] = ACTIONS(2710), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2710), - [sym_super] = ACTIONS(2710), - [sym_crate] = ACTIONS(2710), - [sym_metavariable] = ACTIONS(2708), - [sym__raw_string_literal_start] = ACTIONS(2708), - [sym_float_literal] = ACTIONS(2708), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_macro_rules_BANG] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u128] = ACTIONS(2708), + [anon_sym_i128] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_str] = ACTIONS(2708), + [anon_sym_char] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_DOT_DOT] = ACTIONS(2706), + [anon_sym_COLON_COLON] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2708), + [anon_sym_async] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_fn] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_gen] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_impl] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_loop] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_mod] = ACTIONS(2708), + [anon_sym_pub] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_trait] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_unsafe] = ACTIONS(2708), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_move] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [sym_integer_literal] = ACTIONS(2706), + [aux_sym_string_literal_token1] = ACTIONS(2706), + [sym_char_literal] = ACTIONS(2706), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2708), + [sym_super] = ACTIONS(2708), + [sym_crate] = ACTIONS(2708), + [sym_metavariable] = ACTIONS(2706), + [sym__raw_string_literal_start] = ACTIONS(2706), + [sym_float_literal] = ACTIONS(2706), }, - [STATE(717)] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_macro_rules_BANG] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_u8] = ACTIONS(2714), - [anon_sym_i8] = ACTIONS(2714), - [anon_sym_u16] = ACTIONS(2714), - [anon_sym_i16] = ACTIONS(2714), - [anon_sym_u32] = ACTIONS(2714), - [anon_sym_i32] = ACTIONS(2714), - [anon_sym_u64] = ACTIONS(2714), - [anon_sym_i64] = ACTIONS(2714), - [anon_sym_u128] = ACTIONS(2714), - [anon_sym_i128] = ACTIONS(2714), - [anon_sym_isize] = ACTIONS(2714), - [anon_sym_usize] = ACTIONS(2714), - [anon_sym_f32] = ACTIONS(2714), - [anon_sym_f64] = ACTIONS(2714), - [anon_sym_bool] = ACTIONS(2714), - [anon_sym_str] = ACTIONS(2714), - [anon_sym_char] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2712), - [anon_sym_DOT_DOT] = ACTIONS(2712), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2714), - [anon_sym_async] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_gen] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_impl] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_loop] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_mod] = ACTIONS(2714), - [anon_sym_pub] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_trait] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_union] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_use] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_extern] = ACTIONS(2714), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_move] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [sym_integer_literal] = ACTIONS(2712), - [aux_sym_string_literal_token1] = ACTIONS(2712), - [sym_char_literal] = ACTIONS(2712), - [anon_sym_true] = ACTIONS(2714), - [anon_sym_false] = ACTIONS(2714), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2714), - [sym_super] = ACTIONS(2714), - [sym_crate] = ACTIONS(2714), - [sym_metavariable] = ACTIONS(2712), - [sym__raw_string_literal_start] = ACTIONS(2712), - [sym_float_literal] = ACTIONS(2712), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_macro_rules_BANG] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u128] = ACTIONS(2712), + [anon_sym_i128] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_str] = ACTIONS(2712), + [anon_sym_char] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_fn] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_gen] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_impl] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_loop] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_mod] = ACTIONS(2712), + [anon_sym_pub] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_trait] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(2712), + [anon_sym_use] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_move] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [sym_integer_literal] = ACTIONS(2710), + [aux_sym_string_literal_token1] = ACTIONS(2710), + [sym_char_literal] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2712), + [sym_super] = ACTIONS(2712), + [sym_crate] = ACTIONS(2712), + [sym_metavariable] = ACTIONS(2710), + [sym__raw_string_literal_start] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), }, - [STATE(718)] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), + [STATE(697)] = { + [sym_empty_statement] = STATE(1112), + [sym_macro_definition] = STATE(1112), + [sym_attribute_item] = STATE(1112), + [sym_inner_attribute_item] = STATE(1112), + [sym_mod_item] = STATE(1112), + [sym_foreign_mod_item] = STATE(1112), + [sym_struct_item] = STATE(1112), + [sym_union_item] = STATE(1112), + [sym_enum_item] = STATE(1112), + [sym_extern_crate_declaration] = STATE(1112), + [sym_const_item] = STATE(1112), + [sym_static_item] = STATE(1112), + [sym_type_item] = STATE(1112), + [sym_function_item] = STATE(1112), + [sym_function_signature_item] = STATE(1112), + [sym_function_modifiers] = STATE(3749), + [sym_impl_item] = STATE(1112), + [sym_trait_item] = STATE(1112), + [sym_associated_type] = STATE(1112), + [sym_let_declaration] = STATE(1112), + [sym_use_declaration] = STATE(1112), + [sym_extern_modifier] = STATE(2237), + [sym_visibility_modifier] = STATE(2006), + [sym_bracketed_type] = STATE(3714), + [sym_generic_type_with_turbofish] = STATE(3774), + [sym_macro_invocation] = STATE(1112), + [sym_scoped_identifier] = STATE(3435), + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [aux_sym_declaration_list_repeat1] = STATE(646), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_fn] = ACTIONS(2606), + [anon_sym_gen] = ACTIONS(2608), + [anon_sym_impl] = ACTIONS(2610), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_mod] = ACTIONS(2614), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2618), + [anon_sym_trait] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2622), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_unsafe] = ACTIONS(2626), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2630), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), + [sym_crate] = ACTIONS(2634), + [sym_metavariable] = ACTIONS(2636), + }, + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2716), [sym_identifier] = ACTIONS(2718), [anon_sym_SEMI] = ACTIONS(2716), @@ -89624,9 +88270,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2716), [sym_float_literal] = ACTIONS(2716), }, - [STATE(719)] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2720), [sym_identifier] = ACTIONS(2722), [anon_sym_SEMI] = ACTIONS(2720), @@ -89705,90 +88351,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2720), [sym_float_literal] = ACTIONS(2720), }, - [STATE(720)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3748), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(721)] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2724), [sym_identifier] = ACTIONS(2726), [anon_sym_SEMI] = ACTIONS(2724), @@ -89867,9 +88432,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2724), [sym_float_literal] = ACTIONS(2724), }, - [STATE(722)] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2728), [sym_identifier] = ACTIONS(2730), [anon_sym_SEMI] = ACTIONS(2728), @@ -89948,9 +88513,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2728), [sym_float_literal] = ACTIONS(2728), }, - [STATE(723)] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2732), [sym_identifier] = ACTIONS(2734), [anon_sym_SEMI] = ACTIONS(2732), @@ -90029,576 +88594,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2732), [sym_float_literal] = ACTIONS(2732), }, - [STATE(724)] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2736), - [sym_identifier] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_macro_rules_BANG] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_u8] = ACTIONS(2738), - [anon_sym_i8] = ACTIONS(2738), - [anon_sym_u16] = ACTIONS(2738), - [anon_sym_i16] = ACTIONS(2738), - [anon_sym_u32] = ACTIONS(2738), - [anon_sym_i32] = ACTIONS(2738), - [anon_sym_u64] = ACTIONS(2738), - [anon_sym_i64] = ACTIONS(2738), - [anon_sym_u128] = ACTIONS(2738), - [anon_sym_i128] = ACTIONS(2738), - [anon_sym_isize] = ACTIONS(2738), - [anon_sym_usize] = ACTIONS(2738), - [anon_sym_f32] = ACTIONS(2738), - [anon_sym_f64] = ACTIONS(2738), - [anon_sym_bool] = ACTIONS(2738), - [anon_sym_str] = ACTIONS(2738), - [anon_sym_char] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), - [anon_sym_fn] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_gen] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_impl] = ACTIONS(2738), - [anon_sym_let] = ACTIONS(2738), - [anon_sym_loop] = ACTIONS(2738), - [anon_sym_match] = ACTIONS(2738), - [anon_sym_mod] = ACTIONS(2738), - [anon_sym_pub] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2738), - [anon_sym_trait] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_union] = ACTIONS(2738), - [anon_sym_unsafe] = ACTIONS(2738), - [anon_sym_use] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_extern] = ACTIONS(2738), - [anon_sym_yield] = ACTIONS(2738), - [anon_sym_move] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [sym_integer_literal] = ACTIONS(2736), - [aux_sym_string_literal_token1] = ACTIONS(2736), - [sym_char_literal] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2738), - [anon_sym_false] = ACTIONS(2738), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2738), - [sym_super] = ACTIONS(2738), - [sym_crate] = ACTIONS(2738), - [sym_metavariable] = ACTIONS(2736), - [sym__raw_string_literal_start] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), + [STATE(703)] = { + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3268), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(3038), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, - [STATE(725)] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2740), - [sym_identifier] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_macro_rules_BANG] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_u8] = ACTIONS(2742), - [anon_sym_i8] = ACTIONS(2742), - [anon_sym_u16] = ACTIONS(2742), - [anon_sym_i16] = ACTIONS(2742), - [anon_sym_u32] = ACTIONS(2742), - [anon_sym_i32] = ACTIONS(2742), - [anon_sym_u64] = ACTIONS(2742), - [anon_sym_i64] = ACTIONS(2742), - [anon_sym_u128] = ACTIONS(2742), - [anon_sym_i128] = ACTIONS(2742), - [anon_sym_isize] = ACTIONS(2742), - [anon_sym_usize] = ACTIONS(2742), - [anon_sym_f32] = ACTIONS(2742), - [anon_sym_f64] = ACTIONS(2742), - [anon_sym_bool] = ACTIONS(2742), - [anon_sym_str] = ACTIONS(2742), - [anon_sym_char] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_DOT_DOT] = ACTIONS(2740), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_async] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), - [anon_sym_fn] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_gen] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_impl] = ACTIONS(2742), - [anon_sym_let] = ACTIONS(2742), - [anon_sym_loop] = ACTIONS(2742), - [anon_sym_match] = ACTIONS(2742), - [anon_sym_mod] = ACTIONS(2742), - [anon_sym_pub] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2742), - [anon_sym_trait] = ACTIONS(2742), - [anon_sym_type] = ACTIONS(2742), - [anon_sym_union] = ACTIONS(2742), - [anon_sym_unsafe] = ACTIONS(2742), - [anon_sym_use] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_extern] = ACTIONS(2742), - [anon_sym_yield] = ACTIONS(2742), - [anon_sym_move] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [sym_integer_literal] = ACTIONS(2740), - [aux_sym_string_literal_token1] = ACTIONS(2740), - [sym_char_literal] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2742), - [anon_sym_false] = ACTIONS(2742), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2742), - [sym_super] = ACTIONS(2742), - [sym_crate] = ACTIONS(2742), - [sym_metavariable] = ACTIONS(2740), - [sym__raw_string_literal_start] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), + [STATE(704)] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_macro_rules_BANG] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_u8] = ACTIONS(2740), + [anon_sym_i8] = ACTIONS(2740), + [anon_sym_u16] = ACTIONS(2740), + [anon_sym_i16] = ACTIONS(2740), + [anon_sym_u32] = ACTIONS(2740), + [anon_sym_i32] = ACTIONS(2740), + [anon_sym_u64] = ACTIONS(2740), + [anon_sym_i64] = ACTIONS(2740), + [anon_sym_u128] = ACTIONS(2740), + [anon_sym_i128] = ACTIONS(2740), + [anon_sym_isize] = ACTIONS(2740), + [anon_sym_usize] = ACTIONS(2740), + [anon_sym_f32] = ACTIONS(2740), + [anon_sym_f64] = ACTIONS(2740), + [anon_sym_bool] = ACTIONS(2740), + [anon_sym_str] = ACTIONS(2740), + [anon_sym_char] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_DOT_DOT] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_gen] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_impl] = ACTIONS(2740), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_loop] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_mod] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_trait] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_use] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym_yield] = ACTIONS(2740), + [anon_sym_move] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [sym_integer_literal] = ACTIONS(2738), + [aux_sym_string_literal_token1] = ACTIONS(2738), + [sym_char_literal] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2740), + [sym_super] = ACTIONS(2740), + [sym_crate] = ACTIONS(2740), + [sym_metavariable] = ACTIONS(2738), + [sym__raw_string_literal_start] = ACTIONS(2738), + [sym_float_literal] = ACTIONS(2738), }, - [STATE(726)] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2744), - [sym_identifier] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_macro_rules_BANG] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_u8] = ACTIONS(2746), - [anon_sym_i8] = ACTIONS(2746), - [anon_sym_u16] = ACTIONS(2746), - [anon_sym_i16] = ACTIONS(2746), - [anon_sym_u32] = ACTIONS(2746), - [anon_sym_i32] = ACTIONS(2746), - [anon_sym_u64] = ACTIONS(2746), - [anon_sym_i64] = ACTIONS(2746), - [anon_sym_u128] = ACTIONS(2746), - [anon_sym_i128] = ACTIONS(2746), - [anon_sym_isize] = ACTIONS(2746), - [anon_sym_usize] = ACTIONS(2746), - [anon_sym_f32] = ACTIONS(2746), - [anon_sym_f64] = ACTIONS(2746), - [anon_sym_bool] = ACTIONS(2746), - [anon_sym_str] = ACTIONS(2746), - [anon_sym_char] = ACTIONS(2746), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_DOT_DOT] = ACTIONS(2744), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2746), - [anon_sym_async] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), - [anon_sym_fn] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_gen] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_impl] = ACTIONS(2746), - [anon_sym_let] = ACTIONS(2746), - [anon_sym_loop] = ACTIONS(2746), - [anon_sym_match] = ACTIONS(2746), - [anon_sym_mod] = ACTIONS(2746), - [anon_sym_pub] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2746), - [anon_sym_trait] = ACTIONS(2746), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_union] = ACTIONS(2746), - [anon_sym_unsafe] = ACTIONS(2746), - [anon_sym_use] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_extern] = ACTIONS(2746), - [anon_sym_yield] = ACTIONS(2746), - [anon_sym_move] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [sym_integer_literal] = ACTIONS(2744), - [aux_sym_string_literal_token1] = ACTIONS(2744), - [sym_char_literal] = ACTIONS(2744), - [anon_sym_true] = ACTIONS(2746), - [anon_sym_false] = ACTIONS(2746), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2746), - [sym_super] = ACTIONS(2746), - [sym_crate] = ACTIONS(2746), - [sym_metavariable] = ACTIONS(2744), - [sym__raw_string_literal_start] = ACTIONS(2744), - [sym_float_literal] = ACTIONS(2744), + [STATE(705)] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_macro_rules_BANG] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_u8] = ACTIONS(2744), + [anon_sym_i8] = ACTIONS(2744), + [anon_sym_u16] = ACTIONS(2744), + [anon_sym_i16] = ACTIONS(2744), + [anon_sym_u32] = ACTIONS(2744), + [anon_sym_i32] = ACTIONS(2744), + [anon_sym_u64] = ACTIONS(2744), + [anon_sym_i64] = ACTIONS(2744), + [anon_sym_u128] = ACTIONS(2744), + [anon_sym_i128] = ACTIONS(2744), + [anon_sym_isize] = ACTIONS(2744), + [anon_sym_usize] = ACTIONS(2744), + [anon_sym_f32] = ACTIONS(2744), + [anon_sym_f64] = ACTIONS(2744), + [anon_sym_bool] = ACTIONS(2744), + [anon_sym_str] = ACTIONS(2744), + [anon_sym_char] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_DOT_DOT] = ACTIONS(2742), + [anon_sym_COLON_COLON] = ACTIONS(2742), + [anon_sym_POUND] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_gen] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_impl] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_loop] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_mod] = ACTIONS(2744), + [anon_sym_pub] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_trait] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_move] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [sym_integer_literal] = ACTIONS(2742), + [aux_sym_string_literal_token1] = ACTIONS(2742), + [sym_char_literal] = ACTIONS(2742), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_crate] = ACTIONS(2744), + [sym_metavariable] = ACTIONS(2742), + [sym__raw_string_literal_start] = ACTIONS(2742), + [sym_float_literal] = ACTIONS(2742), }, - [STATE(727)] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_macro_rules_BANG] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_STAR] = 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_DASH] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2748), - [anon_sym_COLON_COLON] = ACTIONS(2748), - [anon_sym_POUND] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2750), - [anon_sym_async] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_fn] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_gen] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_impl] = ACTIONS(2750), - [anon_sym_let] = ACTIONS(2750), - [anon_sym_loop] = ACTIONS(2750), - [anon_sym_match] = ACTIONS(2750), - [anon_sym_mod] = ACTIONS(2750), - [anon_sym_pub] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_trait] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_use] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym_yield] = ACTIONS(2750), - [anon_sym_move] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [sym_integer_literal] = ACTIONS(2748), - [aux_sym_string_literal_token1] = ACTIONS(2748), - [sym_char_literal] = ACTIONS(2748), - [anon_sym_true] = ACTIONS(2750), - [anon_sym_false] = ACTIONS(2750), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2750), - [sym_super] = ACTIONS(2750), - [sym_crate] = ACTIONS(2750), - [sym_metavariable] = ACTIONS(2748), - [sym__raw_string_literal_start] = ACTIONS(2748), - [sym_float_literal] = ACTIONS(2748), + [STATE(706)] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_macro_rules_BANG] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_u8] = ACTIONS(2748), + [anon_sym_i8] = ACTIONS(2748), + [anon_sym_u16] = ACTIONS(2748), + [anon_sym_i16] = ACTIONS(2748), + [anon_sym_u32] = ACTIONS(2748), + [anon_sym_i32] = ACTIONS(2748), + [anon_sym_u64] = ACTIONS(2748), + [anon_sym_i64] = ACTIONS(2748), + [anon_sym_u128] = ACTIONS(2748), + [anon_sym_i128] = ACTIONS(2748), + [anon_sym_isize] = ACTIONS(2748), + [anon_sym_usize] = ACTIONS(2748), + [anon_sym_f32] = ACTIONS(2748), + [anon_sym_f64] = ACTIONS(2748), + [anon_sym_bool] = ACTIONS(2748), + [anon_sym_str] = ACTIONS(2748), + [anon_sym_char] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2746), + [anon_sym_COLON_COLON] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2748), + [anon_sym_async] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_gen] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_impl] = ACTIONS(2748), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_loop] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_mod] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_trait] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_use] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym_yield] = ACTIONS(2748), + [anon_sym_move] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [sym_integer_literal] = ACTIONS(2746), + [aux_sym_string_literal_token1] = ACTIONS(2746), + [sym_char_literal] = ACTIONS(2746), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2748), + [sym_super] = ACTIONS(2748), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(2746), + [sym__raw_string_literal_start] = ACTIONS(2746), + [sym_float_literal] = ACTIONS(2746), }, - [STATE(728)] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2752), - [sym_identifier] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_macro_rules_BANG] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_u8] = ACTIONS(2754), - [anon_sym_i8] = ACTIONS(2754), - [anon_sym_u16] = ACTIONS(2754), - [anon_sym_i16] = ACTIONS(2754), - [anon_sym_u32] = ACTIONS(2754), - [anon_sym_i32] = ACTIONS(2754), - [anon_sym_u64] = ACTIONS(2754), - [anon_sym_i64] = ACTIONS(2754), - [anon_sym_u128] = ACTIONS(2754), - [anon_sym_i128] = ACTIONS(2754), - [anon_sym_isize] = ACTIONS(2754), - [anon_sym_usize] = ACTIONS(2754), - [anon_sym_f32] = ACTIONS(2754), - [anon_sym_f64] = ACTIONS(2754), - [anon_sym_bool] = ACTIONS(2754), - [anon_sym_str] = ACTIONS(2754), - [anon_sym_char] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_DOT_DOT] = ACTIONS(2752), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_POUND] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2754), - [anon_sym_async] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_fn] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_gen] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_impl] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_loop] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2754), - [anon_sym_mod] = ACTIONS(2754), - [anon_sym_pub] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_trait] = ACTIONS(2754), - [anon_sym_type] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_unsafe] = ACTIONS(2754), - [anon_sym_use] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_move] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [sym_integer_literal] = ACTIONS(2752), - [aux_sym_string_literal_token1] = ACTIONS(2752), - [sym_char_literal] = ACTIONS(2752), - [anon_sym_true] = ACTIONS(2754), - [anon_sym_false] = ACTIONS(2754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2754), - [sym_super] = ACTIONS(2754), - [sym_crate] = ACTIONS(2754), - [sym_metavariable] = ACTIONS(2752), - [sym__raw_string_literal_start] = ACTIONS(2752), - [sym_float_literal] = ACTIONS(2752), + [STATE(707)] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_macro_rules_BANG] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_u8] = ACTIONS(2752), + [anon_sym_i8] = ACTIONS(2752), + [anon_sym_u16] = ACTIONS(2752), + [anon_sym_i16] = ACTIONS(2752), + [anon_sym_u32] = ACTIONS(2752), + [anon_sym_i32] = ACTIONS(2752), + [anon_sym_u64] = ACTIONS(2752), + [anon_sym_i64] = ACTIONS(2752), + [anon_sym_u128] = ACTIONS(2752), + [anon_sym_i128] = ACTIONS(2752), + [anon_sym_isize] = ACTIONS(2752), + [anon_sym_usize] = ACTIONS(2752), + [anon_sym_f32] = ACTIONS(2752), + [anon_sym_f64] = ACTIONS(2752), + [anon_sym_bool] = ACTIONS(2752), + [anon_sym_str] = ACTIONS(2752), + [anon_sym_char] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_DOT_DOT] = ACTIONS(2750), + [anon_sym_COLON_COLON] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_fn] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_gen] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_impl] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_loop] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_mod] = ACTIONS(2752), + [anon_sym_pub] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_trait] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_unsafe] = ACTIONS(2752), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_move] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [sym_integer_literal] = ACTIONS(2750), + [aux_sym_string_literal_token1] = ACTIONS(2750), + [sym_char_literal] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2752), + [sym_super] = ACTIONS(2752), + [sym_crate] = ACTIONS(2752), + [sym_metavariable] = ACTIONS(2750), + [sym__raw_string_literal_start] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), }, - [STATE(729)] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_macro_rules_BANG] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_u8] = ACTIONS(2758), - [anon_sym_i8] = ACTIONS(2758), - [anon_sym_u16] = ACTIONS(2758), - [anon_sym_i16] = ACTIONS(2758), - [anon_sym_u32] = ACTIONS(2758), - [anon_sym_i32] = ACTIONS(2758), - [anon_sym_u64] = ACTIONS(2758), - [anon_sym_i64] = ACTIONS(2758), - [anon_sym_u128] = ACTIONS(2758), - [anon_sym_i128] = ACTIONS(2758), - [anon_sym_isize] = ACTIONS(2758), - [anon_sym_usize] = ACTIONS(2758), - [anon_sym_f32] = ACTIONS(2758), - [anon_sym_f64] = ACTIONS(2758), - [anon_sym_bool] = ACTIONS(2758), - [anon_sym_str] = ACTIONS(2758), - [anon_sym_char] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_DOT_DOT] = ACTIONS(2756), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2758), - [anon_sym_async] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_fn] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_gen] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_impl] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2758), - [anon_sym_loop] = ACTIONS(2758), - [anon_sym_match] = ACTIONS(2758), - [anon_sym_mod] = ACTIONS(2758), - [anon_sym_pub] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_trait] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_unsafe] = ACTIONS(2758), - [anon_sym_use] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_extern] = ACTIONS(2758), - [anon_sym_yield] = ACTIONS(2758), - [anon_sym_move] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [sym_integer_literal] = ACTIONS(2756), - [aux_sym_string_literal_token1] = ACTIONS(2756), - [sym_char_literal] = ACTIONS(2756), - [anon_sym_true] = ACTIONS(2758), - [anon_sym_false] = ACTIONS(2758), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2758), - [sym_super] = ACTIONS(2758), - [sym_crate] = ACTIONS(2758), - [sym_metavariable] = ACTIONS(2756), - [sym__raw_string_literal_start] = ACTIONS(2756), - [sym_float_literal] = ACTIONS(2756), + [STATE(708)] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_macro_rules_BANG] = ACTIONS(2754), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_u8] = ACTIONS(2756), + [anon_sym_i8] = ACTIONS(2756), + [anon_sym_u16] = ACTIONS(2756), + [anon_sym_i16] = ACTIONS(2756), + [anon_sym_u32] = ACTIONS(2756), + [anon_sym_i32] = ACTIONS(2756), + [anon_sym_u64] = ACTIONS(2756), + [anon_sym_i64] = ACTIONS(2756), + [anon_sym_u128] = ACTIONS(2756), + [anon_sym_i128] = ACTIONS(2756), + [anon_sym_isize] = ACTIONS(2756), + [anon_sym_usize] = ACTIONS(2756), + [anon_sym_f32] = ACTIONS(2756), + [anon_sym_f64] = ACTIONS(2756), + [anon_sym_bool] = ACTIONS(2756), + [anon_sym_str] = ACTIONS(2756), + [anon_sym_char] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_async] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_gen] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_impl] = ACTIONS(2756), + [anon_sym_let] = ACTIONS(2756), + [anon_sym_loop] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_mod] = ACTIONS(2756), + [anon_sym_pub] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_trait] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_use] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym_yield] = ACTIONS(2756), + [anon_sym_move] = ACTIONS(2756), + [anon_sym_try] = ACTIONS(2756), + [sym_integer_literal] = ACTIONS(2754), + [aux_sym_string_literal_token1] = ACTIONS(2754), + [sym_char_literal] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2756), + [anon_sym_false] = ACTIONS(2756), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2756), + [sym_super] = ACTIONS(2756), + [sym_crate] = ACTIONS(2756), + [sym_metavariable] = ACTIONS(2754), + [sym__raw_string_literal_start] = ACTIONS(2754), + [sym_float_literal] = ACTIONS(2754), }, - [STATE(730)] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2760), - [sym_identifier] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_macro_rules_BANG] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_u8] = ACTIONS(2762), - [anon_sym_i8] = ACTIONS(2762), - [anon_sym_u16] = ACTIONS(2762), - [anon_sym_i16] = ACTIONS(2762), - [anon_sym_u32] = ACTIONS(2762), - [anon_sym_i32] = ACTIONS(2762), - [anon_sym_u64] = ACTIONS(2762), - [anon_sym_i64] = ACTIONS(2762), - [anon_sym_u128] = ACTIONS(2762), - [anon_sym_i128] = ACTIONS(2762), - [anon_sym_isize] = ACTIONS(2762), - [anon_sym_usize] = ACTIONS(2762), - [anon_sym_f32] = ACTIONS(2762), - [anon_sym_f64] = ACTIONS(2762), - [anon_sym_bool] = ACTIONS(2762), - [anon_sym_str] = ACTIONS(2762), - [anon_sym_char] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2760), - [anon_sym_COLON_COLON] = ACTIONS(2760), - [anon_sym_POUND] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_fn] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_gen] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_impl] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_loop] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(2762), - [anon_sym_mod] = ACTIONS(2762), - [anon_sym_pub] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_trait] = ACTIONS(2762), - [anon_sym_type] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_unsafe] = ACTIONS(2762), - [anon_sym_use] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym_yield] = ACTIONS(2762), - [anon_sym_move] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [sym_integer_literal] = ACTIONS(2760), - [aux_sym_string_literal_token1] = ACTIONS(2760), - [sym_char_literal] = ACTIONS(2760), - [anon_sym_true] = ACTIONS(2762), - [anon_sym_false] = ACTIONS(2762), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2762), - [sym_super] = ACTIONS(2762), - [sym_crate] = ACTIONS(2762), - [sym_metavariable] = ACTIONS(2760), - [sym__raw_string_literal_start] = ACTIONS(2760), - [sym_float_literal] = ACTIONS(2760), + [STATE(709)] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_macro_rules_BANG] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_u8] = ACTIONS(2760), + [anon_sym_i8] = ACTIONS(2760), + [anon_sym_u16] = ACTIONS(2760), + [anon_sym_i16] = ACTIONS(2760), + [anon_sym_u32] = ACTIONS(2760), + [anon_sym_i32] = ACTIONS(2760), + [anon_sym_u64] = ACTIONS(2760), + [anon_sym_i64] = ACTIONS(2760), + [anon_sym_u128] = ACTIONS(2760), + [anon_sym_i128] = ACTIONS(2760), + [anon_sym_isize] = ACTIONS(2760), + [anon_sym_usize] = ACTIONS(2760), + [anon_sym_f32] = ACTIONS(2760), + [anon_sym_f64] = ACTIONS(2760), + [anon_sym_bool] = ACTIONS(2760), + [anon_sym_str] = ACTIONS(2760), + [anon_sym_char] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_fn] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_gen] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_impl] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_loop] = ACTIONS(2760), + [anon_sym_match] = ACTIONS(2760), + [anon_sym_mod] = ACTIONS(2760), + [anon_sym_pub] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_trait] = ACTIONS(2760), + [anon_sym_type] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_unsafe] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2760), + [anon_sym_move] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2760), + [sym_integer_literal] = ACTIONS(2758), + [aux_sym_string_literal_token1] = ACTIONS(2758), + [sym_char_literal] = ACTIONS(2758), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2760), + [sym_super] = ACTIONS(2760), + [sym_crate] = ACTIONS(2760), + [sym_metavariable] = ACTIONS(2758), + [sym__raw_string_literal_start] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2758), }, - [STATE(731)] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [STATE(710)] = { + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3268), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(3038), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), + }, + [STATE(711)] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2764), [sym_identifier] = ACTIONS(2766), [anon_sym_SEMI] = ACTIONS(2764), @@ -90677,9 +89323,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2764), [sym_float_literal] = ACTIONS(2764), }, - [STATE(732)] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [STATE(712)] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2768), [sym_identifier] = ACTIONS(2770), [anon_sym_SEMI] = ACTIONS(2768), @@ -90758,9 +89404,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2768), [sym_float_literal] = ACTIONS(2768), }, - [STATE(733)] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [STATE(713)] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), [ts_builtin_sym_end] = ACTIONS(2772), [sym_identifier] = ACTIONS(2774), [anon_sym_SEMI] = ACTIONS(2772), @@ -90839,9 +89485,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2772), [sym_float_literal] = ACTIONS(2772), }, - [STATE(734)] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [STATE(714)] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), [ts_builtin_sym_end] = ACTIONS(2776), [sym_identifier] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2776), @@ -90920,9 +89566,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2776), [sym_float_literal] = ACTIONS(2776), }, - [STATE(735)] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2780), [sym_identifier] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2780), @@ -91001,9 +89647,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2780), [sym_float_literal] = ACTIONS(2780), }, - [STATE(736)] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [STATE(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), [ts_builtin_sym_end] = ACTIONS(2784), [sym_identifier] = ACTIONS(2786), [anon_sym_SEMI] = ACTIONS(2784), @@ -91082,9 +89728,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2784), [sym_float_literal] = ACTIONS(2784), }, - [STATE(737)] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [STATE(717)] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), [ts_builtin_sym_end] = ACTIONS(2788), [sym_identifier] = ACTIONS(2790), [anon_sym_SEMI] = ACTIONS(2788), @@ -91163,9 +89809,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2788), [sym_float_literal] = ACTIONS(2788), }, - [STATE(738)] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [STATE(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), [ts_builtin_sym_end] = ACTIONS(2792), [sym_identifier] = ACTIONS(2794), [anon_sym_SEMI] = ACTIONS(2792), @@ -91244,9 +89890,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2792), [sym_float_literal] = ACTIONS(2792), }, - [STATE(739)] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [STATE(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2796), [sym_identifier] = ACTIONS(2798), [anon_sym_SEMI] = ACTIONS(2796), @@ -91325,9 +89971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2796), [sym_float_literal] = ACTIONS(2796), }, - [STATE(740)] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [STATE(720)] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2800), [sym_identifier] = ACTIONS(2802), [anon_sym_SEMI] = ACTIONS(2800), @@ -91406,9 +90052,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2800), [sym_float_literal] = ACTIONS(2800), }, - [STATE(741)] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2804), [sym_identifier] = ACTIONS(2806), [anon_sym_SEMI] = ACTIONS(2804), @@ -91487,9 +90133,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2804), [sym_float_literal] = ACTIONS(2804), }, - [STATE(742)] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [STATE(722)] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2808), [sym_identifier] = ACTIONS(2810), [anon_sym_SEMI] = ACTIONS(2808), @@ -91568,9 +90214,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2808), [sym_float_literal] = ACTIONS(2808), }, - [STATE(743)] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [STATE(723)] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2812), [sym_identifier] = ACTIONS(2814), [anon_sym_SEMI] = ACTIONS(2812), @@ -91649,9 +90295,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2812), [sym_float_literal] = ACTIONS(2812), }, - [STATE(744)] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [STATE(724)] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2816), [sym_identifier] = ACTIONS(2818), [anon_sym_SEMI] = ACTIONS(2816), @@ -91730,9 +90376,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2816), [sym_float_literal] = ACTIONS(2816), }, - [STATE(745)] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [STATE(725)] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2820), [sym_identifier] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2820), @@ -91811,9 +90457,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2820), [sym_float_literal] = ACTIONS(2820), }, - [STATE(746)] = { - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), + [STATE(726)] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2824), [sym_identifier] = ACTIONS(2826), [anon_sym_SEMI] = ACTIONS(2824), @@ -91892,333 +90538,2034 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2824), [sym_float_literal] = ACTIONS(2824), }, - [STATE(747)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_macro_rules_BANG] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_u8] = ACTIONS(2839), - [anon_sym_i8] = ACTIONS(2839), - [anon_sym_u16] = ACTIONS(2839), - [anon_sym_i16] = ACTIONS(2839), - [anon_sym_u32] = ACTIONS(2839), - [anon_sym_i32] = ACTIONS(2839), - [anon_sym_u64] = ACTIONS(2839), - [anon_sym_i64] = ACTIONS(2839), - [anon_sym_u128] = ACTIONS(2839), - [anon_sym_i128] = ACTIONS(2839), - [anon_sym_isize] = ACTIONS(2839), - [anon_sym_usize] = ACTIONS(2839), - [anon_sym_f32] = ACTIONS(2839), - [anon_sym_f64] = ACTIONS(2839), - [anon_sym_bool] = ACTIONS(2839), - [anon_sym_str] = ACTIONS(2839), - [anon_sym_char] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2845), + [STATE(727)] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym_macro_rules_BANG] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_u8] = ACTIONS(2830), + [anon_sym_i8] = ACTIONS(2830), + [anon_sym_u16] = ACTIONS(2830), + [anon_sym_i16] = ACTIONS(2830), + [anon_sym_u32] = ACTIONS(2830), + [anon_sym_i32] = ACTIONS(2830), + [anon_sym_u64] = ACTIONS(2830), + [anon_sym_i64] = ACTIONS(2830), + [anon_sym_u128] = ACTIONS(2830), + [anon_sym_i128] = ACTIONS(2830), + [anon_sym_isize] = ACTIONS(2830), + [anon_sym_usize] = ACTIONS(2830), + [anon_sym_f32] = ACTIONS(2830), + [anon_sym_f64] = ACTIONS(2830), + [anon_sym_bool] = ACTIONS(2830), + [anon_sym_str] = ACTIONS(2830), + [anon_sym_char] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_DOT_DOT] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_gen] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_impl] = ACTIONS(2830), + [anon_sym_let] = ACTIONS(2830), + [anon_sym_loop] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_mod] = ACTIONS(2830), + [anon_sym_pub] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_trait] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_use] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym_yield] = ACTIONS(2830), + [anon_sym_move] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [sym_integer_literal] = ACTIONS(2828), + [aux_sym_string_literal_token1] = ACTIONS(2828), + [sym_char_literal] = ACTIONS(2828), + [anon_sym_true] = ACTIONS(2830), + [anon_sym_false] = ACTIONS(2830), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2830), + [sym_super] = ACTIONS(2830), + [sym_crate] = ACTIONS(2830), + [sym_metavariable] = ACTIONS(2828), + [sym__raw_string_literal_start] = ACTIONS(2828), + [sym_float_literal] = ACTIONS(2828), + }, + [STATE(728)] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_macro_rules_BANG] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_u8] = ACTIONS(2834), + [anon_sym_i8] = ACTIONS(2834), + [anon_sym_u16] = ACTIONS(2834), + [anon_sym_i16] = ACTIONS(2834), + [anon_sym_u32] = ACTIONS(2834), + [anon_sym_i32] = ACTIONS(2834), + [anon_sym_u64] = ACTIONS(2834), + [anon_sym_i64] = ACTIONS(2834), + [anon_sym_u128] = ACTIONS(2834), + [anon_sym_i128] = ACTIONS(2834), + [anon_sym_isize] = ACTIONS(2834), + [anon_sym_usize] = ACTIONS(2834), + [anon_sym_f32] = ACTIONS(2834), + [anon_sym_f64] = ACTIONS(2834), + [anon_sym_bool] = ACTIONS(2834), + [anon_sym_str] = ACTIONS(2834), + [anon_sym_char] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_async] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_gen] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_impl] = ACTIONS(2834), + [anon_sym_let] = ACTIONS(2834), + [anon_sym_loop] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_mod] = ACTIONS(2834), + [anon_sym_pub] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_trait] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_use] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym_yield] = ACTIONS(2834), + [anon_sym_move] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [sym_integer_literal] = ACTIONS(2832), + [aux_sym_string_literal_token1] = ACTIONS(2832), + [sym_char_literal] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2834), + [anon_sym_false] = ACTIONS(2834), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2834), + [sym_super] = ACTIONS(2834), + [sym_crate] = ACTIONS(2834), + [sym_metavariable] = ACTIONS(2832), + [sym__raw_string_literal_start] = ACTIONS(2832), + [sym_float_literal] = ACTIONS(2832), + }, + [STATE(729)] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_macro_rules_BANG] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_u8] = ACTIONS(2838), + [anon_sym_i8] = ACTIONS(2838), + [anon_sym_u16] = ACTIONS(2838), + [anon_sym_i16] = ACTIONS(2838), + [anon_sym_u32] = ACTIONS(2838), + [anon_sym_i32] = ACTIONS(2838), + [anon_sym_u64] = ACTIONS(2838), + [anon_sym_i64] = ACTIONS(2838), + [anon_sym_u128] = ACTIONS(2838), + [anon_sym_i128] = ACTIONS(2838), + [anon_sym_isize] = ACTIONS(2838), + [anon_sym_usize] = ACTIONS(2838), + [anon_sym_f32] = ACTIONS(2838), + [anon_sym_f64] = ACTIONS(2838), + [anon_sym_bool] = ACTIONS(2838), + [anon_sym_str] = ACTIONS(2838), + [anon_sym_char] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_DOT_DOT] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_async] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_gen] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_impl] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2838), + [anon_sym_loop] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_mod] = ACTIONS(2838), + [anon_sym_pub] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_trait] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_use] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym_yield] = ACTIONS(2838), + [anon_sym_move] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [sym_integer_literal] = ACTIONS(2836), + [aux_sym_string_literal_token1] = ACTIONS(2836), + [sym_char_literal] = ACTIONS(2836), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2838), + [sym_super] = ACTIONS(2838), + [sym_crate] = ACTIONS(2838), + [sym_metavariable] = ACTIONS(2836), + [sym__raw_string_literal_start] = ACTIONS(2836), + [sym_float_literal] = ACTIONS(2836), + }, + [STATE(730)] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_macro_rules_BANG] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_u8] = ACTIONS(2842), + [anon_sym_i8] = ACTIONS(2842), + [anon_sym_u16] = ACTIONS(2842), + [anon_sym_i16] = ACTIONS(2842), + [anon_sym_u32] = ACTIONS(2842), + [anon_sym_i32] = ACTIONS(2842), + [anon_sym_u64] = ACTIONS(2842), + [anon_sym_i64] = ACTIONS(2842), + [anon_sym_u128] = ACTIONS(2842), + [anon_sym_i128] = ACTIONS(2842), + [anon_sym_isize] = ACTIONS(2842), + [anon_sym_usize] = ACTIONS(2842), + [anon_sym_f32] = ACTIONS(2842), + [anon_sym_f64] = ACTIONS(2842), + [anon_sym_bool] = ACTIONS(2842), + [anon_sym_str] = ACTIONS(2842), + [anon_sym_char] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_async] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_gen] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_impl] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2842), + [anon_sym_loop] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_mod] = ACTIONS(2842), + [anon_sym_pub] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_static] = ACTIONS(2842), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_trait] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_union] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_use] = ACTIONS(2842), + [anon_sym_while] = ACTIONS(2842), + [anon_sym_extern] = ACTIONS(2842), + [anon_sym_yield] = ACTIONS(2842), + [anon_sym_move] = ACTIONS(2842), + [anon_sym_try] = ACTIONS(2842), + [sym_integer_literal] = ACTIONS(2840), + [aux_sym_string_literal_token1] = ACTIONS(2840), + [sym_char_literal] = ACTIONS(2840), + [anon_sym_true] = ACTIONS(2842), + [anon_sym_false] = ACTIONS(2842), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2842), + [sym_super] = ACTIONS(2842), + [sym_crate] = ACTIONS(2842), + [sym_metavariable] = ACTIONS(2840), + [sym__raw_string_literal_start] = ACTIONS(2840), + [sym_float_literal] = ACTIONS(2840), + }, + [STATE(731)] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_macro_rules_BANG] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_u8] = ACTIONS(2846), + [anon_sym_i8] = ACTIONS(2846), + [anon_sym_u16] = ACTIONS(2846), + [anon_sym_i16] = ACTIONS(2846), + [anon_sym_u32] = ACTIONS(2846), + [anon_sym_i32] = ACTIONS(2846), + [anon_sym_u64] = ACTIONS(2846), + [anon_sym_i64] = ACTIONS(2846), + [anon_sym_u128] = ACTIONS(2846), + [anon_sym_i128] = ACTIONS(2846), + [anon_sym_isize] = ACTIONS(2846), + [anon_sym_usize] = ACTIONS(2846), + [anon_sym_f32] = ACTIONS(2846), + [anon_sym_f64] = ACTIONS(2846), + [anon_sym_bool] = ACTIONS(2846), + [anon_sym_str] = ACTIONS(2846), + [anon_sym_char] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2844), + [anon_sym_DOT_DOT] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_default] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_gen] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_let] = ACTIONS(2846), + [anon_sym_loop] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_mod] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_static] = ACTIONS(2846), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_trait] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_use] = ACTIONS(2846), + [anon_sym_while] = ACTIONS(2846), + [anon_sym_extern] = ACTIONS(2846), + [anon_sym_yield] = ACTIONS(2846), + [anon_sym_move] = ACTIONS(2846), + [anon_sym_try] = ACTIONS(2846), + [sym_integer_literal] = ACTIONS(2844), + [aux_sym_string_literal_token1] = ACTIONS(2844), + [sym_char_literal] = ACTIONS(2844), + [anon_sym_true] = ACTIONS(2846), + [anon_sym_false] = ACTIONS(2846), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2846), + [sym_super] = ACTIONS(2846), + [sym_crate] = ACTIONS(2846), + [sym_metavariable] = ACTIONS(2844), + [sym__raw_string_literal_start] = ACTIONS(2844), + [sym_float_literal] = ACTIONS(2844), + }, + [STATE(732)] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_macro_rules_BANG] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2848), + [anon_sym_u8] = ACTIONS(2850), + [anon_sym_i8] = ACTIONS(2850), + [anon_sym_u16] = ACTIONS(2850), + [anon_sym_i16] = ACTIONS(2850), + [anon_sym_u32] = ACTIONS(2850), + [anon_sym_i32] = ACTIONS(2850), + [anon_sym_u64] = ACTIONS(2850), + [anon_sym_i64] = ACTIONS(2850), + [anon_sym_u128] = ACTIONS(2850), + [anon_sym_i128] = ACTIONS(2850), + [anon_sym_isize] = ACTIONS(2850), + [anon_sym_usize] = ACTIONS(2850), + [anon_sym_f32] = ACTIONS(2850), + [anon_sym_f64] = ACTIONS(2850), + [anon_sym_bool] = ACTIONS(2850), + [anon_sym_str] = ACTIONS(2850), + [anon_sym_char] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_DOT_DOT] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2848), [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_async] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_default] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_gen] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_impl] = ACTIONS(2850), + [anon_sym_let] = ACTIONS(2850), + [anon_sym_loop] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_mod] = ACTIONS(2850), + [anon_sym_pub] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2850), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_trait] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_union] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2850), + [anon_sym_while] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2850), + [anon_sym_move] = ACTIONS(2850), + [anon_sym_try] = ACTIONS(2850), + [sym_integer_literal] = ACTIONS(2848), + [aux_sym_string_literal_token1] = ACTIONS(2848), + [sym_char_literal] = ACTIONS(2848), + [anon_sym_true] = ACTIONS(2850), + [anon_sym_false] = ACTIONS(2850), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2850), + [sym_super] = ACTIONS(2850), + [sym_crate] = ACTIONS(2850), + [sym_metavariable] = ACTIONS(2848), + [sym__raw_string_literal_start] = ACTIONS(2848), + [sym_float_literal] = ACTIONS(2848), + }, + [STATE(733)] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2852), + [anon_sym_macro_rules_BANG] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2852), + [anon_sym_u8] = ACTIONS(2854), + [anon_sym_i8] = ACTIONS(2854), + [anon_sym_u16] = ACTIONS(2854), + [anon_sym_i16] = ACTIONS(2854), + [anon_sym_u32] = ACTIONS(2854), + [anon_sym_i32] = ACTIONS(2854), + [anon_sym_u64] = ACTIONS(2854), + [anon_sym_i64] = ACTIONS(2854), + [anon_sym_u128] = ACTIONS(2854), + [anon_sym_i128] = ACTIONS(2854), + [anon_sym_isize] = ACTIONS(2854), + [anon_sym_usize] = ACTIONS(2854), + [anon_sym_f32] = ACTIONS(2854), + [anon_sym_f64] = ACTIONS(2854), + [anon_sym_bool] = ACTIONS(2854), + [anon_sym_str] = ACTIONS(2854), + [anon_sym_char] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_DOT_DOT] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_async] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), [anon_sym_const] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_default] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_gen] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_impl] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2854), + [anon_sym_loop] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_mod] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2854), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_trait] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2854), + [anon_sym_while] = ACTIONS(2854), + [anon_sym_extern] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2854), + [anon_sym_move] = ACTIONS(2854), + [anon_sym_try] = ACTIONS(2854), + [sym_integer_literal] = ACTIONS(2852), + [aux_sym_string_literal_token1] = ACTIONS(2852), + [sym_char_literal] = ACTIONS(2852), + [anon_sym_true] = ACTIONS(2854), + [anon_sym_false] = ACTIONS(2854), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2854), + [sym_super] = ACTIONS(2854), + [sym_crate] = ACTIONS(2854), + [sym_metavariable] = ACTIONS(2852), + [sym__raw_string_literal_start] = ACTIONS(2852), + [sym_float_literal] = ACTIONS(2852), + }, + [STATE(734)] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_macro_rules_BANG] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_u8] = ACTIONS(2858), + [anon_sym_i8] = ACTIONS(2858), + [anon_sym_u16] = ACTIONS(2858), + [anon_sym_i16] = ACTIONS(2858), + [anon_sym_u32] = ACTIONS(2858), + [anon_sym_i32] = ACTIONS(2858), + [anon_sym_u64] = ACTIONS(2858), + [anon_sym_i64] = ACTIONS(2858), + [anon_sym_u128] = ACTIONS(2858), + [anon_sym_i128] = ACTIONS(2858), + [anon_sym_isize] = ACTIONS(2858), + [anon_sym_usize] = ACTIONS(2858), + [anon_sym_f32] = ACTIONS(2858), + [anon_sym_f64] = ACTIONS(2858), + [anon_sym_bool] = ACTIONS(2858), + [anon_sym_str] = ACTIONS(2858), + [anon_sym_char] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2856), + [anon_sym_DOT_DOT] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_async] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_default] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_gen] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_impl] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2858), + [anon_sym_loop] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_mod] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2858), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_trait] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2858), + [anon_sym_while] = ACTIONS(2858), + [anon_sym_extern] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2858), + [anon_sym_move] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2858), + [sym_integer_literal] = ACTIONS(2856), + [aux_sym_string_literal_token1] = ACTIONS(2856), + [sym_char_literal] = ACTIONS(2856), + [anon_sym_true] = ACTIONS(2858), + [anon_sym_false] = ACTIONS(2858), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2858), + [sym_super] = ACTIONS(2858), + [sym_crate] = ACTIONS(2858), + [sym_metavariable] = ACTIONS(2856), + [sym__raw_string_literal_start] = ACTIONS(2856), + [sym_float_literal] = ACTIONS(2856), + }, + [STATE(735)] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_macro_rules_BANG] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_u8] = ACTIONS(2862), + [anon_sym_i8] = ACTIONS(2862), + [anon_sym_u16] = ACTIONS(2862), + [anon_sym_i16] = ACTIONS(2862), + [anon_sym_u32] = ACTIONS(2862), + [anon_sym_i32] = ACTIONS(2862), + [anon_sym_u64] = ACTIONS(2862), + [anon_sym_i64] = ACTIONS(2862), + [anon_sym_u128] = ACTIONS(2862), + [anon_sym_i128] = ACTIONS(2862), + [anon_sym_isize] = ACTIONS(2862), + [anon_sym_usize] = ACTIONS(2862), + [anon_sym_f32] = ACTIONS(2862), + [anon_sym_f64] = ACTIONS(2862), + [anon_sym_bool] = ACTIONS(2862), + [anon_sym_str] = ACTIONS(2862), + [anon_sym_char] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2860), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_gen] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_impl] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2862), + [anon_sym_loop] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_mod] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2862), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_trait] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2862), + [anon_sym_while] = ACTIONS(2862), + [anon_sym_extern] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2862), + [anon_sym_move] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2862), + [sym_integer_literal] = ACTIONS(2860), + [aux_sym_string_literal_token1] = ACTIONS(2860), + [sym_char_literal] = ACTIONS(2860), + [anon_sym_true] = ACTIONS(2862), + [anon_sym_false] = ACTIONS(2862), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2860), + [sym__raw_string_literal_start] = ACTIONS(2860), + [sym_float_literal] = ACTIONS(2860), + }, + [STATE(736)] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2864), + [anon_sym_macro_rules_BANG] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2864), + [anon_sym_u8] = ACTIONS(2866), + [anon_sym_i8] = ACTIONS(2866), + [anon_sym_u16] = ACTIONS(2866), + [anon_sym_i16] = ACTIONS(2866), + [anon_sym_u32] = ACTIONS(2866), + [anon_sym_i32] = ACTIONS(2866), + [anon_sym_u64] = ACTIONS(2866), + [anon_sym_i64] = ACTIONS(2866), + [anon_sym_u128] = ACTIONS(2866), + [anon_sym_i128] = ACTIONS(2866), + [anon_sym_isize] = ACTIONS(2866), + [anon_sym_usize] = ACTIONS(2866), + [anon_sym_f32] = ACTIONS(2866), + [anon_sym_f64] = ACTIONS(2866), + [anon_sym_bool] = ACTIONS(2866), + [anon_sym_str] = ACTIONS(2866), + [anon_sym_char] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2864), + [anon_sym_DOT_DOT] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_async] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_default] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), [anon_sym_gen] = ACTIONS(2866), - [anon_sym_impl] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_impl] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2866), + [anon_sym_loop] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_mod] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_trait] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2866), + [anon_sym_while] = ACTIONS(2866), + [anon_sym_extern] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2866), + [anon_sym_move] = ACTIONS(2866), + [anon_sym_try] = ACTIONS(2866), + [sym_integer_literal] = ACTIONS(2864), + [aux_sym_string_literal_token1] = ACTIONS(2864), + [sym_char_literal] = ACTIONS(2864), + [anon_sym_true] = ACTIONS(2866), + [anon_sym_false] = ACTIONS(2866), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2866), + [sym_super] = ACTIONS(2866), + [sym_crate] = ACTIONS(2866), + [sym_metavariable] = ACTIONS(2864), + [sym__raw_string_literal_start] = ACTIONS(2864), + [sym_float_literal] = ACTIONS(2864), + }, + [STATE(737)] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_macro_rules_BANG] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2868), + [anon_sym_u8] = ACTIONS(2870), + [anon_sym_i8] = ACTIONS(2870), + [anon_sym_u16] = ACTIONS(2870), + [anon_sym_i16] = ACTIONS(2870), + [anon_sym_u32] = ACTIONS(2870), + [anon_sym_i32] = ACTIONS(2870), + [anon_sym_u64] = ACTIONS(2870), + [anon_sym_i64] = ACTIONS(2870), + [anon_sym_u128] = ACTIONS(2870), + [anon_sym_i128] = ACTIONS(2870), + [anon_sym_isize] = ACTIONS(2870), + [anon_sym_usize] = ACTIONS(2870), + [anon_sym_f32] = ACTIONS(2870), + [anon_sym_f64] = ACTIONS(2870), + [anon_sym_bool] = ACTIONS(2870), + [anon_sym_str] = ACTIONS(2870), + [anon_sym_char] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_DOT_DOT] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_async] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_default] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_gen] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_impl] = ACTIONS(2870), + [anon_sym_let] = ACTIONS(2870), + [anon_sym_loop] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_mod] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2870), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_trait] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2870), + [anon_sym_while] = ACTIONS(2870), + [anon_sym_extern] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2870), + [anon_sym_move] = ACTIONS(2870), + [anon_sym_try] = ACTIONS(2870), + [sym_integer_literal] = ACTIONS(2868), + [aux_sym_string_literal_token1] = ACTIONS(2868), + [sym_char_literal] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2870), + [anon_sym_false] = ACTIONS(2870), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2870), + [sym_super] = ACTIONS(2870), + [sym_crate] = ACTIONS(2870), + [sym_metavariable] = ACTIONS(2868), + [sym__raw_string_literal_start] = ACTIONS(2868), + [sym_float_literal] = ACTIONS(2868), + }, + [STATE(738)] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_macro_rules_BANG] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_async] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_default] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_gen] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_impl] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2874), + [anon_sym_loop] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_mod] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2874), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_trait] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2874), + [anon_sym_while] = ACTIONS(2874), + [anon_sym_extern] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2874), + [anon_sym_move] = ACTIONS(2874), + [anon_sym_try] = ACTIONS(2874), + [sym_integer_literal] = ACTIONS(2872), + [aux_sym_string_literal_token1] = ACTIONS(2872), + [sym_char_literal] = ACTIONS(2872), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2874), + [sym_super] = ACTIONS(2874), + [sym_crate] = ACTIONS(2874), + [sym_metavariable] = ACTIONS(2872), + [sym__raw_string_literal_start] = ACTIONS(2872), + [sym_float_literal] = ACTIONS(2872), + }, + [STATE(739)] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), + [ts_builtin_sym_end] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_macro_rules_BANG] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2876), + [anon_sym_u8] = ACTIONS(2878), + [anon_sym_i8] = ACTIONS(2878), + [anon_sym_u16] = ACTIONS(2878), + [anon_sym_i16] = ACTIONS(2878), + [anon_sym_u32] = ACTIONS(2878), + [anon_sym_i32] = ACTIONS(2878), + [anon_sym_u64] = ACTIONS(2878), + [anon_sym_i64] = ACTIONS(2878), + [anon_sym_u128] = ACTIONS(2878), + [anon_sym_i128] = ACTIONS(2878), + [anon_sym_isize] = ACTIONS(2878), + [anon_sym_usize] = ACTIONS(2878), + [anon_sym_f32] = ACTIONS(2878), + [anon_sym_f64] = ACTIONS(2878), + [anon_sym_bool] = ACTIONS(2878), + [anon_sym_str] = ACTIONS(2878), + [anon_sym_char] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_DOT_DOT] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2876), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_async] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_default] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_gen] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_impl] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_loop] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_mod] = ACTIONS(2878), [anon_sym_pub] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_trait] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_trait] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_union] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2878), + [anon_sym_while] = ACTIONS(2878), + [anon_sym_extern] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2878), + [anon_sym_move] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2878), + [sym_integer_literal] = ACTIONS(2876), + [aux_sym_string_literal_token1] = ACTIONS(2876), + [sym_char_literal] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2878), + [sym_super] = ACTIONS(2878), + [sym_crate] = ACTIONS(2878), + [sym_metavariable] = ACTIONS(2876), + [sym__raw_string_literal_start] = ACTIONS(2876), + [sym_float_literal] = ACTIONS(2876), + }, + [STATE(740)] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_macro_rules_BANG] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_u8] = ACTIONS(2882), + [anon_sym_i8] = ACTIONS(2882), + [anon_sym_u16] = ACTIONS(2882), + [anon_sym_i16] = ACTIONS(2882), + [anon_sym_u32] = ACTIONS(2882), + [anon_sym_i32] = ACTIONS(2882), + [anon_sym_u64] = ACTIONS(2882), + [anon_sym_i64] = ACTIONS(2882), + [anon_sym_u128] = ACTIONS(2882), + [anon_sym_i128] = ACTIONS(2882), + [anon_sym_isize] = ACTIONS(2882), + [anon_sym_usize] = ACTIONS(2882), + [anon_sym_f32] = ACTIONS(2882), + [anon_sym_f64] = ACTIONS(2882), + [anon_sym_bool] = ACTIONS(2882), + [anon_sym_str] = ACTIONS(2882), + [anon_sym_char] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_DOT_DOT] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_gen] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_impl] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2882), + [anon_sym_loop] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_mod] = ACTIONS(2882), + [anon_sym_pub] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_trait] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_union] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_extern] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2882), + [anon_sym_move] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2882), + [sym_integer_literal] = ACTIONS(2880), + [aux_sym_string_literal_token1] = ACTIONS(2880), + [sym_char_literal] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2882), + [anon_sym_false] = ACTIONS(2882), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2882), + [sym_super] = ACTIONS(2882), + [sym_crate] = ACTIONS(2882), + [sym_metavariable] = ACTIONS(2880), + [sym__raw_string_literal_start] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), + }, + [STATE(741)] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_macro_rules_BANG] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_DOT] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2884), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_default] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_gen] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_impl] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_loop] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_mod] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_trait] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_extern] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_move] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [sym_integer_literal] = ACTIONS(2884), + [aux_sym_string_literal_token1] = ACTIONS(2884), + [sym_char_literal] = ACTIONS(2884), + [anon_sym_true] = ACTIONS(2886), + [anon_sym_false] = ACTIONS(2886), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2884), + [sym__raw_string_literal_start] = ACTIONS(2884), + [sym_float_literal] = ACTIONS(2884), + }, + [STATE(742)] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_macro_rules_BANG] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2888), + [anon_sym_u8] = ACTIONS(2890), + [anon_sym_i8] = ACTIONS(2890), + [anon_sym_u16] = ACTIONS(2890), + [anon_sym_i16] = ACTIONS(2890), + [anon_sym_u32] = ACTIONS(2890), + [anon_sym_i32] = ACTIONS(2890), + [anon_sym_u64] = ACTIONS(2890), + [anon_sym_i64] = ACTIONS(2890), + [anon_sym_u128] = ACTIONS(2890), + [anon_sym_i128] = ACTIONS(2890), + [anon_sym_isize] = ACTIONS(2890), + [anon_sym_usize] = ACTIONS(2890), + [anon_sym_f32] = ACTIONS(2890), + [anon_sym_f64] = ACTIONS(2890), + [anon_sym_bool] = ACTIONS(2890), + [anon_sym_str] = ACTIONS(2890), + [anon_sym_char] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2888), + [anon_sym_DOT_DOT] = ACTIONS(2888), + [anon_sym_COLON_COLON] = ACTIONS(2888), + [anon_sym_POUND] = ACTIONS(2888), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_async] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_default] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_gen] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_impl] = ACTIONS(2890), + [anon_sym_let] = ACTIONS(2890), + [anon_sym_loop] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_mod] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2890), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_trait] = ACTIONS(2890), [anon_sym_type] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2890), + [anon_sym_while] = ACTIONS(2890), + [anon_sym_extern] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2890), + [anon_sym_move] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(2890), + [sym_integer_literal] = ACTIONS(2888), + [aux_sym_string_literal_token1] = ACTIONS(2888), + [sym_char_literal] = ACTIONS(2888), + [anon_sym_true] = ACTIONS(2890), + [anon_sym_false] = ACTIONS(2890), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2890), + [sym_super] = ACTIONS(2890), + [sym_crate] = ACTIONS(2890), + [sym_metavariable] = ACTIONS(2888), + [sym__raw_string_literal_start] = ACTIONS(2888), + [sym_float_literal] = ACTIONS(2888), + }, + [STATE(743)] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_macro_rules_BANG] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_u8] = ACTIONS(2894), + [anon_sym_i8] = ACTIONS(2894), + [anon_sym_u16] = ACTIONS(2894), + [anon_sym_i16] = ACTIONS(2894), + [anon_sym_u32] = ACTIONS(2894), + [anon_sym_i32] = ACTIONS(2894), + [anon_sym_u64] = ACTIONS(2894), + [anon_sym_i64] = ACTIONS(2894), + [anon_sym_u128] = ACTIONS(2894), + [anon_sym_i128] = ACTIONS(2894), + [anon_sym_isize] = ACTIONS(2894), + [anon_sym_usize] = ACTIONS(2894), + [anon_sym_f32] = ACTIONS(2894), + [anon_sym_f64] = ACTIONS(2894), + [anon_sym_bool] = ACTIONS(2894), + [anon_sym_str] = ACTIONS(2894), + [anon_sym_char] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_POUND] = ACTIONS(2892), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_async] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_gen] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_loop] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_mod] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2894), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_trait] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2894), + [anon_sym_while] = ACTIONS(2894), + [anon_sym_extern] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2894), + [anon_sym_move] = ACTIONS(2894), + [anon_sym_try] = ACTIONS(2894), + [sym_integer_literal] = ACTIONS(2892), + [aux_sym_string_literal_token1] = ACTIONS(2892), + [sym_char_literal] = ACTIONS(2892), + [anon_sym_true] = ACTIONS(2894), + [anon_sym_false] = ACTIONS(2894), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2894), + [sym_super] = ACTIONS(2894), + [sym_crate] = ACTIONS(2894), + [sym_metavariable] = ACTIONS(2892), + [sym__raw_string_literal_start] = ACTIONS(2892), + [sym_float_literal] = ACTIONS(2892), + }, + [STATE(744)] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2896), + [anon_sym_macro_rules_BANG] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2896), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_u8] = ACTIONS(2898), + [anon_sym_i8] = ACTIONS(2898), + [anon_sym_u16] = ACTIONS(2898), + [anon_sym_i16] = ACTIONS(2898), + [anon_sym_u32] = ACTIONS(2898), + [anon_sym_i32] = ACTIONS(2898), + [anon_sym_u64] = ACTIONS(2898), + [anon_sym_i64] = ACTIONS(2898), + [anon_sym_u128] = ACTIONS(2898), + [anon_sym_i128] = ACTIONS(2898), + [anon_sym_isize] = ACTIONS(2898), + [anon_sym_usize] = ACTIONS(2898), + [anon_sym_f32] = ACTIONS(2898), + [anon_sym_f64] = ACTIONS(2898), + [anon_sym_bool] = ACTIONS(2898), + [anon_sym_str] = ACTIONS(2898), + [anon_sym_char] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_PIPE] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2896), + [anon_sym_DOT_DOT] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(2896), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_async] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_default] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_gen] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_impl] = ACTIONS(2898), + [anon_sym_let] = ACTIONS(2898), + [anon_sym_loop] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_mod] = ACTIONS(2898), + [anon_sym_pub] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2898), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_trait] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_union] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2898), + [anon_sym_while] = ACTIONS(2898), + [anon_sym_extern] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2898), + [anon_sym_move] = ACTIONS(2898), + [anon_sym_try] = ACTIONS(2898), + [sym_integer_literal] = ACTIONS(2896), + [aux_sym_string_literal_token1] = ACTIONS(2896), + [sym_char_literal] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2898), + [anon_sym_false] = ACTIONS(2898), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2896), + [sym__raw_string_literal_start] = ACTIONS(2896), + [sym_float_literal] = ACTIONS(2896), + }, + [STATE(745)] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2900), + [anon_sym_macro_rules_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_u8] = ACTIONS(2902), + [anon_sym_i8] = ACTIONS(2902), + [anon_sym_u16] = ACTIONS(2902), + [anon_sym_i16] = ACTIONS(2902), + [anon_sym_u32] = ACTIONS(2902), + [anon_sym_i32] = ACTIONS(2902), + [anon_sym_u64] = ACTIONS(2902), + [anon_sym_i64] = ACTIONS(2902), + [anon_sym_u128] = ACTIONS(2902), + [anon_sym_i128] = ACTIONS(2902), + [anon_sym_isize] = ACTIONS(2902), + [anon_sym_usize] = ACTIONS(2902), + [anon_sym_f32] = ACTIONS(2902), + [anon_sym_f64] = ACTIONS(2902), + [anon_sym_bool] = ACTIONS(2902), + [anon_sym_str] = ACTIONS(2902), + [anon_sym_char] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_DOT_DOT] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_gen] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_impl] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_loop] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_mod] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_trait] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), [anon_sym_extern] = ACTIONS(2902), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), - [sym_crate] = ACTIONS(2908), - [sym_metavariable] = ACTIONS(2911), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_move] = ACTIONS(2902), + [anon_sym_try] = ACTIONS(2902), + [sym_integer_literal] = ACTIONS(2900), + [aux_sym_string_literal_token1] = ACTIONS(2900), + [sym_char_literal] = ACTIONS(2900), + [anon_sym_true] = ACTIONS(2902), + [anon_sym_false] = ACTIONS(2902), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2902), + [sym_super] = ACTIONS(2902), + [sym_crate] = ACTIONS(2902), + [sym_metavariable] = ACTIONS(2900), + [sym__raw_string_literal_start] = ACTIONS(2900), + [sym_float_literal] = ACTIONS(2900), + }, + [STATE(746)] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2904), + [anon_sym_macro_rules_BANG] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_u8] = ACTIONS(2906), + [anon_sym_i8] = ACTIONS(2906), + [anon_sym_u16] = ACTIONS(2906), + [anon_sym_i16] = ACTIONS(2906), + [anon_sym_u32] = ACTIONS(2906), + [anon_sym_i32] = ACTIONS(2906), + [anon_sym_u64] = ACTIONS(2906), + [anon_sym_i64] = ACTIONS(2906), + [anon_sym_u128] = ACTIONS(2906), + [anon_sym_i128] = ACTIONS(2906), + [anon_sym_isize] = ACTIONS(2906), + [anon_sym_usize] = ACTIONS(2906), + [anon_sym_f32] = ACTIONS(2906), + [anon_sym_f64] = ACTIONS(2906), + [anon_sym_bool] = ACTIONS(2906), + [anon_sym_str] = ACTIONS(2906), + [anon_sym_char] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2904), + [anon_sym_POUND] = ACTIONS(2904), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_gen] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_impl] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_mod] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_trait] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_move] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [sym_integer_literal] = ACTIONS(2904), + [aux_sym_string_literal_token1] = ACTIONS(2904), + [sym_char_literal] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2906), + [sym_super] = ACTIONS(2906), + [sym_crate] = ACTIONS(2906), + [sym_metavariable] = ACTIONS(2904), + [sym__raw_string_literal_start] = ACTIONS(2904), + [sym_float_literal] = ACTIONS(2904), + }, + [STATE(747)] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2908), + [anon_sym_macro_rules_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_RBRACE] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2908), + [anon_sym_u8] = ACTIONS(2910), + [anon_sym_i8] = ACTIONS(2910), + [anon_sym_u16] = ACTIONS(2910), + [anon_sym_i16] = ACTIONS(2910), + [anon_sym_u32] = ACTIONS(2910), + [anon_sym_i32] = ACTIONS(2910), + [anon_sym_u64] = ACTIONS(2910), + [anon_sym_i64] = ACTIONS(2910), + [anon_sym_u128] = ACTIONS(2910), + [anon_sym_i128] = ACTIONS(2910), + [anon_sym_isize] = ACTIONS(2910), + [anon_sym_usize] = ACTIONS(2910), + [anon_sym_f32] = ACTIONS(2910), + [anon_sym_f64] = ACTIONS(2910), + [anon_sym_bool] = ACTIONS(2910), + [anon_sym_str] = ACTIONS(2910), + [anon_sym_char] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_PIPE] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_DOT] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_POUND] = ACTIONS(2908), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_async] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_default] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_gen] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_loop] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_mod] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_trait] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_extern] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_move] = ACTIONS(2910), + [anon_sym_try] = ACTIONS(2910), + [sym_integer_literal] = ACTIONS(2908), + [aux_sym_string_literal_token1] = ACTIONS(2908), + [sym_char_literal] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2910), + [anon_sym_false] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2910), + [sym_super] = ACTIONS(2910), + [sym_crate] = ACTIONS(2910), + [sym_metavariable] = ACTIONS(2908), + [sym__raw_string_literal_start] = ACTIONS(2908), + [sym_float_literal] = ACTIONS(2908), }, [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_macro_rules_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_u8] = ACTIONS(2916), - [anon_sym_i8] = ACTIONS(2916), - [anon_sym_u16] = ACTIONS(2916), - [anon_sym_i16] = ACTIONS(2916), - [anon_sym_u32] = ACTIONS(2916), - [anon_sym_i32] = ACTIONS(2916), - [anon_sym_u64] = ACTIONS(2916), - [anon_sym_i64] = ACTIONS(2916), - [anon_sym_u128] = ACTIONS(2916), - [anon_sym_i128] = ACTIONS(2916), - [anon_sym_isize] = ACTIONS(2916), - [anon_sym_usize] = ACTIONS(2916), - [anon_sym_f32] = ACTIONS(2916), - [anon_sym_f64] = ACTIONS(2916), - [anon_sym_bool] = ACTIONS(2916), - [anon_sym_str] = ACTIONS(2916), - [anon_sym_char] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_async] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_gen] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_impl] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_loop] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_mod] = ACTIONS(2916), - [anon_sym_pub] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_trait] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_extern] = ACTIONS(2916), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_move] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [sym_integer_literal] = ACTIONS(2914), - [aux_sym_string_literal_token1] = ACTIONS(2914), - [sym_char_literal] = ACTIONS(2914), - [anon_sym_true] = ACTIONS(2916), - [anon_sym_false] = ACTIONS(2916), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2916), - [sym_super] = ACTIONS(2916), - [sym_crate] = ACTIONS(2916), - [sym_metavariable] = ACTIONS(2914), - [sym__raw_string_literal_start] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_macro_rules_BANG] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_u8] = ACTIONS(2914), + [anon_sym_i8] = ACTIONS(2914), + [anon_sym_u16] = ACTIONS(2914), + [anon_sym_i16] = ACTIONS(2914), + [anon_sym_u32] = ACTIONS(2914), + [anon_sym_i32] = ACTIONS(2914), + [anon_sym_u64] = ACTIONS(2914), + [anon_sym_i64] = ACTIONS(2914), + [anon_sym_u128] = ACTIONS(2914), + [anon_sym_i128] = ACTIONS(2914), + [anon_sym_isize] = ACTIONS(2914), + [anon_sym_usize] = ACTIONS(2914), + [anon_sym_f32] = ACTIONS(2914), + [anon_sym_f64] = ACTIONS(2914), + [anon_sym_bool] = ACTIONS(2914), + [anon_sym_str] = ACTIONS(2914), + [anon_sym_char] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2912), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_default] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_gen] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_impl] = ACTIONS(2914), + [anon_sym_let] = ACTIONS(2914), + [anon_sym_loop] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_mod] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2914), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_trait] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2914), + [anon_sym_while] = ACTIONS(2914), + [anon_sym_extern] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2914), + [anon_sym_move] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2914), + [sym_integer_literal] = ACTIONS(2912), + [aux_sym_string_literal_token1] = ACTIONS(2912), + [sym_char_literal] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2914), + [anon_sym_false] = ACTIONS(2914), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2914), + [sym_super] = ACTIONS(2914), + [sym_crate] = ACTIONS(2914), + [sym_metavariable] = ACTIONS(2912), + [sym__raw_string_literal_start] = ACTIONS(2912), + [sym_float_literal] = ACTIONS(2912), }, [STATE(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2920), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_macro_rules_BANG] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_u8] = ACTIONS(2920), - [anon_sym_i8] = ACTIONS(2920), - [anon_sym_u16] = ACTIONS(2920), - [anon_sym_i16] = ACTIONS(2920), - [anon_sym_u32] = ACTIONS(2920), - [anon_sym_i32] = ACTIONS(2920), - [anon_sym_u64] = ACTIONS(2920), - [anon_sym_i64] = ACTIONS(2920), - [anon_sym_u128] = ACTIONS(2920), - [anon_sym_i128] = ACTIONS(2920), - [anon_sym_isize] = ACTIONS(2920), - [anon_sym_usize] = ACTIONS(2920), - [anon_sym_f32] = ACTIONS(2920), - [anon_sym_f64] = ACTIONS(2920), - [anon_sym_bool] = ACTIONS(2920), - [anon_sym_str] = ACTIONS(2920), - [anon_sym_char] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_COLON_COLON] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_async] = ACTIONS(2920), - [anon_sym_break] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_continue] = ACTIONS(2920), - [anon_sym_default] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2920), - [anon_sym_gen] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_impl] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2920), - [anon_sym_loop] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_mod] = ACTIONS(2920), - [anon_sym_pub] = ACTIONS(2920), - [anon_sym_return] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2920), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2920), - [anon_sym_move] = ACTIONS(2920), - [anon_sym_try] = ACTIONS(2920), - [sym_integer_literal] = ACTIONS(2918), - [aux_sym_string_literal_token1] = ACTIONS(2918), - [sym_char_literal] = ACTIONS(2918), - [anon_sym_true] = ACTIONS(2920), - [anon_sym_false] = ACTIONS(2920), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2920), - [sym_super] = ACTIONS(2920), - [sym_crate] = ACTIONS(2920), - [sym_metavariable] = ACTIONS(2918), - [sym__raw_string_literal_start] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_macro_rules_BANG] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_u8] = ACTIONS(2918), + [anon_sym_i8] = ACTIONS(2918), + [anon_sym_u16] = ACTIONS(2918), + [anon_sym_i16] = ACTIONS(2918), + [anon_sym_u32] = ACTIONS(2918), + [anon_sym_i32] = ACTIONS(2918), + [anon_sym_u64] = ACTIONS(2918), + [anon_sym_i64] = ACTIONS(2918), + [anon_sym_u128] = ACTIONS(2918), + [anon_sym_i128] = ACTIONS(2918), + [anon_sym_isize] = ACTIONS(2918), + [anon_sym_usize] = ACTIONS(2918), + [anon_sym_f32] = ACTIONS(2918), + [anon_sym_f64] = ACTIONS(2918), + [anon_sym_bool] = ACTIONS(2918), + [anon_sym_str] = ACTIONS(2918), + [anon_sym_char] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_PIPE] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2916), + [anon_sym_POUND] = ACTIONS(2916), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_async] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_default] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_gen] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_impl] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2918), + [anon_sym_loop] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2918), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2918), + [anon_sym_while] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2918), + [anon_sym_move] = ACTIONS(2918), + [anon_sym_try] = ACTIONS(2918), + [sym_integer_literal] = ACTIONS(2916), + [aux_sym_string_literal_token1] = ACTIONS(2916), + [sym_char_literal] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2918), + [anon_sym_false] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2918), + [sym_super] = ACTIONS(2918), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(2916), + [sym__raw_string_literal_start] = ACTIONS(2916), + [sym_float_literal] = ACTIONS(2916), }, [STATE(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2924), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_macro_rules_BANG] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_u8] = ACTIONS(2924), - [anon_sym_i8] = ACTIONS(2924), - [anon_sym_u16] = ACTIONS(2924), - [anon_sym_i16] = ACTIONS(2924), - [anon_sym_u32] = ACTIONS(2924), - [anon_sym_i32] = ACTIONS(2924), - [anon_sym_u64] = ACTIONS(2924), - [anon_sym_i64] = ACTIONS(2924), - [anon_sym_u128] = ACTIONS(2924), - [anon_sym_i128] = ACTIONS(2924), - [anon_sym_isize] = ACTIONS(2924), - [anon_sym_usize] = ACTIONS(2924), - [anon_sym_f32] = ACTIONS(2924), - [anon_sym_f64] = ACTIONS(2924), - [anon_sym_bool] = ACTIONS(2924), - [anon_sym_str] = ACTIONS(2924), - [anon_sym_char] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(2922), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_gen] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_impl] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_loop] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_mod] = ACTIONS(2924), - [anon_sym_pub] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_trait] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_extern] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_move] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [sym_integer_literal] = ACTIONS(2922), - [aux_sym_string_literal_token1] = ACTIONS(2922), - [sym_char_literal] = ACTIONS(2922), - [anon_sym_true] = ACTIONS(2924), - [anon_sym_false] = ACTIONS(2924), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2924), - [sym_super] = ACTIONS(2924), - [sym_crate] = ACTIONS(2924), - [sym_metavariable] = ACTIONS(2922), - [sym__raw_string_literal_start] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_macro_rules_BANG] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2920), + [anon_sym_u8] = ACTIONS(2922), + [anon_sym_i8] = ACTIONS(2922), + [anon_sym_u16] = ACTIONS(2922), + [anon_sym_i16] = ACTIONS(2922), + [anon_sym_u32] = ACTIONS(2922), + [anon_sym_i32] = ACTIONS(2922), + [anon_sym_u64] = ACTIONS(2922), + [anon_sym_i64] = ACTIONS(2922), + [anon_sym_u128] = ACTIONS(2922), + [anon_sym_i128] = ACTIONS(2922), + [anon_sym_isize] = ACTIONS(2922), + [anon_sym_usize] = ACTIONS(2922), + [anon_sym_f32] = ACTIONS(2922), + [anon_sym_f64] = ACTIONS(2922), + [anon_sym_bool] = ACTIONS(2922), + [anon_sym_str] = ACTIONS(2922), + [anon_sym_char] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_DOT_DOT] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(2920), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_async] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_gen] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_impl] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2922), + [anon_sym_loop] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_mod] = ACTIONS(2922), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_trait] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2922), + [anon_sym_move] = ACTIONS(2922), + [anon_sym_try] = ACTIONS(2922), + [sym_integer_literal] = ACTIONS(2920), + [aux_sym_string_literal_token1] = ACTIONS(2920), + [sym_char_literal] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2922), + [anon_sym_false] = ACTIONS(2922), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2922), + [sym_super] = ACTIONS(2922), + [sym_crate] = ACTIONS(2922), + [sym_metavariable] = ACTIONS(2920), + [sym__raw_string_literal_start] = ACTIONS(2920), + [sym_float_literal] = ACTIONS(2920), }, [STATE(751)] = { + [sym_empty_statement] = STATE(1112), + [sym_macro_definition] = STATE(1112), + [sym_attribute_item] = STATE(1112), + [sym_inner_attribute_item] = STATE(1112), + [sym_mod_item] = STATE(1112), + [sym_foreign_mod_item] = STATE(1112), + [sym_struct_item] = STATE(1112), + [sym_union_item] = STATE(1112), + [sym_enum_item] = STATE(1112), + [sym_extern_crate_declaration] = STATE(1112), + [sym_const_item] = STATE(1112), + [sym_static_item] = STATE(1112), + [sym_type_item] = STATE(1112), + [sym_function_item] = STATE(1112), + [sym_function_signature_item] = STATE(1112), + [sym_function_modifiers] = STATE(3749), + [sym_impl_item] = STATE(1112), + [sym_trait_item] = STATE(1112), + [sym_associated_type] = STATE(1112), + [sym_let_declaration] = STATE(1112), + [sym_use_declaration] = STATE(1112), + [sym_extern_modifier] = STATE(2237), + [sym_visibility_modifier] = STATE(2006), + [sym_bracketed_type] = STATE(3714), + [sym_generic_type_with_turbofish] = STATE(3774), + [sym_macro_invocation] = STATE(1112), + [sym_scoped_identifier] = STATE(3435), [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), + [aux_sym_declaration_list_repeat1] = STATE(646), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2924), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_fn] = ACTIONS(2606), + [anon_sym_gen] = ACTIONS(2608), + [anon_sym_impl] = ACTIONS(2610), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_mod] = ACTIONS(2614), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2618), + [anon_sym_trait] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2622), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_unsafe] = ACTIONS(2626), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2630), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), + [sym_crate] = ACTIONS(2634), + [sym_metavariable] = ACTIONS(2636), + }, + [STATE(752)] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2926), [sym_identifier] = ACTIONS(2928), [anon_sym_SEMI] = ACTIONS(2926), @@ -92297,9 +92644,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2926), [sym_float_literal] = ACTIONS(2926), }, - [STATE(752)] = { - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [STATE(753)] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2930), [sym_identifier] = ACTIONS(2932), [anon_sym_SEMI] = ACTIONS(2930), @@ -92378,9 +92725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2930), [sym_float_literal] = ACTIONS(2930), }, - [STATE(753)] = { - [sym_line_comment] = STATE(753), - [sym_block_comment] = STATE(753), + [STATE(754)] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_SEMI] = ACTIONS(2934), @@ -92459,9 +92806,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2934), [sym_float_literal] = ACTIONS(2934), }, - [STATE(754)] = { - [sym_line_comment] = STATE(754), - [sym_block_comment] = STATE(754), + [STATE(755)] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2938), [sym_identifier] = ACTIONS(2940), [anon_sym_SEMI] = ACTIONS(2938), @@ -92540,9 +92887,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2938), [sym_float_literal] = ACTIONS(2938), }, - [STATE(755)] = { - [sym_line_comment] = STATE(755), - [sym_block_comment] = STATE(755), + [STATE(756)] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2942), [sym_identifier] = ACTIONS(2944), [anon_sym_SEMI] = ACTIONS(2942), @@ -92621,9 +92968,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2942), [sym_float_literal] = ACTIONS(2942), }, - [STATE(756)] = { - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), + [STATE(757)] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2946), [sym_identifier] = ACTIONS(2948), [anon_sym_SEMI] = ACTIONS(2946), @@ -92702,9 +93049,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2946), [sym_float_literal] = ACTIONS(2946), }, - [STATE(757)] = { - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), + [STATE(758)] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2950), [sym_identifier] = ACTIONS(2952), [anon_sym_SEMI] = ACTIONS(2950), @@ -92783,9 +93130,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2950), [sym_float_literal] = ACTIONS(2950), }, - [STATE(758)] = { - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), + [STATE(759)] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2954), [sym_identifier] = ACTIONS(2956), [anon_sym_SEMI] = ACTIONS(2954), @@ -92864,9 +93211,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2954), [sym_float_literal] = ACTIONS(2954), }, - [STATE(759)] = { - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), + [STATE(760)] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2958), [sym_identifier] = ACTIONS(2960), [anon_sym_SEMI] = ACTIONS(2958), @@ -92945,9 +93292,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2958), [sym_float_literal] = ACTIONS(2958), }, - [STATE(760)] = { - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), + [STATE(761)] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2962), [sym_identifier] = ACTIONS(2964), [anon_sym_SEMI] = ACTIONS(2962), @@ -93026,9 +93373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2962), [sym_float_literal] = ACTIONS(2962), }, - [STATE(761)] = { - [sym_line_comment] = STATE(761), - [sym_block_comment] = STATE(761), + [STATE(762)] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2966), [sym_identifier] = ACTIONS(2968), [anon_sym_SEMI] = ACTIONS(2966), @@ -93107,9 +93454,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2966), [sym_float_literal] = ACTIONS(2966), }, - [STATE(762)] = { - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), + [STATE(763)] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2970), [sym_identifier] = ACTIONS(2972), [anon_sym_SEMI] = ACTIONS(2970), @@ -93188,9 +93535,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2970), [sym_float_literal] = ACTIONS(2970), }, - [STATE(763)] = { - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), + [STATE(764)] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2974), [sym_identifier] = ACTIONS(2976), [anon_sym_SEMI] = ACTIONS(2974), @@ -93269,9 +93616,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2974), [sym_float_literal] = ACTIONS(2974), }, - [STATE(764)] = { - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), + [STATE(765)] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(2978), [sym_identifier] = ACTIONS(2980), [anon_sym_SEMI] = ACTIONS(2978), @@ -93350,9 +93697,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2978), [sym_float_literal] = ACTIONS(2978), }, - [STATE(765)] = { - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), + [STATE(766)] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(2982), [sym_identifier] = ACTIONS(2984), [anon_sym_SEMI] = ACTIONS(2982), @@ -93431,9 +93778,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2982), [sym_float_literal] = ACTIONS(2982), }, - [STATE(766)] = { - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), + [STATE(767)] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(2986), @@ -93512,9 +93859,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2986), [sym_float_literal] = ACTIONS(2986), }, - [STATE(767)] = { - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), + [STATE(768)] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(2990), [sym_identifier] = ACTIONS(2992), [anon_sym_SEMI] = ACTIONS(2990), @@ -93593,9 +93940,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2990), [sym_float_literal] = ACTIONS(2990), }, - [STATE(768)] = { - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), + [STATE(769)] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(2994), [sym_identifier] = ACTIONS(2996), [anon_sym_SEMI] = ACTIONS(2994), @@ -93674,9 +94021,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2994), [sym_float_literal] = ACTIONS(2994), }, - [STATE(769)] = { - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), + [STATE(770)] = { + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), [ts_builtin_sym_end] = ACTIONS(2998), [sym_identifier] = ACTIONS(3000), [anon_sym_SEMI] = ACTIONS(2998), @@ -93755,9 +94102,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2998), [sym_float_literal] = ACTIONS(2998), }, - [STATE(770)] = { - [sym_line_comment] = STATE(770), - [sym_block_comment] = STATE(770), + [STATE(771)] = { + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), [ts_builtin_sym_end] = ACTIONS(3002), [sym_identifier] = ACTIONS(3004), [anon_sym_SEMI] = ACTIONS(3002), @@ -93836,9 +94183,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3002), [sym_float_literal] = ACTIONS(3002), }, - [STATE(771)] = { - [sym_line_comment] = STATE(771), - [sym_block_comment] = STATE(771), + [STATE(772)] = { + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), [ts_builtin_sym_end] = ACTIONS(3006), [sym_identifier] = ACTIONS(3008), [anon_sym_SEMI] = ACTIONS(3006), @@ -93917,9 +94264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3006), [sym_float_literal] = ACTIONS(3006), }, - [STATE(772)] = { - [sym_line_comment] = STATE(772), - [sym_block_comment] = STATE(772), + [STATE(773)] = { + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), [ts_builtin_sym_end] = ACTIONS(3010), [sym_identifier] = ACTIONS(3012), [anon_sym_SEMI] = ACTIONS(3010), @@ -93998,9 +94345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3010), [sym_float_literal] = ACTIONS(3010), }, - [STATE(773)] = { - [sym_line_comment] = STATE(773), - [sym_block_comment] = STATE(773), + [STATE(774)] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), [ts_builtin_sym_end] = ACTIONS(3014), [sym_identifier] = ACTIONS(3016), [anon_sym_SEMI] = ACTIONS(3014), @@ -94079,9 +94426,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3014), [sym_float_literal] = ACTIONS(3014), }, - [STATE(774)] = { - [sym_line_comment] = STATE(774), - [sym_block_comment] = STATE(774), + [STATE(775)] = { + [sym_attribute_item] = STATE(1415), + [sym_inner_attribute_item] = STATE(1415), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_match_pattern] = STATE(3491), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3095), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), + [aux_sym_match_arm_repeat1] = STATE(1076), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), + }, + [STATE(776)] = { + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), [ts_builtin_sym_end] = ACTIONS(3018), [sym_identifier] = ACTIONS(3020), [anon_sym_SEMI] = ACTIONS(3018), @@ -94160,9 +94588,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3018), [sym_float_literal] = ACTIONS(3018), }, - [STATE(775)] = { - [sym_line_comment] = STATE(775), - [sym_block_comment] = STATE(775), + [STATE(777)] = { + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), [ts_builtin_sym_end] = ACTIONS(3022), [sym_identifier] = ACTIONS(3024), [anon_sym_SEMI] = ACTIONS(3022), @@ -94241,9 +94669,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3022), [sym_float_literal] = ACTIONS(3022), }, - [STATE(776)] = { - [sym_line_comment] = STATE(776), - [sym_block_comment] = STATE(776), + [STATE(778)] = { + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), [ts_builtin_sym_end] = ACTIONS(3026), [sym_identifier] = ACTIONS(3028), [anon_sym_SEMI] = ACTIONS(3026), @@ -94322,9 +94750,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3026), [sym_float_literal] = ACTIONS(3026), }, - [STATE(777)] = { - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), + [STATE(779)] = { + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), [ts_builtin_sym_end] = ACTIONS(3030), [sym_identifier] = ACTIONS(3032), [anon_sym_SEMI] = ACTIONS(3030), @@ -94403,9 +94831,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3030), [sym_float_literal] = ACTIONS(3030), }, - [STATE(778)] = { - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [STATE(780)] = { + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), [ts_builtin_sym_end] = ACTIONS(3034), [sym_identifier] = ACTIONS(3036), [anon_sym_SEMI] = ACTIONS(3034), @@ -94484,9 +94912,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3034), [sym_float_literal] = ACTIONS(3034), }, - [STATE(779)] = { - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), + [STATE(781)] = { + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), [ts_builtin_sym_end] = ACTIONS(3038), [sym_identifier] = ACTIONS(3040), [anon_sym_SEMI] = ACTIONS(3038), @@ -94565,9 +94993,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3038), [sym_float_literal] = ACTIONS(3038), }, - [STATE(780)] = { - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), + [STATE(782)] = { + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), [ts_builtin_sym_end] = ACTIONS(3042), [sym_identifier] = ACTIONS(3044), [anon_sym_SEMI] = ACTIONS(3042), @@ -94646,9 +95074,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3042), [sym_float_literal] = ACTIONS(3042), }, - [STATE(781)] = { - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), + [STATE(783)] = { + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), [ts_builtin_sym_end] = ACTIONS(3046), [sym_identifier] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3046), @@ -94727,20139 +95155,20300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3046), [sym_float_literal] = ACTIONS(3046), }, - [STATE(782)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(794), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), - }, - [STATE(783)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_const_parameter] = STATE(3034), - [sym_type_parameter] = STATE(3034), - [sym_lifetime_parameter] = STATE(3034), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(2505), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(783), - [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(2117), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(3072), - }, [STATE(784)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_macro_rules_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_u8] = ACTIONS(3052), + [anon_sym_i8] = ACTIONS(3052), + [anon_sym_u16] = ACTIONS(3052), + [anon_sym_i16] = ACTIONS(3052), + [anon_sym_u32] = ACTIONS(3052), + [anon_sym_i32] = ACTIONS(3052), + [anon_sym_u64] = ACTIONS(3052), + [anon_sym_i64] = ACTIONS(3052), + [anon_sym_u128] = ACTIONS(3052), + [anon_sym_i128] = ACTIONS(3052), + [anon_sym_isize] = ACTIONS(3052), + [anon_sym_usize] = ACTIONS(3052), + [anon_sym_f32] = ACTIONS(3052), + [anon_sym_f64] = ACTIONS(3052), + [anon_sym_bool] = ACTIONS(3052), + [anon_sym_str] = ACTIONS(3052), + [anon_sym_char] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_gen] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_impl] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_loop] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_mod] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_trait] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_move] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [aux_sym_string_literal_token1] = ACTIONS(3050), + [sym_char_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3052), + [anon_sym_false] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_crate] = ACTIONS(3052), + [sym_metavariable] = ACTIONS(3050), + [sym__raw_string_literal_start] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), }, [STATE(785)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1028), + [sym__type] = STATE(2635), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(786)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_const_parameter] = STATE(2989), + [sym_type_parameter] = STATE(2989), + [sym_lifetime_parameter] = STATE(2989), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3032), + [sym_bracketed_type] = STATE(3729), + [sym_qualified_type] = STATE(3535), + [sym_lifetime] = STATE(2515), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(2158), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(3076), }, [STATE(787)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym_closure_expression] = STATE(3268), + [sym_closure_parameters] = STATE(218), + [sym__pattern] = STATE(3038), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(788)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [ts_builtin_sym_end] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_macro_rules_BANG] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_u8] = ACTIONS(3080), + [anon_sym_i8] = ACTIONS(3080), + [anon_sym_u16] = ACTIONS(3080), + [anon_sym_i16] = ACTIONS(3080), + [anon_sym_u32] = ACTIONS(3080), + [anon_sym_i32] = ACTIONS(3080), + [anon_sym_u64] = ACTIONS(3080), + [anon_sym_i64] = ACTIONS(3080), + [anon_sym_u128] = ACTIONS(3080), + [anon_sym_i128] = ACTIONS(3080), + [anon_sym_isize] = ACTIONS(3080), + [anon_sym_usize] = ACTIONS(3080), + [anon_sym_f32] = ACTIONS(3080), + [anon_sym_f64] = ACTIONS(3080), + [anon_sym_bool] = ACTIONS(3080), + [anon_sym_str] = ACTIONS(3080), + [anon_sym_char] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_DOT_DOT] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3078), + [anon_sym_POUND] = ACTIONS(3078), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_default] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_gen] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_impl] = ACTIONS(3080), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_loop] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_mod] = ACTIONS(3080), + [anon_sym_pub] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_static] = ACTIONS(3080), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_trait] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_union] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_extern] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3080), + [anon_sym_move] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [sym_integer_literal] = ACTIONS(3078), + [aux_sym_string_literal_token1] = ACTIONS(3078), + [sym_char_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3080), + [sym_super] = ACTIONS(3080), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(3078), + [sym__raw_string_literal_start] = ACTIONS(3078), + [sym_float_literal] = ACTIONS(3078), }, [STATE(789)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1033), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), + [aux_sym_enum_variant_list_repeat1] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(790)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1033), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), + [aux_sym_enum_variant_list_repeat1] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(791)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1033), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(792)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2697), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1033), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(793)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1033), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), + [aux_sym_enum_variant_list_repeat1] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(794)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1025), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1033), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(795)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2607), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2642), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2608), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(797)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1036), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2758), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1557), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(798)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2648), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2822), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2698), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3102), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2618), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(957), + [sym__type] = STATE(3111), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(1082), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(802)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(1033), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3110), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2777), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(1082), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(1637), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2798), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3116), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(806)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2776), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3120), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3122), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(808)] = { - [sym_parameter] = STATE(3181), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2928), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_parameter] = STATE(3149), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2622), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(3126), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3128), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(809)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_parameter] = STATE(3149), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2511), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(3126), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3128), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(810)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2647), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(811)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(812)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2504), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(814)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3136), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(815)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2512), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_parameter] = STATE(3349), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2970), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(3126), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3128), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2559), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(818)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3142), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3182), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2171), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3443), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2838), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2165), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(822)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2596), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3148), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3260), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2203), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(2952), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(3150), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2167), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3278), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3319), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(2967), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2211), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3138), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(2953), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3108), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3001), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2972), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2180), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2523), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2923), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3381), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(833)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3444), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3193), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(834)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2509), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3021), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3146), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2944), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2966), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(3148), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3317), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2992), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2517), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2516), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2955), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3086), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2946), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3366), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2990), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2522), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3089), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3093), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3094), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2209), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3413), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2564), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3436), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3662), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3384), + [sym_macro_invocation] = STATE(3109), + [sym_scoped_identifier] = STATE(2248), + [sym_scoped_type_identifier] = STATE(3063), + [sym_const_block] = STATE(3109), + [sym__pattern] = STATE(3110), + [sym_generic_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3109), + [sym_slice_pattern] = STATE(3109), + [sym_tuple_struct_pattern] = STATE(3109), + [sym_struct_pattern] = STATE(3109), + [sym_remaining_field_pattern] = STATE(3109), + [sym_mut_pattern] = STATE(3109), + [sym_range_pattern] = STATE(3109), + [sym_ref_pattern] = STATE(3109), + [sym_captured_pattern] = STATE(3109), + [sym_reference_pattern] = STATE(3109), + [sym_or_pattern] = STATE(3109), + [sym__literal_pattern] = STATE(2382), + [sym_negative_literal] = STATE(2393), + [sym_string_literal] = STATE(2393), + [sym_raw_string_literal] = STATE(2393), + [sym_boolean_literal] = STATE(2393), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1671), + [anon_sym_i8] = ACTIONS(1671), + [anon_sym_u16] = ACTIONS(1671), + [anon_sym_i16] = ACTIONS(1671), + [anon_sym_u32] = ACTIONS(1671), + [anon_sym_i32] = ACTIONS(1671), + [anon_sym_u64] = ACTIONS(1671), + [anon_sym_i64] = ACTIONS(1671), + [anon_sym_u128] = ACTIONS(1671), + [anon_sym_i128] = ACTIONS(1671), + [anon_sym_isize] = ACTIONS(1671), + [anon_sym_usize] = ACTIONS(1671), + [anon_sym_f32] = ACTIONS(1671), + [anon_sym_f64] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_str] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_gen] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1693), + [sym_mutable_specifier] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1703), + [sym_super] = ACTIONS(1703), + [sym_crate] = ACTIONS(1703), + [sym_metavariable] = ACTIONS(1705), + [sym__raw_string_literal_start] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1697), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3441), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2168), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3442), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2164), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3443), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3407), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3433), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(849)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3439), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3180), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(850)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3440), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3190), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(851)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(3442), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3222), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(852)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_bracketed_type] = STATE(3598), + [sym_generic_type] = STATE(3570), + [sym_generic_type_with_turbofish] = STATE(3383), + [sym_macro_invocation] = STATE(2212), + [sym_scoped_identifier] = STATE(2019), + [sym_scoped_type_identifier] = STATE(2892), + [sym_const_block] = STATE(2212), + [sym__pattern] = STATE(2755), + [sym_generic_pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(2212), + [sym_slice_pattern] = STATE(2212), + [sym_tuple_struct_pattern] = STATE(2212), + [sym_struct_pattern] = STATE(2212), + [sym_remaining_field_pattern] = STATE(2212), + [sym_mut_pattern] = STATE(2212), + [sym_range_pattern] = STATE(2212), + [sym_ref_pattern] = STATE(2212), + [sym_captured_pattern] = STATE(2212), + [sym_reference_pattern] = STATE(2212), + [sym_or_pattern] = STATE(2212), + [sym__literal_pattern] = STATE(2097), + [sym_negative_literal] = STATE(2094), + [sym_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_gen] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_ref] = ACTIONS(1117), + [sym_mutable_specifier] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1123), + [aux_sym_string_literal_token1] = ACTIONS(1125), + [sym_char_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1135), + [sym_float_literal] = ACTIONS(1123), }, [STATE(853)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3234), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_mutable_specifier] = ACTIONS(3162), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3236), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(3166), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3168), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2445), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2439), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2251), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1476), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(1042), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2262), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [sym_mutable_specifier] = ACTIONS(3238), + [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), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3405), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_mutable_specifier] = ACTIONS(3244), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1785), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(857), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [sym_mutable_specifier] = ACTIONS(3246), + [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), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2287), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_mutable_specifier] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(975), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2453), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2450), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2254), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3353), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [sym_mutable_specifier] = ACTIONS(3252), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(852), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3260), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3262), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(865)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_type_parameters] = STATE(961), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2403), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2444), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2261), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(866)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(941), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2431), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2236), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2832), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(867)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2832), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(868)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2761), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(869)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_type_parameters] = STATE(980), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2455), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2264), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(870)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2696), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(871)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2240), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2242), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2242), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3032), + [sym_bracketed_type] = STATE(3729), + [sym_qualified_type] = STATE(3535), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(873)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(856), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3278), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2276), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2276), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_type_parameters] = STATE(938), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2475), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2386), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2238), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_type_parameters] = STATE(926), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2400), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2229), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3280), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3345), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3284), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [sym_mutable_specifier] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(851), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2696), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(881)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_higher_ranked_trait_bound] = STATE(2318), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2319), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2319), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_higher_ranked_trait_bound] = STATE(2235), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2236), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2236), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1194), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1459), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1087), + [sym_function_modifiers] = STATE(3780), + [sym_higher_ranked_trait_bound] = STATE(2318), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2275), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2275), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(2046), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1760), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2421), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1452), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3718), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1452), + [sym_tuple_type] = STATE(1452), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(1200), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1452), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3387), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3302), + [anon_sym_i8] = ACTIONS(3302), + [anon_sym_u16] = ACTIONS(3302), + [anon_sym_i16] = ACTIONS(3302), + [anon_sym_u32] = ACTIONS(3302), + [anon_sym_i32] = ACTIONS(3302), + [anon_sym_u64] = ACTIONS(3302), + [anon_sym_i64] = ACTIONS(3302), + [anon_sym_u128] = ACTIONS(3302), + [anon_sym_i128] = ACTIONS(3302), + [anon_sym_isize] = ACTIONS(3302), + [anon_sym_usize] = ACTIONS(3302), + [anon_sym_f32] = ACTIONS(3302), + [anon_sym_f64] = ACTIONS(3302), + [anon_sym_bool] = ACTIONS(3302), + [anon_sym_str] = ACTIONS(3302), + [anon_sym_char] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3306), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(3306), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3308), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1426), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(1426), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(1426), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3190), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2841), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2904), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1465), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2916), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3303), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2505), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2652), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1459), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(895)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(896)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2269), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(897)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(898)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2712), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(899)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1427), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2614), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(900)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2472), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3006), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(901)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2487), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(902)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2406), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2448), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(903)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2650), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(904)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(905)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2847), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(906)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1714), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(907)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1717), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1717), - [sym_tuple_type] = STATE(1717), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1666), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1717), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1600), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2467), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(908)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2469), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(909)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2409), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2787), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(910)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2282), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1432), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(911)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1712), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(912)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1715), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3494), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1715), + [sym_tuple_type] = STATE(1715), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(1699), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1715), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1606), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3314), + [anon_sym_i8] = ACTIONS(3314), + [anon_sym_u16] = ACTIONS(3314), + [anon_sym_i16] = ACTIONS(3314), + [anon_sym_u32] = ACTIONS(3314), + [anon_sym_i32] = ACTIONS(3314), + [anon_sym_u64] = ACTIONS(3314), + [anon_sym_i64] = ACTIONS(3314), + [anon_sym_u128] = ACTIONS(3314), + [anon_sym_i128] = ACTIONS(3314), + [anon_sym_isize] = ACTIONS(3314), + [anon_sym_usize] = ACTIONS(3314), + [anon_sym_f32] = ACTIONS(3314), + [anon_sym_f64] = ACTIONS(3314), + [anon_sym_bool] = ACTIONS(3314), + [anon_sym_str] = ACTIONS(3314), + [anon_sym_char] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_gen] = ACTIONS(3320), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [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(3322), }, [STATE(913)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2451), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(914)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1753), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1753), - [sym_tuple_type] = STATE(1753), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1660), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1753), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1597), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2834), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(915)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2695), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(916)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2281), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(917)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1433), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(918)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3494), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(1695), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1754), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1596), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3314), + [anon_sym_i8] = ACTIONS(3314), + [anon_sym_u16] = ACTIONS(3314), + [anon_sym_i16] = ACTIONS(3314), + [anon_sym_u32] = ACTIONS(3314), + [anon_sym_i32] = ACTIONS(3314), + [anon_sym_u64] = ACTIONS(3314), + [anon_sym_i64] = ACTIONS(3314), + [anon_sym_u128] = ACTIONS(3314), + [anon_sym_i128] = ACTIONS(3314), + [anon_sym_isize] = ACTIONS(3314), + [anon_sym_usize] = ACTIONS(3314), + [anon_sym_f32] = ACTIONS(3314), + [anon_sym_f64] = ACTIONS(3314), + [anon_sym_bool] = ACTIONS(3314), + [anon_sym_str] = ACTIONS(3314), + [anon_sym_char] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3320), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [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(3322), }, [STATE(919)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(920)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3121), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1805), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(921)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(922)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2296), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(923)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1435), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(924)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1475), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2282), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(925)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1746), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(1746), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(1746), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(926)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1745), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(1745), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(1745), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2433), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2404), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2266), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(927)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2303), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(928)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2625), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2840), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2626), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(930)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1481), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1481), - [sym_tuple_type] = STATE(1481), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1481), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1086), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(931)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2420), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(932)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(933)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(934)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1753), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(935)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1811), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(936)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1751), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1812), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(937)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1812), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1758), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(938)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1758), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2392), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2398), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2253), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(939)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2421), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(940)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3118), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3146), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(941)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2385), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2388), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2226), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3155), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(942)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2060), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3631), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_type] = STATE(2060), + [sym_tuple_type] = STATE(2060), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2033), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2060), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2250), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(943)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1509), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(946)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1515), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3718), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1515), + [sym_tuple_type] = STATE(1515), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1515), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3387), + [sym_scoped_type_identifier] = STATE(1091), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3302), + [anon_sym_i8] = ACTIONS(3302), + [anon_sym_u16] = ACTIONS(3302), + [anon_sym_i16] = ACTIONS(3302), + [anon_sym_u32] = ACTIONS(3302), + [anon_sym_i32] = ACTIONS(3302), + [anon_sym_u64] = ACTIONS(3302), + [anon_sym_i64] = ACTIONS(3302), + [anon_sym_u128] = ACTIONS(3302), + [anon_sym_i128] = ACTIONS(3302), + [anon_sym_isize] = ACTIONS(3302), + [anon_sym_usize] = ACTIONS(3302), + [anon_sym_f32] = ACTIONS(3302), + [anon_sym_f64] = ACTIONS(3302), + [anon_sym_bool] = ACTIONS(3302), + [anon_sym_str] = ACTIONS(3302), + [anon_sym_char] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_gen] = ACTIONS(3306), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(3306), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3308), }, [STATE(947)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3344), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1775), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2289), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2961), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3118), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1491), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3334), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2041), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1766), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1458), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2824), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1768), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1504), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1869), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3043), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3015), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2602), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2447), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2253), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3077), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3121), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2397), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2263), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2519), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3404), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(963)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2609), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2525), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3607), + [sym_removed_trait_bound] = STATE(1912), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1774), + [sym_bracketed_type] = STATE(3668), + [sym_lifetime] = STATE(3494), + [sym_array_type] = STATE(1912), + [sym_for_lifetimes] = STATE(1642), + [sym_function_type] = STATE(1912), + [sym_tuple_type] = STATE(1912), + [sym_unit_type] = STATE(1912), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(3659), + [sym_bounded_type] = STATE(1912), + [sym_use_bounds] = STATE(3494), + [sym_reference_type] = STATE(1912), + [sym_pointer_type] = STATE(1912), + [sym_never_type] = STATE(1912), + [sym_abstract_type] = STATE(1912), + [sym_dynamic_type] = STATE(1912), + [sym_macro_invocation] = STATE(1912), + [sym_scoped_identifier] = STATE(3397), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3236), + [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), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2865), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2437), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2071), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2420), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2653), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2925), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2865), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1475), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2454), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2656), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2457), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2422), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2456), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2256), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2613), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3119), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1476), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2877), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2531), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2616), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2459), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2461), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2265), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1507), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2673), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2046), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2046), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(2046), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2060), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3755), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2060), + [sym_tuple_type] = STATE(2060), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2033), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2060), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2011), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2284), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2064), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2416), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2456), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2458), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2401), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2634), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2918), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2046), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(2046), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(2046), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2529), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3321), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2672), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2915), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2535), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2925), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2636), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2675), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2637), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2923), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2642), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1004)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1005)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1006)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2461), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2294), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1007)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2466), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2429), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1008)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2229), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1009)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2577), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1010)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2944), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1011)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2683), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3072), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1012)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2471), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1014)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2422), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1015)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2424), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1016)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2425), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1017)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2305), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1018)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2688), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2657), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1019)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2658), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1020)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2973), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2041), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1021)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1022)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2399), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2477), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1023)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2291), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1024)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2264), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1481), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(1481), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(1481), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(3358), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(1025)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2596), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2968), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1026)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2965), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2668), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1027)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2696), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2268), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1028)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2271), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2777), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1029)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2277), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2269), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1030)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2285), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1031)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1506), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2058), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3631), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2058), + [sym_tuple_type] = STATE(2058), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2018), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2058), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2262), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1032)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2887), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2988), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1033)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3074), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3111), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1034)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1035)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3149), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2449), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1036)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2406), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1037)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2606), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1448), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(1038)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1526), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3125), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1039)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2845), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2441), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1040)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1451), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(1041)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1444), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1042)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2395), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2232), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2624), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1043)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2476), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1044)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2064), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1045)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2010), + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1508), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(1046)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1463), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1047)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2662), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1048)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2237), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2058), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3755), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2058), + [sym_tuple_type] = STATE(2058), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2018), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2058), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2010), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1049)] = { - [sym_attribute_item] = STATE(1050), + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2761), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(3360), - [anon_sym_i8] = ACTIONS(3360), - [anon_sym_u16] = ACTIONS(3360), - [anon_sym_i16] = ACTIONS(3360), - [anon_sym_u32] = ACTIONS(3360), - [anon_sym_i32] = ACTIONS(3360), - [anon_sym_u64] = ACTIONS(3360), - [anon_sym_i64] = ACTIONS(3360), - [anon_sym_u128] = ACTIONS(3360), - [anon_sym_i128] = ACTIONS(3360), - [anon_sym_isize] = ACTIONS(3360), - [anon_sym_usize] = ACTIONS(3360), - [anon_sym_f32] = ACTIONS(3360), - [anon_sym_f64] = ACTIONS(3360), - [anon_sym_bool] = ACTIONS(3360), - [anon_sym_str] = ACTIONS(3360), - [anon_sym_char] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_default] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_gen] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_loop] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_union] = ACTIONS(3360), - [anon_sym_unsafe] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_move] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_crate] = ACTIONS(3360), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1050)] = { + [sym_function_modifiers] = STATE(3754), + [sym_removed_trait_bound] = STATE(1482), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(1457), + [sym_bracketed_type] = STATE(3651), + [sym_lifetime] = STATE(3718), + [sym_array_type] = STATE(1482), + [sym_for_lifetimes] = STATE(1639), + [sym_function_type] = STATE(1482), + [sym_tuple_type] = STATE(1482), + [sym_unit_type] = STATE(1482), + [sym_generic_type] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(3639), + [sym_bounded_type] = STATE(1482), + [sym_use_bounds] = STATE(3718), + [sym_reference_type] = STATE(1482), + [sym_pointer_type] = STATE(1482), + [sym_never_type] = STATE(1482), + [sym_abstract_type] = STATE(1482), + [sym_dynamic_type] = STATE(1482), + [sym_macro_invocation] = STATE(1482), + [sym_scoped_identifier] = STATE(3319), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [sym_identifier] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_RBRACK] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_u8] = ACTIONS(3362), - [anon_sym_i8] = ACTIONS(3362), - [anon_sym_u16] = ACTIONS(3362), - [anon_sym_i16] = ACTIONS(3362), - [anon_sym_u32] = ACTIONS(3362), - [anon_sym_i32] = ACTIONS(3362), - [anon_sym_u64] = ACTIONS(3362), - [anon_sym_i64] = ACTIONS(3362), - [anon_sym_u128] = ACTIONS(3362), - [anon_sym_i128] = ACTIONS(3362), - [anon_sym_isize] = ACTIONS(3362), - [anon_sym_usize] = ACTIONS(3362), - [anon_sym_f32] = ACTIONS(3362), - [anon_sym_f64] = ACTIONS(3362), - [anon_sym_bool] = ACTIONS(3362), - [anon_sym_str] = ACTIONS(3362), - [anon_sym_char] = ACTIONS(3362), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_PIPE] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_DOT_DOT] = ACTIONS(3364), - [anon_sym_COMMA] = ACTIONS(3364), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3362), - [anon_sym_async] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_gen] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_loop] = ACTIONS(3362), - [anon_sym_match] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_unsafe] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3362), - [anon_sym_move] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [sym_integer_literal] = ACTIONS(3364), - [aux_sym_string_literal_token1] = ACTIONS(3364), - [sym_char_literal] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3362), - [sym_super] = ACTIONS(3362), - [sym_crate] = ACTIONS(3362), - [sym_metavariable] = ACTIONS(3364), - [sym__raw_string_literal_start] = ACTIONS(3364), - [sym_float_literal] = ACTIONS(3364), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(1051)] = { + [sym_function_modifiers] = STATE(3780), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(2271), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1619), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3755), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_RBRACK] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_u8] = ACTIONS(2614), - [anon_sym_i8] = ACTIONS(2614), - [anon_sym_u16] = ACTIONS(2614), - [anon_sym_i16] = ACTIONS(2614), - [anon_sym_u32] = ACTIONS(2614), - [anon_sym_i32] = ACTIONS(2614), - [anon_sym_u64] = ACTIONS(2614), - [anon_sym_i64] = ACTIONS(2614), - [anon_sym_u128] = ACTIONS(2614), - [anon_sym_i128] = ACTIONS(2614), - [anon_sym_isize] = ACTIONS(2614), - [anon_sym_usize] = ACTIONS(2614), - [anon_sym_f32] = ACTIONS(2614), - [anon_sym_f64] = ACTIONS(2614), - [anon_sym_bool] = ACTIONS(2614), - [anon_sym_str] = ACTIONS(2614), - [anon_sym_char] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_COMMA] = ACTIONS(2612), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_gen] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_move] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [sym_integer_literal] = ACTIONS(2612), - [aux_sym_string_literal_token1] = ACTIONS(2612), - [sym_char_literal] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_crate] = ACTIONS(2614), - [sym_metavariable] = ACTIONS(2612), - [sym__raw_string_literal_start] = ACTIONS(2612), - [sym_float_literal] = ACTIONS(2612), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1111), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1052)] = { + [sym_function_modifiers] = STATE(3603), + [sym_removed_trait_bound] = STATE(2037), + [sym_extern_modifier] = STATE(2442), + [sym__type] = STATE(3405), + [sym_bracketed_type] = STATE(3729), + [sym_lifetime] = STATE(3631), + [sym_array_type] = STATE(2037), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(2037), + [sym_tuple_type] = STATE(2037), + [sym_unit_type] = STATE(2037), + [sym_generic_type] = STATE(2029), + [sym_generic_type_with_turbofish] = STATE(3534), + [sym_bounded_type] = STATE(2037), + [sym_use_bounds] = STATE(3631), + [sym_reference_type] = STATE(2037), + [sym_pointer_type] = STATE(2037), + [sym_never_type] = STATE(2037), + [sym_abstract_type] = STATE(2037), + [sym_dynamic_type] = STATE(2037), + [sym_macro_invocation] = STATE(2037), + [sym_scoped_identifier] = STATE(3401), + [sym_scoped_type_identifier] = STATE(2241), [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u128] = ACTIONS(1593), - [anon_sym_i128] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_str] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym__] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_DASH_GT] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_gen] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_unsafe] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [aux_sym_string_literal_token1] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1595), - [sym__raw_string_literal_start] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [aux_sym_function_modifiers_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1107), + [anon_sym_gen] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1115), + [anon_sym_dyn] = ACTIONS(1631), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1635), + [sym_super] = ACTIONS(1635), + [sym_crate] = ACTIONS(1635), + [sym_metavariable] = ACTIONS(1637), }, [STATE(1053)] = { + [sym_attribute_item] = STATE(1055), [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_u8] = ACTIONS(3366), - [anon_sym_i8] = ACTIONS(3366), - [anon_sym_u16] = ACTIONS(3366), - [anon_sym_i16] = ACTIONS(3366), - [anon_sym_u32] = ACTIONS(3366), - [anon_sym_i32] = ACTIONS(3366), - [anon_sym_u64] = ACTIONS(3366), - [anon_sym_i64] = ACTIONS(3366), - [anon_sym_u128] = ACTIONS(3366), - [anon_sym_i128] = ACTIONS(3366), - [anon_sym_isize] = ACTIONS(3366), - [anon_sym_usize] = ACTIONS(3366), - [anon_sym_f32] = ACTIONS(3366), - [anon_sym_f64] = ACTIONS(3366), - [anon_sym_bool] = ACTIONS(3366), - [anon_sym_str] = ACTIONS(3366), - [anon_sym_char] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_PIPE] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym__] = ACTIONS(3366), - [anon_sym_DOT_DOT] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_DASH_GT] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_gen] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_loop] = ACTIONS(3366), - [anon_sym_match] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_unsafe] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_move] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [sym_integer_literal] = ACTIONS(3368), - [aux_sym_string_literal_token1] = ACTIONS(3368), - [sym_char_literal] = ACTIONS(3368), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_crate] = ACTIONS(3366), - [sym_metavariable] = ACTIONS(3368), - [sym__raw_string_literal_start] = ACTIONS(3368), - [sym_float_literal] = ACTIONS(3368), + [aux_sym_enum_variant_list_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_u8] = ACTIONS(3368), + [anon_sym_i8] = ACTIONS(3368), + [anon_sym_u16] = ACTIONS(3368), + [anon_sym_i16] = ACTIONS(3368), + [anon_sym_u32] = ACTIONS(3368), + [anon_sym_i32] = ACTIONS(3368), + [anon_sym_u64] = ACTIONS(3368), + [anon_sym_i64] = ACTIONS(3368), + [anon_sym_u128] = ACTIONS(3368), + [anon_sym_i128] = ACTIONS(3368), + [anon_sym_isize] = ACTIONS(3368), + [anon_sym_usize] = ACTIONS(3368), + [anon_sym_f32] = ACTIONS(3368), + [anon_sym_f64] = ACTIONS(3368), + [anon_sym_bool] = ACTIONS(3368), + [anon_sym_str] = ACTIONS(3368), + [anon_sym_char] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_DOT_DOT] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(785), + [anon_sym_POUND] = ACTIONS(811), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_gen] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_loop] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_union] = ACTIONS(3368), + [anon_sym_unsafe] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_move] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(785), + [aux_sym_string_literal_token1] = ACTIONS(785), + [sym_char_literal] = ACTIONS(785), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_crate] = ACTIONS(3368), + [sym_metavariable] = ACTIONS(785), + [sym__raw_string_literal_start] = ACTIONS(785), + [sym_float_literal] = ACTIONS(785), + }, + [STATE(1054)] = { + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), + [sym_identifier] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_RBRACK] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2264), + [anon_sym_u8] = ACTIONS(2266), + [anon_sym_i8] = ACTIONS(2266), + [anon_sym_u16] = ACTIONS(2266), + [anon_sym_i16] = ACTIONS(2266), + [anon_sym_u32] = ACTIONS(2266), + [anon_sym_i32] = ACTIONS(2266), + [anon_sym_u64] = ACTIONS(2266), + [anon_sym_i64] = ACTIONS(2266), + [anon_sym_u128] = ACTIONS(2266), + [anon_sym_i128] = ACTIONS(2266), + [anon_sym_isize] = ACTIONS(2266), + [anon_sym_usize] = ACTIONS(2266), + [anon_sym_f32] = ACTIONS(2266), + [anon_sym_f64] = ACTIONS(2266), + [anon_sym_bool] = ACTIONS(2266), + [anon_sym_str] = ACTIONS(2266), + [anon_sym_char] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_DOT_DOT] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_async] = ACTIONS(2266), + [anon_sym_break] = ACTIONS(2266), + [anon_sym_const] = ACTIONS(2266), + [anon_sym_continue] = ACTIONS(2266), + [anon_sym_default] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2266), + [anon_sym_gen] = ACTIONS(2266), + [anon_sym_if] = ACTIONS(2266), + [anon_sym_loop] = ACTIONS(2266), + [anon_sym_match] = ACTIONS(2266), + [anon_sym_return] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2266), + [anon_sym_union] = ACTIONS(2266), + [anon_sym_unsafe] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2266), + [anon_sym_yield] = ACTIONS(2266), + [anon_sym_move] = ACTIONS(2266), + [anon_sym_try] = ACTIONS(2266), + [sym_integer_literal] = ACTIONS(2264), + [aux_sym_string_literal_token1] = ACTIONS(2264), + [sym_char_literal] = ACTIONS(2264), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2266), + [sym_super] = ACTIONS(2266), + [sym_crate] = ACTIONS(2266), + [sym_metavariable] = ACTIONS(2264), + [sym__raw_string_literal_start] = ACTIONS(2264), + [sym_float_literal] = ACTIONS(2264), + }, + [STATE(1055)] = { + [sym_line_comment] = STATE(1055), + [sym_block_comment] = STATE(1055), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_RBRACK] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3372), + [anon_sym_u8] = ACTIONS(3370), + [anon_sym_i8] = ACTIONS(3370), + [anon_sym_u16] = ACTIONS(3370), + [anon_sym_i16] = ACTIONS(3370), + [anon_sym_u32] = ACTIONS(3370), + [anon_sym_i32] = ACTIONS(3370), + [anon_sym_u64] = ACTIONS(3370), + [anon_sym_i64] = ACTIONS(3370), + [anon_sym_u128] = ACTIONS(3370), + [anon_sym_i128] = ACTIONS(3370), + [anon_sym_isize] = ACTIONS(3370), + [anon_sym_usize] = ACTIONS(3370), + [anon_sym_f32] = ACTIONS(3370), + [anon_sym_f64] = ACTIONS(3370), + [anon_sym_bool] = ACTIONS(3370), + [anon_sym_str] = ACTIONS(3370), + [anon_sym_char] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_PIPE] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3372), + [anon_sym_DOT_DOT] = ACTIONS(3372), + [anon_sym_COMMA] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(3372), + [anon_sym_POUND] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_default] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_gen] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_loop] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_union] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_move] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3372), + [aux_sym_string_literal_token1] = ACTIONS(3372), + [sym_char_literal] = ACTIONS(3372), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_crate] = ACTIONS(3370), + [sym_metavariable] = ACTIONS(3372), + [sym__raw_string_literal_start] = ACTIONS(3372), + [sym_float_literal] = ACTIONS(3372), + }, + [STATE(1056)] = { + [sym_line_comment] = STATE(1056), + [sym_block_comment] = STATE(1056), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3376), + [anon_sym_u8] = ACTIONS(3374), + [anon_sym_i8] = ACTIONS(3374), + [anon_sym_u16] = ACTIONS(3374), + [anon_sym_i16] = ACTIONS(3374), + [anon_sym_u32] = ACTIONS(3374), + [anon_sym_i32] = ACTIONS(3374), + [anon_sym_u64] = ACTIONS(3374), + [anon_sym_i64] = ACTIONS(3374), + [anon_sym_u128] = ACTIONS(3374), + [anon_sym_i128] = ACTIONS(3374), + [anon_sym_isize] = ACTIONS(3374), + [anon_sym_usize] = ACTIONS(3374), + [anon_sym_f32] = ACTIONS(3374), + [anon_sym_f64] = ACTIONS(3374), + [anon_sym_bool] = ACTIONS(3374), + [anon_sym_str] = ACTIONS(3374), + [anon_sym_char] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3376), + [anon_sym__] = ACTIONS(3374), + [anon_sym_DOT_DOT] = ACTIONS(3376), + [anon_sym_COLON_COLON] = ACTIONS(3376), + [anon_sym_DASH_GT] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_gen] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_loop] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_union] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_move] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [sym_integer_literal] = ACTIONS(3376), + [aux_sym_string_literal_token1] = ACTIONS(3376), + [sym_char_literal] = ACTIONS(3376), + [anon_sym_true] = ACTIONS(3374), + [anon_sym_false] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_crate] = ACTIONS(3374), + [sym_metavariable] = ACTIONS(3376), + [sym__raw_string_literal_start] = ACTIONS(3376), + [sym_float_literal] = ACTIONS(3376), + }, + [STATE(1057)] = { + [sym_line_comment] = STATE(1057), + [sym_block_comment] = STATE(1057), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_u8] = ACTIONS(1597), + [anon_sym_i8] = ACTIONS(1597), + [anon_sym_u16] = ACTIONS(1597), + [anon_sym_i16] = ACTIONS(1597), + [anon_sym_u32] = ACTIONS(1597), + [anon_sym_i32] = ACTIONS(1597), + [anon_sym_u64] = ACTIONS(1597), + [anon_sym_i64] = ACTIONS(1597), + [anon_sym_u128] = ACTIONS(1597), + [anon_sym_i128] = ACTIONS(1597), + [anon_sym_isize] = ACTIONS(1597), + [anon_sym_usize] = ACTIONS(1597), + [anon_sym_f32] = ACTIONS(1597), + [anon_sym_f64] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_str] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym__] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_DASH_GT] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1597), + [anon_sym_async] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_gen] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_loop] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [anon_sym_unsafe] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_yield] = ACTIONS(1597), + [anon_sym_move] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [aux_sym_string_literal_token1] = ACTIONS(1599), + [sym_char_literal] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_crate] = ACTIONS(1597), + [sym_metavariable] = ACTIONS(1599), + [sym__raw_string_literal_start] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1599), }, }; @@ -114869,10 +115458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(1087), 18, + ACTIONS(1169), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -114891,7 +115480,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3370), 42, + ACTIONS(3378), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114939,10 +115528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1055), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 18, + ACTIONS(2264), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -114961,7 +115550,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2614), 40, + ACTIONS(2266), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115007,10 +115596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1056), 2, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 20, + ACTIONS(3382), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115031,7 +115620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3372), 36, + ACTIONS(3380), 36, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115075,50 +115664,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1075), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1125), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1135), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(3376), 1, + ACTIONS(3384), 1, sym_identifier, - ACTIONS(3386), 1, + ACTIONS(3394), 1, sym_metavariable, - STATE(2136), 1, + STATE(2114), 1, sym_scoped_identifier, - STATE(2208), 1, + STATE(2193), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1127), 2, anon_sym_true, anon_sym_false, - STATE(1057), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1123), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3380), 3, + ACTIONS(3388), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3384), 3, + ACTIONS(3392), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2094), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3378), 7, + ACTIONS(3386), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115126,7 +115715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3382), 20, + ACTIONS(3390), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115154,50 +115743,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1075), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1125), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1135), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(3388), 1, + ACTIONS(3396), 1, sym_identifier, - ACTIONS(3398), 1, + ACTIONS(3406), 1, sym_metavariable, - STATE(2116), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2163), 1, + STATE(2213), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1127), 2, anon_sym_true, anon_sym_false, - STATE(1058), 2, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1123), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3392), 3, + ACTIONS(3400), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3396), 3, + ACTIONS(3404), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2094), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3390), 7, + ACTIONS(3398), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115205,7 +115794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3394), 20, + ACTIONS(3402), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115233,50 +115822,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1075), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1125), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1135), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(3400), 1, + ACTIONS(3408), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(3418), 1, sym_metavariable, - STATE(2109), 1, + STATE(2137), 1, sym_scoped_identifier, - STATE(2177), 1, + STATE(2202), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1127), 2, anon_sym_true, anon_sym_false, - STATE(1059), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1123), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3404), 3, + ACTIONS(3412), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3408), 3, + ACTIONS(3416), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2094), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3402), 7, + ACTIONS(3410), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115284,7 +115873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3406), 20, + ACTIONS(3414), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115310,24 +115899,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3424), 1, anon_sym_BANG, - ACTIONS(3418), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(3422), 1, + ACTIONS(3430), 1, anon_sym_move, - STATE(1454), 1, + STATE(1488), 1, sym_block, - STATE(3677), 1, + STATE(3682), 1, sym_label, - STATE(1060), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115343,7 +115932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(3420), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115377,22 +115966,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3434), 1, anon_sym_LPAREN, - ACTIONS(3430), 1, + ACTIONS(3438), 1, anon_sym_BANG, - ACTIONS(3432), 1, + ACTIONS(3440), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, + ACTIONS(3442), 1, anon_sym_LT2, - STATE(1125), 1, - sym_type_arguments, STATE(1131), 1, + sym_type_arguments, + STATE(1137), 1, sym_parameters, - STATE(1061), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 17, + ACTIONS(3436), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115410,7 +115999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 27, + ACTIONS(3432), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115443,22 +116032,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3434), 1, anon_sym_LPAREN, - ACTIONS(3432), 1, + ACTIONS(3440), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, + ACTIONS(3442), 1, anon_sym_LT2, - ACTIONS(3440), 1, + ACTIONS(3448), 1, anon_sym_BANG, - STATE(1125), 1, - sym_type_arguments, STATE(1131), 1, + sym_type_arguments, + STATE(1137), 1, sym_parameters, - STATE(1062), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, + ACTIONS(3446), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115476,7 +116065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 27, + ACTIONS(3444), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115509,22 +116098,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3434), 1, anon_sym_LPAREN, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(3432), 1, + ACTIONS(3440), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, + ACTIONS(3442), 1, anon_sym_LT2, - STATE(1125), 1, - sym_type_arguments, + ACTIONS(3448), 1, + anon_sym_BANG, STATE(1131), 1, + sym_type_arguments, + STATE(1137), 1, sym_parameters, - STATE(1063), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, + ACTIONS(3452), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115542,7 +116131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3442), 27, + ACTIONS(3450), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115570,76 +116159,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [829] = 7, + [829] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3450), 1, - anon_sym_POUND, - STATE(1412), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1064), 3, + ACTIONS(3434), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(3458), 1, + anon_sym_COLON_COLON, + STATE(1131), 1, + sym_type_arguments, + STATE(1137), 1, + sym_parameters, + STATE(1068), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3448), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3456), 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_DOT_DOT_EQ, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3446), 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__, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [897] = 5, + ACTIONS(3454), 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, + [903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 9, + ACTIONS(1051), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115649,7 +116241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1425), 40, + ACTIONS(1049), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115690,15 +116282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [961] = 5, + [967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 9, + ACTIONS(1431), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115708,7 +116300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1041), 40, + ACTIONS(1433), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115749,15 +116341,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1025] = 5, + [1031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 9, + ACTIONS(1439), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115767,7 +116359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1437), 40, + ACTIONS(1441), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115808,15 +116400,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1089] = 5, + [1095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 9, + ACTIONS(1501), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115826,7 +116418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1479), 40, + ACTIONS(1503), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115867,15 +116459,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1153] = 5, + [1159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 9, + ACTIONS(1435), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115885,7 +116477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1421), 40, + ACTIONS(1437), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115926,15 +116518,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1217] = 5, + [1223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 9, + ACTIONS(1427), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115944,7 +116536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1471), 40, + ACTIONS(1429), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115985,15 +116577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1281] = 5, + [1287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1071), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 9, + ACTIONS(1423), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116003,7 +116595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1433), 40, + ACTIONS(1425), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116044,79 +116636,76 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1345] = 10, + [1351] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - STATE(1125), 1, - sym_type_arguments, - STATE(1131), 1, - sym_parameters, - STATE(1072), 2, + ACTIONS(3464), 1, + anon_sym_POUND, + STATE(1415), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1076), 3, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, - anon_sym_PLUS, - anon_sym_STAR, + aux_sym_match_arm_repeat1, + ACTIONS(3462), 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_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(3453), 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, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3460), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, [1419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 9, + ACTIONS(1513), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116126,7 +116715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1429), 40, + ACTIONS(1515), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116172,10 +116761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 9, + ACTIONS(1055), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116185,7 +116774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1037), 40, + ACTIONS(1053), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116231,10 +116820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(2934), 9, + ACTIONS(3026), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116244,7 +116833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2936), 39, + ACTIONS(3028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116291,59 +116880,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, + ACTIONS(1605), 1, anon_sym_LBRACK, - ACTIONS(3302), 1, + ACTIONS(3356), 1, anon_sym_SQUOTE, - ACTIONS(3459), 1, + ACTIONS(3467), 1, sym_identifier, - ACTIONS(3463), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3465), 1, + ACTIONS(3473), 1, anon_sym_STAR, - ACTIONS(3469), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3471), 1, + ACTIONS(3479), 1, anon_sym_COLON_COLON, - ACTIONS(3475), 1, + ACTIONS(3483), 1, anon_sym_for, - ACTIONS(3479), 1, + ACTIONS(3487), 1, sym_metavariable, - STATE(2400), 1, + STATE(2399), 1, sym_where_predicate, - STATE(2833), 1, + STATE(2835), 1, sym_scoped_type_identifier, - STATE(3139), 1, + STATE(3133), 1, sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, + STATE(3599), 1, sym_bracketed_type, - STATE(3738), 1, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, sym_generic_type_with_turbofish, - STATE(1076), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3461), 3, + ACTIONS(3469), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3473), 3, + ACTIONS(3481), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3477), 3, + ACTIONS(3485), 3, sym_self, sym_super, sym_crate, - STATE(3405), 6, + STATE(3412), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3467), 17, + ACTIONS(3475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116361,169 +116950,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1711] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [1711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1077), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3481), 3, + ACTIONS(2080), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 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, - [1812] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_BANG, - ACTIONS(3489), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3485), 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_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3483), 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, - [1879] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3491), 1, - anon_sym_POUND, - STATE(1115), 1, - sym_attribute_item, - STATE(1079), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(759), 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, + anon_sym_POUND, sym_metavariable, - ACTIONS(3360), 34, + ACTIONS(2082), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116544,99 +116989,51 @@ 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_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + 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, - [1946] = 7, + [1774] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(1080), 2, + ACTIONS(3489), 1, + anon_sym_POUND, + STATE(1121), 1, + sym_attribute_item, + STATE(1082), 3, sym_line_comment, sym_block_comment, - ACTIONS(3496), 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(3494), 29, - anon_sym_SEMI, + aux_sym_enum_variant_list_repeat1, + ACTIONS(785), 11, 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_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, - [2013] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1081), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2620), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2622), 39, + ACTIONS(3368), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116657,38 +117054,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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - 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, - [2076] = 7, + [1841] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3496), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3498), 1, anon_sym_COLON_COLON, - STATE(1082), 2, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 17, + ACTIONS(3494), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116706,7 +117098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3502), 29, + ACTIONS(3492), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116736,77 +117128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2143] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1894), 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(1896), 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2206] = 7, + [1908] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3504), 1, anon_sym_BANG, - ACTIONS(3516), 1, + ACTIONS(3506), 1, anon_sym_COLON_COLON, STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 17, + ACTIONS(3502), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116824,7 +117158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 29, + ACTIONS(3500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116854,23 +117188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2273] = 9, + [1975] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, ACTIONS(3434), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, STATE(1132), 1, + sym_type_arguments, + STATE(1138), 1, sym_parameters, STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, + ACTIONS(3510), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116888,7 +117222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 27, + ACTIONS(3508), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116916,23 +117250,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2344] = 9, + [2046] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, ACTIONS(3434), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, STATE(1132), 1, + sym_type_arguments, + STATE(1138), 1, sym_parameters, STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, + ACTIONS(3514), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116950,7 +117284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 27, + ACTIONS(3512), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116978,23 +117312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2415] = 9, + [2117] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, - STATE(1132), 1, - sym_parameters, + ACTIONS(3520), 1, + anon_sym_BANG, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, + ACTIONS(3518), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117012,8 +117342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 27, + ACTIONS(3516), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117040,66 +117371,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2486] = 24, + anon_sym_LT2, + [2184] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2764), 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(2766), 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_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2247] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, + ACTIONS(1605), 1, anon_sym_LBRACK, - ACTIONS(3302), 1, + ACTIONS(3356), 1, anon_sym_SQUOTE, - ACTIONS(3459), 1, + ACTIONS(3467), 1, sym_identifier, - ACTIONS(3463), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3465), 1, + ACTIONS(3473), 1, anon_sym_STAR, - ACTIONS(3469), 1, + ACTIONS(3477), 1, anon_sym_AMP, - ACTIONS(3471), 1, + ACTIONS(3479), 1, anon_sym_COLON_COLON, - ACTIONS(3475), 1, + ACTIONS(3483), 1, anon_sym_for, - ACTIONS(3479), 1, + ACTIONS(3487), 1, sym_metavariable, - STATE(2577), 1, + STATE(2588), 1, sym_where_predicate, - STATE(2833), 1, + STATE(2835), 1, sym_scoped_type_identifier, - STATE(3139), 1, + STATE(3133), 1, sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, + STATE(3599), 1, sym_bracketed_type, - STATE(3738), 1, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, sym_generic_type_with_turbofish, - STATE(1088), 2, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 3, + ACTIONS(3481), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3477), 3, + ACTIONS(3485), 3, sym_self, sym_super, sym_crate, - ACTIONS(3530), 3, + ACTIONS(3524), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - STATE(3405), 6, + STATE(3412), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3467), 17, + ACTIONS(3475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117117,15 +117507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2587] = 5, + [2348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(2412), 9, + ACTIONS(2316), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117135,7 +117525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2414), 39, + ACTIONS(2318), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117175,23 +117565,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2650] = 9, + [2411] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, ACTIONS(3434), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, STATE(1132), 1, + sym_type_arguments, + STATE(1138), 1, sym_parameters, - STATE(1090), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3528), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117209,7 +117599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 27, + ACTIONS(3526), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -117237,15 +117627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2721] = 5, + [2482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 9, + ACTIONS(1920), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117255,7 +117645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2738), 39, + ACTIONS(1922), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117295,34 +117685,42 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2784] = 5, + [2545] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + ACTIONS(3434), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + anon_sym_LT2, + STATE(1132), 1, + sym_type_arguments, + STATE(1138), 1, + sym_parameters, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3532), 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(3516), 31, + ACTIONS(3530), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117339,45 +117737,47 @@ 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, - [2846] = 5, + [2616] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + ACTIONS(3538), 1, + anon_sym_BANG, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3536), 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(3489), 31, + ACTIONS(3534), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117396,28 +117796,103 @@ 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, - [2908] = 5, + anon_sym_LT2, + [2683] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(3356), 1, + anon_sym_SQUOTE, + ACTIONS(3467), 1, + sym_identifier, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, + anon_sym_STAR, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_COLON_COLON, + ACTIONS(3483), 1, + anon_sym_for, + ACTIONS(3487), 1, + sym_metavariable, + STATE(2588), 1, + sym_where_predicate, + STATE(2835), 1, + sym_scoped_type_identifier, + STATE(3133), 1, + sym_generic_type, + STATE(3599), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, + sym_generic_type_with_turbofish, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3481), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3485), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3542), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3412), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3475), 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, + [2784] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3496), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117434,7 +117909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 31, + ACTIONS(3498), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117466,17 +117941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2970] = 6, + [2846] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3540), 1, + ACTIONS(3548), 1, anon_sym_RBRACE, - STATE(1095), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 15, + ACTIONS(3546), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -117492,7 +117967,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3536), 31, + ACTIONS(3544), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117524,17 +117999,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3034] = 6, + [2910] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, + ACTIONS(3554), 1, anon_sym_RBRACE, - STATE(1096), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3544), 15, + ACTIONS(3552), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -117550,7 +118025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3542), 31, + ACTIONS(3550), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117582,15 +118057,133 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3098] = 5, + [2974] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + ACTIONS(3438), 1, + anon_sym_BANG, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(3558), 1, + anon_sym_COLON_COLON, + STATE(1517), 1, + sym_field_initializer_list, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(1483), 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(1485), 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, + [3044] = 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(3562), 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(3560), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + anon_sym_impl, + 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, + [3106] = 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(3538), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117607,7 +118200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 31, + ACTIONS(3540), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117639,15 +118232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3160] = 5, + [3168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 13, + ACTIONS(3566), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117661,7 +118254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3548), 34, + ACTIONS(3564), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117696,15 +118289,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3222] = 5, + [3230] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 13, + ACTIONS(3570), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117718,7 +118311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3552), 34, + ACTIONS(3568), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117753,29 +118346,196 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3284] = 9, + [3292] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3572), 1, anon_sym_BANG, - ACTIONS(3556), 1, + STATE(1104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3422), 16, + 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, + anon_sym_as, + ACTIONS(3420), 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, + [3360] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3578), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(3558), 1, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1100), 2, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3576), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + anon_sym_impl, + 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, + [3422] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3520), 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(3522), 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, + [3484] = 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(3504), 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, @@ -117785,12 +118545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(3506), 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, @@ -117812,91 +118573,27 @@ 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, - [3354] = 8, + [3546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_BANG, - STATE(1101), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3414), 16, - 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, - anon_sym_as, - ACTIONS(3412), 23, + ACTIONS(2970), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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, - [3422] = 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(3566), 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, + anon_sym_POUND, sym_metavariable, - ACTIONS(3564), 34, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117917,100 +118614,105 @@ 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_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_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, - [3484] = 5, + [3607] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + ACTIONS(3580), 1, + anon_sym_LBRACE, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3504), 16, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, + 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(3506), 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_SQUOTE, - sym_metavariable, - ACTIONS(3568), 34, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_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_gen, - anon_sym_impl, - 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, - [3546] = 12, + anon_sym_as, + anon_sym_else, + [3670] = 12, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(3560), 1, - anon_sym_BANG, ACTIONS(3572), 1, + anon_sym_BANG, + ACTIONS(3582), 1, anon_sym_move, - STATE(412), 1, + STATE(424), 1, sym_block, - STATE(3532), 1, + STATE(3721), 1, sym_label, - STATE(1104), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118026,7 +118728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(3420), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118051,17 +118753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [3621] = 6, + [3745] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, + ACTIONS(3584), 1, anon_sym_LBRACE, - STATE(1105), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3496), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118078,7 +118780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 29, + ACTIONS(3498), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118108,15 +118810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [3684] = 5, + [3808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 7, + ACTIONS(3588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118124,7 +118826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3576), 39, + ACTIONS(3586), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118164,17 +118866,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3745] = 6, + [3869] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(1107), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3520), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118191,7 +118893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 29, + ACTIONS(3522), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118221,15 +118923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [3808] = 5, + [3932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, + ACTIONS(3594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118245,7 +118947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3582), 31, + ACTIONS(3592), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118277,15 +118979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3869] = 5, + [3993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118301,7 +119003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 31, + ACTIONS(3596), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118333,17 +119035,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3930] = 6, + [4054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, + STATE(1116), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 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_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3544), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4115] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3600), 1, anon_sym_LBRACE, - STATE(1110), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3538), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118360,7 +119118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 29, + ACTIONS(3540), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118390,71 +119148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [3993] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1111), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 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_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3536), 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__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4054] = 5, + [4178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, + ACTIONS(1589), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118470,7 +119172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1587), 31, + ACTIONS(1591), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118502,15 +119204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4115] = 5, + [4239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3544), 15, + ACTIONS(3552), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -118526,7 +119228,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3542), 31, + ACTIONS(3550), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118558,15 +119260,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4176] = 5, + [4300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2590), 7, + ACTIONS(2268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118574,7 +119276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2592), 39, + ACTIONS(2270), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118614,15 +119316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4237] = 5, + [4361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 12, + ACTIONS(3372), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -118635,7 +119337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(3362), 34, + ACTIONS(3370), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118670,58 +119372,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4298] = 21, + [4422] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1699), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1707), 1, sym__raw_string_literal_start, - ACTIONS(3380), 1, + ACTIONS(3412), 1, anon_sym_if, - ACTIONS(3592), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3600), 1, + ACTIONS(3610), 1, sym_metavariable, - STATE(2686), 1, + STATE(2666), 1, sym_scoped_identifier, - STATE(2950), 1, + STATE(2963), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3595), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3612), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1701), 2, anon_sym_true, anon_sym_false, - ACTIONS(3378), 2, + ACTIONS(3410), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1116), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1697), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3598), 3, + ACTIONS(3608), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2393), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3594), 20, + ACTIONS(3604), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118742,17 +119444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [4391] = 6, + [4515] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - STATE(1117), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118768,7 +119470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3512), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118799,17 +119501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4454] = 6, + [4578] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, + ACTIONS(3614), 1, anon_sym_COLON_COLON, - STATE(1118), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118825,7 +119527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3512), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118856,17 +119558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4517] = 6, + [4641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3616), 1, anon_sym_COLON_COLON, - STATE(1119), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118882,7 +119584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3512), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118913,15 +119615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4580] = 5, + [4704] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118929,7 +119631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(2576), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118969,15 +119671,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4641] = 5, + [4765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118985,7 +119687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(2640), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119025,58 +119727,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4702] = 21, + [4826] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1699), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1707), 1, sym__raw_string_literal_start, - ACTIONS(3404), 1, + ACTIONS(3400), 1, anon_sym_if, - ACTIONS(3596), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3608), 1, + ACTIONS(3618), 1, sym_identifier, - ACTIONS(3614), 1, + ACTIONS(3624), 1, sym_metavariable, - STATE(2801), 1, + STATE(2784), 1, sym_scoped_identifier, - STATE(3086), 1, + STATE(3083), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3595), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3612), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1701), 2, anon_sym_true, anon_sym_false, - ACTIONS(3402), 2, + ACTIONS(3398), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1122), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1697), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3612), 3, + ACTIONS(3622), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2393), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3610), 20, + ACTIONS(3620), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119097,15 +119799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [4795] = 5, + [4919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119121,7 +119823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 31, + ACTIONS(3626), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119153,58 +119855,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4856] = 21, + [4980] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1699), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1707), 1, sym__raw_string_literal_start, - ACTIONS(3392), 1, + ACTIONS(3388), 1, anon_sym_if, - ACTIONS(3596), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3620), 1, + ACTIONS(3630), 1, sym_identifier, - ACTIONS(3626), 1, + ACTIONS(3636), 1, sym_metavariable, - STATE(2811), 1, + STATE(2799), 1, sym_scoped_identifier, - STATE(3100), 1, + STATE(3096), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3595), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3612), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1701), 2, anon_sym_true, anon_sym_false, - ACTIONS(3390), 2, + ACTIONS(3386), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1124), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1697), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3624), 3, + ACTIONS(3634), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2393), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3622), 20, + ACTIONS(3632), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119225,15 +119927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [4949] = 5, + [5073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119249,7 +119951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 31, + ACTIONS(3638), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119281,15 +119983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5010] = 5, + [5134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, + ACTIONS(3644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119305,7 +120007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3632), 31, + ACTIONS(3642), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119337,15 +120039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5071] = 5, + [5195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119361,7 +120063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 31, + ACTIONS(3382), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119393,17 +120095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5132] = 6, + [5256] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3640), 1, + ACTIONS(3650), 1, anon_sym_DASH_GT, - STATE(1128), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(3648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119419,7 +120121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 30, + ACTIONS(3646), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119450,17 +120152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5195] = 6, + [5319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3616), 1, anon_sym_COLON_COLON, - STATE(1129), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119476,7 +120178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 30, + ACTIONS(3526), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119507,17 +120209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5258] = 6, + [5382] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3616), 1, anon_sym_COLON_COLON, - STATE(1130), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119533,7 +120235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(3530), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119564,17 +120266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5321] = 6, + [5445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3646), 1, + ACTIONS(3656), 1, anon_sym_DASH_GT, - STATE(1131), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(3654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119590,7 +120292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 30, + ACTIONS(3652), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119621,17 +120323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5384] = 6, + [5508] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3652), 1, + ACTIONS(3662), 1, anon_sym_DASH_GT, - STATE(1132), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119647,7 +120349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3648), 30, + ACTIONS(3658), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119678,15 +120380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5447] = 5, + [5571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119694,7 +120396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(2584), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119734,19 +120436,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5508] = 7, + [5632] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3654), 1, + ACTIONS(3664), 1, anon_sym_else, - STATE(1539), 1, + STATE(1495), 1, sym_else_clause, - STATE(1134), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119762,7 +120464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1393), 29, + ACTIONS(1417), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119792,15 +120494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - [5573] = 5, + [5697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 7, + ACTIONS(2652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119808,7 +120510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2314), 39, + ACTIONS(2654), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119848,15 +120550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5634] = 5, + [5758] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, + ACTIONS(2668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119864,7 +120566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2322), 39, + ACTIONS(2670), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119904,15 +120606,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5695] = 5, + [5819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 7, + ACTIONS(2672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119920,7 +120622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2350), 39, + ACTIONS(2674), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119960,15 +120662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5756] = 5, + [5880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(2738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119976,7 +120678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2398), 39, + ACTIONS(2740), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120016,15 +120718,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5817] = 5, + [5941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(2750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120032,7 +120734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 39, + ACTIONS(2752), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120072,15 +120774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5878] = 5, + [6002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2408), 7, + ACTIONS(2840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120088,7 +120790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2410), 39, + ACTIONS(2842), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120128,15 +120830,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5939] = 5, + [6063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 7, + ACTIONS(2892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120144,7 +120846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2450), 39, + ACTIONS(2894), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120184,15 +120886,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6000] = 5, + [6124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2456), 7, + ACTIONS(2896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120200,7 +120902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2458), 39, + ACTIONS(2898), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120240,15 +120942,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6061] = 5, + [6185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2460), 7, + ACTIONS(2900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120256,7 +120958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2462), 39, + ACTIONS(2902), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120296,15 +120998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6122] = 5, + [6246] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2464), 7, + ACTIONS(2904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120312,7 +121014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2466), 39, + ACTIONS(2906), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120352,15 +121054,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6183] = 5, + [6307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2472), 7, + ACTIONS(2912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120368,7 +121070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2474), 39, + ACTIONS(2914), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120408,15 +121110,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6244] = 5, + [6368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 7, + ACTIONS(2920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120424,7 +121126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(2922), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120464,15 +121166,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6305] = 5, + [6429] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120480,7 +121182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 39, + ACTIONS(2932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120520,15 +121222,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6366] = 5, + [6490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, + ACTIONS(3002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120536,7 +121238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2528), 39, + ACTIONS(3004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120576,15 +121278,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6427] = 5, + [6551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2548), 7, + ACTIONS(2710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120592,7 +121294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2550), 39, + ACTIONS(2712), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120632,15 +121334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6488] = 5, + [6612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 7, + ACTIONS(2754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120648,7 +121350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2554), 39, + ACTIONS(2756), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120688,15 +121390,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6549] = 5, + [6673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3494), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120714,7 +121416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 29, + ACTIONS(3492), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120744,15 +121446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [6610] = 5, + [6734] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120768,7 +121470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 31, + ACTIONS(3666), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120800,17 +121502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6671] = 6, + [6795] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3664), 1, + ACTIONS(3674), 1, anon_sym_DASH_GT, - STATE(1153), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120826,7 +121528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 30, + ACTIONS(3670), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120857,17 +121559,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6734] = 6, + [6858] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3670), 1, + ACTIONS(3680), 1, anon_sym_DASH_GT, - STATE(1154), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120883,7 +121585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 30, + ACTIONS(3676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120914,17 +121616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6797] = 6, + [6921] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3676), 1, + ACTIONS(3686), 1, anon_sym_DASH_GT, - STATE(1155), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120940,7 +121642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 30, + ACTIONS(3682), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120971,15 +121673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6860] = 5, + [6984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2640), 7, + ACTIONS(2272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120987,7 +121689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2642), 39, + ACTIONS(2274), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121027,15 +121729,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6921] = 5, + [7045] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2644), 7, + ACTIONS(2276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121043,7 +121745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2646), 39, + ACTIONS(2278), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121083,15 +121785,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6982] = 5, + [7106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2648), 7, + ACTIONS(2280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121099,7 +121801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2650), 39, + ACTIONS(2282), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121139,15 +121841,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7043] = 5, + [7167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2652), 7, + ACTIONS(2284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121155,7 +121857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2654), 39, + ACTIONS(2286), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121195,15 +121897,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7104] = 5, + [7228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2660), 7, + ACTIONS(2288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121211,7 +121913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2662), 39, + ACTIONS(2290), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121251,15 +121953,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7165] = 5, + [7289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 7, + ACTIONS(2292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121267,7 +121969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2690), 39, + ACTIONS(2294), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121307,15 +122009,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7226] = 5, + [7350] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 7, + ACTIONS(2296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121323,7 +122025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2694), 39, + ACTIONS(2298), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121363,15 +122065,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7287] = 5, + [7411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 7, + ACTIONS(2300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121379,7 +122081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2698), 39, + ACTIONS(2302), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121419,15 +122121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7348] = 5, + [7472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121435,7 +122137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2702), 39, + ACTIONS(2306), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121475,15 +122177,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7409] = 5, + [7533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121491,7 +122193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2706), 39, + ACTIONS(2310), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121531,15 +122233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7470] = 5, + [7594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 7, + ACTIONS(2320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121547,7 +122249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2742), 39, + ACTIONS(2322), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121587,15 +122289,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7531] = 5, + [7655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 7, + ACTIONS(2324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121603,7 +122305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2746), 39, + ACTIONS(2326), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121643,15 +122345,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7592] = 5, + [7716] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 7, + ACTIONS(2328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121659,7 +122361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2750), 39, + ACTIONS(2330), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121699,15 +122401,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7653] = 5, + [7777] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 7, + ACTIONS(2332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121715,7 +122417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2754), 39, + ACTIONS(2334), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121755,15 +122457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7714] = 5, + [7838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 7, + ACTIONS(2336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121771,7 +122473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2758), 39, + ACTIONS(2338), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121811,15 +122513,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7775] = 5, + [7899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2760), 7, + ACTIONS(2340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121827,7 +122529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2762), 39, + ACTIONS(2342), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121867,15 +122569,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7836] = 5, + [7960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 7, + ACTIONS(2344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121883,7 +122585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2766), 39, + ACTIONS(2346), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121923,15 +122625,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7897] = 5, + [8021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 7, + ACTIONS(2352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121939,7 +122641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2770), 39, + ACTIONS(2354), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121979,15 +122681,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7958] = 5, + [8082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 7, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121995,7 +122697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2774), 39, + ACTIONS(2370), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122035,15 +122737,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8019] = 5, + [8143] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2776), 7, + ACTIONS(2372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122051,7 +122753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2778), 39, + ACTIONS(2374), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122091,15 +122793,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8080] = 5, + [8204] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 7, + ACTIONS(2376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122107,7 +122809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2782), 39, + ACTIONS(2378), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122147,15 +122849,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8141] = 5, + [8265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2784), 7, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122163,7 +122865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2786), 39, + ACTIONS(2382), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122203,15 +122905,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8202] = 5, + [8326] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 7, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122219,7 +122921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2790), 39, + ACTIONS(2386), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122259,15 +122961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8263] = 5, + [8387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 7, + ACTIONS(2388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122275,7 +122977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2794), 39, + ACTIONS(2390), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122315,15 +123017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8324] = 5, + [8448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2796), 7, + ACTIONS(2392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122331,7 +123033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2798), 39, + ACTIONS(2394), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122371,15 +123073,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8385] = 5, + [8509] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 7, + ACTIONS(2396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122387,7 +123089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2802), 39, + ACTIONS(2398), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122427,15 +123129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8446] = 5, + [8570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 7, + ACTIONS(2400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122443,7 +123145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2818), 39, + ACTIONS(2402), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122483,15 +123185,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8507] = 5, + [8631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122499,7 +123201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2492), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122539,15 +123241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8568] = 5, + [8692] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 7, + ACTIONS(2494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122555,7 +123257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2496), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122595,15 +123297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8629] = 5, + [8753] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(2514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122611,7 +123313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(2516), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122651,15 +123353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8690] = 5, + [8814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2994), 7, + ACTIONS(2518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122667,7 +123369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2996), 39, + ACTIONS(2520), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122707,15 +123409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8751] = 5, + [8875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122723,7 +123425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2552), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122763,15 +123465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8812] = 5, + [8936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122779,7 +123481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2556), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122819,15 +123521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8873] = 5, + [8997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 7, + ACTIONS(2558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122835,7 +123537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3044), 39, + ACTIONS(2560), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122875,15 +123577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8934] = 5, + [9058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 7, + ACTIONS(2570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122891,7 +123593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2274), 39, + ACTIONS(2572), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122931,15 +123633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8995] = 5, + [9119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122947,7 +123649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(2580), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122987,15 +123689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9056] = 5, + [9180] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123011,7 +123713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 31, + ACTIONS(3688), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123043,15 +123745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9117] = 5, + [9241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123067,7 +123769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3682), 31, + ACTIONS(3692), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123099,17 +123801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9178] = 6, + [9302] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3616), 1, anon_sym_COLON_COLON, - STATE(1194), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3510), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123125,7 +123827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 30, + ACTIONS(3508), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123156,17 +123858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9241] = 6, + [9365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3700), 1, anon_sym_DASH_GT, - STATE(1195), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, + ACTIONS(3698), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123182,7 +123884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3686), 30, + ACTIONS(3696), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123213,15 +123915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9304] = 5, + [9428] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123229,7 +123931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 39, + ACTIONS(2662), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123269,15 +123971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9365] = 5, + [9489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(2664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123285,7 +123987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 39, + ACTIONS(2666), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123325,15 +124027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9426] = 5, + [9550] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123341,7 +124043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2678), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123381,15 +124083,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9487] = 5, + [9611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 7, + ACTIONS(2680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123397,7 +124099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2250), 39, + ACTIONS(2682), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123437,15 +124139,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9548] = 5, + [9672] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 7, + ACTIONS(2684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123453,7 +124155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2254), 39, + ACTIONS(2686), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123493,15 +124195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9609] = 5, + [9733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2256), 7, + ACTIONS(2688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123509,7 +124211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2258), 39, + ACTIONS(2690), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123549,15 +124251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9670] = 5, + [9794] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2264), 7, + ACTIONS(2692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123565,7 +124267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2266), 39, + ACTIONS(2694), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123605,15 +124307,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9731] = 5, + [9855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2268), 7, + ACTIONS(2698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123621,7 +124323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2270), 39, + ACTIONS(2700), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123661,15 +124363,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9792] = 5, + [9916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2276), 7, + ACTIONS(2702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123677,7 +124379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2278), 39, + ACTIONS(2704), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123717,15 +124419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9853] = 5, + [9977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2280), 7, + ACTIONS(2706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123733,7 +124435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2282), 39, + ACTIONS(2708), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123773,15 +124475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9914] = 5, + [10038] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2288), 7, + ACTIONS(2716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123789,7 +124491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2290), 39, + ACTIONS(2718), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123829,15 +124531,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9975] = 5, + [10099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(2720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123845,7 +124547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2374), 39, + ACTIONS(2722), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123885,15 +124587,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10036] = 5, + [10160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123901,7 +124603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 39, + ACTIONS(2726), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123941,15 +124643,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10097] = 5, + [10221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123957,7 +124659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 39, + ACTIONS(2730), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123997,15 +124699,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10158] = 5, + [10282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124013,7 +124715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 39, + ACTIONS(2734), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124053,15 +124755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10219] = 5, + [10343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(2742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124069,7 +124771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(2744), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124109,15 +124811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10280] = 5, + [10404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 7, + ACTIONS(2746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124125,7 +124827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2588), 39, + ACTIONS(2748), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124165,15 +124867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10341] = 5, + [10465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2604), 7, + ACTIONS(2758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124181,7 +124883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2606), 39, + ACTIONS(2760), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124221,15 +124923,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10402] = 5, + [10526] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2632), 7, + ACTIONS(2768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124237,7 +124939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2634), 39, + ACTIONS(2770), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124277,15 +124979,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10463] = 5, + [10587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 7, + ACTIONS(2772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124293,7 +124995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2826), 39, + ACTIONS(2774), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124333,15 +125035,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10524] = 5, + [10648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124349,7 +125051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2778), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124389,15 +125091,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10585] = 5, + [10709] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124405,7 +125107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2782), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124445,15 +125147,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10646] = 5, + [10770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(2784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124461,7 +125163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1836), 39, + ACTIONS(2786), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124501,15 +125203,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10707] = 5, + [10831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124517,7 +125219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2790), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124557,15 +125259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10768] = 5, + [10892] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124573,7 +125275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2794), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124613,15 +125315,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10829] = 5, + [10953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124629,7 +125331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2798), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124669,15 +125371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10890] = 5, + [11014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(2800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124685,7 +125387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(2802), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124725,15 +125427,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10951] = 5, + [11075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(2804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124741,7 +125443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2064), 39, + ACTIONS(2806), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124781,15 +125483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11012] = 5, + [11136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(2808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124797,7 +125499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 39, + ACTIONS(2810), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124837,15 +125539,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11073] = 5, + [11197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(2812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124853,7 +125555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 39, + ACTIONS(2814), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124893,15 +125595,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11134] = 5, + [11258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(2816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124909,7 +125611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 39, + ACTIONS(2818), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124949,15 +125651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11195] = 5, + [11319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124965,7 +125667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 39, + ACTIONS(2822), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125005,15 +125707,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11256] = 5, + [11380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(2824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125021,7 +125723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 39, + ACTIONS(2826), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125061,15 +125763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11317] = 5, + [11441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125077,7 +125779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 39, + ACTIONS(2830), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125117,15 +125819,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11378] = 5, + [11502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125133,7 +125835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 39, + ACTIONS(2834), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125173,15 +125875,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11439] = 5, + [11563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125189,7 +125891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 39, + ACTIONS(2838), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125229,15 +125931,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11500] = 5, + [11624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125245,7 +125947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 39, + ACTIONS(2846), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125285,15 +125987,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11561] = 5, + [11685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125301,7 +126003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 39, + ACTIONS(2850), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125341,15 +126043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11622] = 5, + [11746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125357,7 +126059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 39, + ACTIONS(2854), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125397,15 +126099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11683] = 5, + [11807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125413,7 +126115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 39, + ACTIONS(2858), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125453,15 +126155,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11744] = 5, + [11868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125469,7 +126171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 39, + ACTIONS(2862), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125509,15 +126211,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11805] = 5, + [11929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125525,7 +126227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 39, + ACTIONS(2866), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125565,15 +126267,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11866] = 5, + [11990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(2868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125581,7 +126283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 39, + ACTIONS(2870), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125621,15 +126323,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11927] = 5, + [12051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125637,7 +126339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 39, + ACTIONS(2874), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125677,15 +126379,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11988] = 5, + [12112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125693,7 +126395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 39, + ACTIONS(2878), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125733,15 +126435,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12049] = 5, + [12173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125749,7 +126451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(2882), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125789,15 +126491,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12110] = 5, + [12234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125805,7 +126507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(2886), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125845,15 +126547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12171] = 5, + [12295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(2888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125861,7 +126563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(2890), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125901,15 +126603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12232] = 5, + [12356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 7, + ACTIONS(2908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125917,7 +126619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2246), 39, + ACTIONS(2910), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125957,15 +126659,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12293] = 5, + [12417] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 7, + ACTIONS(2916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125973,7 +126675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2262), 39, + ACTIONS(2918), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126013,15 +126715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12354] = 5, + [12478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, + ACTIONS(3704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126037,7 +126739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 31, + ACTIONS(3702), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126069,15 +126771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12415] = 5, + [12539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126093,7 +126795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3696), 31, + ACTIONS(3706), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126125,71 +126827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12476] = 5, + [12600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2284), 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(2286), 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12537] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126197,7 +126843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2294), 39, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126237,15 +126883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12598] = 5, + [12661] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 7, + ACTIONS(2934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126253,7 +126899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2298), 39, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126293,15 +126939,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12659] = 5, + [12722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 7, + ACTIONS(2938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126309,7 +126955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2302), 39, + ACTIONS(2940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126349,15 +126995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12720] = 5, + [12783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 7, + ACTIONS(2942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126365,7 +127011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2306), 39, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126405,15 +127051,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12781] = 5, + [12844] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126421,7 +127067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2310), 39, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126461,15 +127107,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12842] = 5, + [12905] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 7, + ACTIONS(2950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126477,7 +127123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2318), 39, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126517,15 +127163,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12903] = 5, + [12966] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 7, + ACTIONS(2954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126533,7 +127179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2326), 39, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126573,15 +127219,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12964] = 5, + [13027] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126589,7 +127235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2330), 39, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126629,15 +127275,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13025] = 5, + [13088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 7, + ACTIONS(2962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126645,7 +127291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2334), 39, + ACTIONS(2964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126685,15 +127331,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13086] = 5, + [13149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126701,7 +127347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2338), 39, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126741,15 +127387,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13147] = 5, + [13210] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 7, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126757,7 +127403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2342), 39, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126797,15 +127443,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13208] = 5, + [13271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 7, + ACTIONS(2982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126813,7 +127459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2346), 39, + ACTIONS(2984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126853,15 +127499,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13269] = 5, + [13332] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 7, + ACTIONS(2986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126869,7 +127515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2354), 39, + ACTIONS(2988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126909,15 +127555,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13330] = 5, + [13393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 7, + ACTIONS(2990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126925,7 +127571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2358), 39, + ACTIONS(2992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126965,15 +127611,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13391] = 5, + [13454] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 7, + ACTIONS(2994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126981,7 +127627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2362), 39, + ACTIONS(2996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127021,15 +127667,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13452] = 5, + [13515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(2998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127037,7 +127683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2366), 39, + ACTIONS(3000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127077,15 +127723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13513] = 5, + [13576] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(3006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127093,7 +127739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2370), 39, + ACTIONS(3008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127133,15 +127779,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13574] = 5, + [13637] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(3010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127149,7 +127795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2378), 39, + ACTIONS(3012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127189,15 +127835,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13635] = 5, + [13698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(3018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127205,7 +127851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 39, + ACTIONS(3020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127245,15 +127891,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13696] = 5, + [13759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, + ACTIONS(3030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127261,7 +127907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2406), 39, + ACTIONS(3032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127301,15 +127947,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13757] = 5, + [13820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2416), 7, + ACTIONS(3034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127317,7 +127963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2418), 39, + ACTIONS(3036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127357,15 +128003,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13818] = 5, + [13881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 7, + ACTIONS(3038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127373,7 +128019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2422), 39, + ACTIONS(3040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127413,15 +128059,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13879] = 5, + [13942] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 7, + ACTIONS(3042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +128075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2426), 39, + ACTIONS(3044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127469,12 +128115,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13940] = 5, + [14003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, ACTIONS(3046), 7, @@ -127525,15 +128171,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14001] = 5, + [14064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(2530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127541,7 +128187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2434), 39, + ACTIONS(2532), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127581,15 +128227,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14062] = 5, + [14125] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127597,7 +128243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2438), 39, + ACTIONS(1910), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127637,15 +128283,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14123] = 5, + [14186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127653,7 +128299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2442), 39, + ACTIONS(1820), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127693,72 +128339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14184] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3700), 1, - anon_sym_LBRACE, - STATE(1276), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3498), 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(3500), 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, [14247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127766,7 +128355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2454), 39, + ACTIONS(2314), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127811,10 +128400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2468), 7, + ACTIONS(2348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127822,7 +128411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2470), 39, + ACTIONS(2350), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127867,10 +128456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127878,7 +128467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 39, + ACTIONS(2358), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127923,10 +128512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127934,7 +128523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(2362), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127979,10 +128568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(2364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127990,7 +128579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 39, + ACTIONS(2366), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128035,10 +128624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(2498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128046,7 +128635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2490), 39, + ACTIONS(2500), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128091,10 +128680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128102,7 +128691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2494), 39, + ACTIONS(2504), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128147,10 +128736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128158,7 +128747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2498), 39, + ACTIONS(2508), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128203,10 +128792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128214,7 +128803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2502), 39, + ACTIONS(2512), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128259,10 +128848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(2522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128270,7 +128859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2510), 39, + ACTIONS(2524), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128315,10 +128904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128326,7 +128915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 39, + ACTIONS(2528), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128371,10 +128960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(3050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128382,7 +128971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 39, + ACTIONS(3052), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128427,7 +129016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, ACTIONS(2534), 7, @@ -128483,7 +129072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, ACTIONS(2538), 7, @@ -128539,10 +129128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2556), 7, + ACTIONS(2542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128550,7 +129139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2558), 39, + ACTIONS(2544), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128595,10 +129184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2562), 7, + ACTIONS(2546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128606,7 +129195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2564), 39, + ACTIONS(2548), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128651,10 +129240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2566), 7, + ACTIONS(2562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128662,7 +129251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2568), 39, + ACTIONS(2564), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128707,10 +129296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128718,7 +129307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2576), 39, + ACTIONS(2568), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128763,10 +129352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2578), 7, + ACTIONS(2648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128774,7 +129363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2580), 39, + ACTIONS(2650), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128819,10 +129408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2582), 7, + ACTIONS(2656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128830,7 +129419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2584), 39, + ACTIONS(2658), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128875,10 +129464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 7, + ACTIONS(3014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128886,7 +129475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2610), 39, + ACTIONS(3016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128931,10 +129520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(3022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128942,7 +129531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2618), 39, + ACTIONS(3024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128987,10 +129576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(3712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129006,7 +129595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 31, + ACTIONS(3710), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129043,10 +129632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129062,7 +129651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3706), 31, + ACTIONS(3714), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129099,10 +129688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129110,7 +129699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2626), 39, + ACTIONS(1826), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129155,10 +129744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2628), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129166,7 +129755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2630), 39, + ACTIONS(1830), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129211,10 +129800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129222,7 +129811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2638), 39, + ACTIONS(1834), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129267,10 +129856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2656), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129278,7 +129867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2658), 39, + ACTIONS(1838), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129323,10 +129912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129334,7 +129923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2666), 39, + ACTIONS(1842), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129379,10 +129968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129390,7 +129979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2670), 39, + ACTIONS(1846), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129435,10 +130024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 7, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129446,7 +130035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2674), 39, + ACTIONS(1850), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129491,10 +130080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129502,7 +130091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2678), 39, + ACTIONS(1854), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129547,10 +130136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129558,7 +130147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2682), 39, + ACTIONS(1858), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129603,10 +130192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129614,7 +130203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2686), 39, + ACTIONS(1862), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129659,10 +130248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2708), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129670,7 +130259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2710), 39, + ACTIONS(1866), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129715,10 +130304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129726,7 +130315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2714), 39, + ACTIONS(1870), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129771,10 +130360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129782,7 +130371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2718), 39, + ACTIONS(1874), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129827,10 +130416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129838,7 +130427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2722), 39, + ACTIONS(1878), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129883,10 +130472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129894,7 +130483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2726), 39, + ACTIONS(1882), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129939,10 +130528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129950,7 +130539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2730), 39, + ACTIONS(1886), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129995,10 +130584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130006,7 +130595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2734), 39, + ACTIONS(1890), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130051,10 +130640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130062,7 +130651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2806), 39, + ACTIONS(1894), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130107,10 +130696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130118,7 +130707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2810), 39, + ACTIONS(1898), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130163,10 +130752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130174,7 +130763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2814), 39, + ACTIONS(1902), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130219,10 +130808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130230,7 +130819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2822), 39, + ACTIONS(1906), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130275,10 +130864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130286,7 +130875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(1914), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130331,10 +130920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130342,7 +130931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(1918), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130387,10 +130976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130398,7 +130987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(1926), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130443,10 +131032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2942), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130454,7 +131043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2944), 39, + ACTIONS(1930), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130499,10 +131088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2946), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130510,7 +131099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(1934), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130555,10 +131144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2950), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130566,7 +131155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2952), 39, + ACTIONS(1938), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130611,10 +131200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2954), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130622,7 +131211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2956), 39, + ACTIONS(1942), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130667,10 +131256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2958), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130678,7 +131267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(1946), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130723,10 +131312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130734,7 +131323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2964), 39, + ACTIONS(1950), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130779,10 +131368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130790,7 +131379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2968), 39, + ACTIONS(1954), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130835,10 +131424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130846,7 +131435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(1958), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130891,10 +131480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130902,7 +131491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(1962), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130947,10 +131536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130958,7 +131547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(1966), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131003,10 +131592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131014,7 +131603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(1970), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131059,10 +131648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131070,7 +131659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(1974), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131115,10 +131704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131126,7 +131715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(1978), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131171,10 +131760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131182,7 +131771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(1982), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131227,10 +131816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131238,7 +131827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(1986), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131283,10 +131872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(3018), 7, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131294,7 +131883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3020), 39, + ACTIONS(1990), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131339,10 +131928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131350,7 +131939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(1994), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131395,10 +131984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131406,7 +131995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(1998), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131451,10 +132040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131462,7 +132051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(2002), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131507,10 +132096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(3038), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131518,7 +132107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3040), 39, + ACTIONS(2006), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131563,10 +132152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(2008), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131574,7 +132163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 39, + ACTIONS(2010), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131619,10 +132208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2428), 7, + ACTIONS(2012), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131630,7 +132219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2430), 39, + ACTIONS(2014), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131675,10 +132264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2016), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131686,7 +132275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 39, + ACTIONS(2018), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131731,10 +132320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131742,7 +132331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 39, + ACTIONS(2022), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131787,10 +132376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(2024), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131798,7 +132387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(2026), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131843,10 +132432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(2028), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131854,7 +132443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(2030), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131899,10 +132488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(2032), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131910,7 +132499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(2034), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131955,10 +132544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(3712), 15, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131974,7 +132563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3710), 31, + ACTIONS(3718), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132011,10 +132600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3724), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132030,7 +132619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3714), 31, + ACTIONS(3722), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132067,10 +132656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132078,7 +132667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(2038), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132123,10 +132712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132134,7 +132723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2042), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132179,10 +132768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2044), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132190,7 +132779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(2046), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132235,10 +132824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2048), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132246,7 +132835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(2050), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132291,10 +132880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132302,7 +132891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(2054), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132347,10 +132936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132358,7 +132947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(2058), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132403,10 +132992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(2060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132414,7 +133003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(2062), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132459,10 +133048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132470,7 +133059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(2066), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132515,10 +133104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132526,7 +133115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2070), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132571,10 +133160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132582,7 +133171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2074), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132627,10 +133216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132638,7 +133227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2078), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132683,10 +133272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132694,7 +133283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2086), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132739,10 +133328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132750,7 +133339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2090), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132795,10 +133384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2092), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132806,7 +133395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2094), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132851,10 +133440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(2096), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132862,7 +133451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 39, + ACTIONS(2098), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132907,10 +133496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(2100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132918,7 +133507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(2102), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132963,10 +133552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132974,7 +133563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2106), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133019,10 +133608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(2108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133030,7 +133619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(2110), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133075,10 +133664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(2112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133086,7 +133675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(2114), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133131,10 +133720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(2116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133142,7 +133731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(2118), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133187,10 +133776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(2120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133198,7 +133787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(2122), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133243,10 +133832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(2124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133254,7 +133843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(2126), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133299,10 +133888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(2128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133310,7 +133899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(2130), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133355,10 +133944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133366,7 +133955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2134), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133411,10 +134000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(2136), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133422,7 +134011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(2138), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133467,10 +134056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133478,7 +134067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(2142), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133523,10 +134112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133534,7 +134123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(2146), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133579,10 +134168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133590,7 +134179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(2150), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133635,10 +134224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(2152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133646,7 +134235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 39, + ACTIONS(2154), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133691,10 +134280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(2156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133702,7 +134291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(2158), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133747,10 +134336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(2160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133758,7 +134347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(2162), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133803,10 +134392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(2164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133814,7 +134403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(2166), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133859,10 +134448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(2168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133870,7 +134459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 39, + ACTIONS(2170), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133915,10 +134504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133926,7 +134515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(2174), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133971,10 +134560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(2176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133982,7 +134571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(2178), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134027,10 +134616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134038,7 +134627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(2182), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134083,10 +134672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134094,7 +134683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(2186), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134139,10 +134728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(2188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134150,7 +134739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(2190), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134195,10 +134784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(2192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134206,7 +134795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(2194), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134251,10 +134840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(2196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134262,7 +134851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 39, + ACTIONS(2198), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134307,10 +134896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(2200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134318,7 +134907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(2202), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134363,10 +134952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(2204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134374,7 +134963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 39, + ACTIONS(2206), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134419,10 +135008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(2208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134430,7 +135019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 39, + ACTIONS(2210), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134475,10 +135064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134486,7 +135075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(2214), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134531,122 +135120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2034), 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(2036), 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21689] = 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(2038), 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(2040), 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21750] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(2216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134654,7 +135131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 39, + ACTIONS(2218), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134694,15 +135171,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21811] = 5, + [21689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(2220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134710,7 +135187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 39, + ACTIONS(2222), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134750,15 +135227,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21872] = 5, + [21750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(2224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134766,7 +135243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 39, + ACTIONS(2226), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134806,15 +135283,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21933] = 5, + [21811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(2228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134822,7 +135299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 39, + ACTIONS(2230), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134862,15 +135339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21994] = 5, + [21872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(2232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134878,7 +135355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 39, + ACTIONS(2234), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134918,15 +135395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22055] = 5, + [21933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(2236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134934,7 +135411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 39, + ACTIONS(2238), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134974,15 +135451,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22116] = 5, + [21994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(2240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134990,7 +135467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2072), 39, + ACTIONS(2242), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135030,15 +135507,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22177] = 5, + [22055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(2244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135046,7 +135523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 39, + ACTIONS(2246), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135086,15 +135563,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22238] = 5, + [22116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, + ACTIONS(2248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135102,7 +135579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2080), 39, + ACTIONS(2250), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135142,86 +135619,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22299] = 7, + [22177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1428), 1, - sym_label, - STATE(1409), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 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(3718), 29, + ACTIONS(2252), 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_as, - anon_sym_else, - [22364] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1410), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2612), 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(2614), 34, + ACTIONS(2254), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135242,45 +135656,42 @@ 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_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + 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, - [22425] = 5, + [22238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2256), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2116), 31, + ACTIONS(2258), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135298,45 +135709,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_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, - [22486] = 5, + [22299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(2264), 12, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3722), 31, + ACTIONS(2266), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135354,29 +135770,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, anon_sym_gen, + anon_sym_impl, + anon_sym_pub, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22547] = 5, + [22360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(2660), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -135392,7 +135811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3726), 31, + ACTIONS(2662), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135424,63 +135843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22608] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1414), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2612), 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(2614), 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22669] = 5, + [22421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -135488,7 +135851,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 15, + ACTIONS(3728), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -135504,7 +135867,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2614), 31, + ACTIONS(3726), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135533,196 +135896,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - sym_self, - sym_super, - sym_crate, - [22730] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3732), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_arguments, - STATE(1416), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3734), 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(3730), 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, - [22795] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_move, - STATE(484), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(1417), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 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(3412), 24, - 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_COMMA, - anon_sym_as, - [22870] = 6, + sym_self, + sym_super, + sym_crate, + [22482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3738), 1, - anon_sym_COLON_COLON, - STATE(1418), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3732), 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(1451), 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, - [22933] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3730), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(2444), 7, + ACTIONS(2264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135730,7 +135971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2446), 39, + ACTIONS(2266), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135770,297 +136011,75 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22994] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - ACTIONS(3744), 1, - anon_sym_move, - STATE(1779), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(1420), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 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(3412), 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, - [23068] = 5, + [22604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 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(3746), 30, - anon_sym_SEMI, + ACTIONS(2264), 15, + sym__raw_string_literal_start, + sym_float_literal, 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, - [23128] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1422), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3752), 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(3750), 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, - [23188] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1423), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3756), 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_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2266), 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__, anon_sym_DOT_DOT, - ACTIONS(3754), 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, - [23248] = 5, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22665] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(907), 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(909), 30, - anon_sym_SEMI, + ACTIONS(3736), 1, 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, - [23308] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1527), 1, + sym_arguments, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(3738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136076,9 +136095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3758), 30, + ACTIONS(3734), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -136107,70 +136125,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23368] = 5, + [22730] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 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, - 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(3762), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1373), 1, 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, + ACTIONS(3424), 1, + anon_sym_BANG, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3428), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23428] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1427), 2, + ACTIONS(3740), 1, + anon_sym_move, + STATE(490), 1, + sym_block, + STATE(3746), 1, + sym_label, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136186,13 +136163,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3766), 30, - anon_sym_SEMI, + ACTIONS(3420), 24, 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, @@ -136214,73 +136187,20 @@ 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, - [23488] = 5, + [22805] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 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), 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, + ACTIONS(3428), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23548] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1494), 1, + sym_label, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(3744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136296,7 +136216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 30, + ACTIONS(3742), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136324,21 +136244,19 @@ 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, - [23608] = 6, + [22870] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LBRACE, + ACTIONS(3746), 1, anon_sym_COLON_COLON, - STATE(1430), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136354,12 +136272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 28, + ACTIONS(1485), 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, @@ -136381,17 +136300,74 @@ 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, - [23670] = 5, + [22933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(2974), 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(2976), 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_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22994] = 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(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136407,7 +136383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 30, + ACTIONS(1497), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136438,15 +136414,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23730] = 5, + [23054] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3752), 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(3748), 27, + 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_else, + [23122] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136462,7 +136497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 30, + ACTIONS(1491), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136493,15 +136528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23790] = 5, + [23182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136517,7 +136552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 30, + ACTIONS(3760), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136548,21 +136583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23850] = 8, + [23242] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1434), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 14, + ACTIONS(3766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136576,14 +136605,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(3788), 28, + ACTIONS(3764), 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, @@ -136606,15 +136638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23916] = 5, + [23302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(1503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136630,7 +136662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 30, + ACTIONS(1501), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136661,15 +136693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23976] = 5, + [23362] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 15, + ACTIONS(3770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136685,7 +136717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1515), 30, + ACTIONS(3768), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136716,15 +136748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24036] = 5, + [23422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136740,7 +136772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 30, + ACTIONS(3772), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136771,21 +136803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24096] = 8, + [23482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1438), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 14, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136799,14 +136825,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(3806), 28, + ACTIONS(3776), 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, @@ -136829,15 +136858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24162] = 5, + [23542] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136853,7 +136882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 30, + ACTIONS(3780), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136884,15 +136913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24222] = 5, + [23602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(1007), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136908,7 +136937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 30, + ACTIONS(1009), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136939,15 +136968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24282] = 5, + [23662] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(3786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136963,7 +136992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 30, + ACTIONS(3784), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136994,15 +137023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24342] = 5, + [23722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137018,7 +137047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 30, + ACTIONS(3788), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137049,15 +137078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24402] = 5, + [23782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137073,7 +137102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 30, + ACTIONS(1447), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137104,15 +137133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24462] = 5, + [23842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137128,7 +137157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 30, + ACTIONS(3792), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137159,15 +137188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24522] = 5, + [23902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137183,7 +137212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 30, + ACTIONS(3796), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137214,15 +137243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24582] = 5, + [23962] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137238,7 +137267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 30, + ACTIONS(3800), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137269,21 +137298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24642] = 8, + [24022] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1447), 2, + ACTIONS(3806), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 14, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137297,14 +137323,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(3834), 28, + ACTIONS(3804), 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, @@ -137324,18 +137352,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, - [24708] = 5, + [24084] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(1529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137351,7 +137378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 30, + ACTIONS(1527), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137382,15 +137409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24768] = 5, + [24144] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137406,7 +137433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(1517), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137437,15 +137464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24828] = 5, + [24204] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137461,7 +137488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3842), 30, + ACTIONS(3804), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137492,15 +137519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24888] = 5, + [24264] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 15, + ACTIONS(3812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137516,7 +137543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1535), 30, + ACTIONS(3810), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137547,15 +137574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24948] = 5, + [24324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137571,7 +137598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 30, + ACTIONS(3814), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137602,15 +137629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25008] = 5, + [24384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(3820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137626,7 +137653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 30, + ACTIONS(3818), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137657,15 +137684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25068] = 5, + [24444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137681,7 +137708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 30, + ACTIONS(3822), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137712,15 +137739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25128] = 5, + [24504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(1457), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137736,7 +137763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3846), 30, + ACTIONS(1455), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137767,15 +137794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25188] = 5, + [24564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137791,7 +137818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(3826), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137822,15 +137849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25248] = 5, + [24624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137846,7 +137873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 30, + ACTIONS(3830), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137877,15 +137904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25308] = 5, + [24684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(3510), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137901,7 +137928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 30, + ACTIONS(3508), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137932,15 +137959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25368] = 5, + [24744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3836), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137956,7 +137983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 30, + ACTIONS(3834), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137987,15 +138014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25428] = 5, + [24804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138011,7 +138038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 30, + ACTIONS(3838), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138042,15 +138069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25488] = 5, + [24864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138066,7 +138093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, + ACTIONS(1465), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138097,15 +138124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25548] = 5, + [24924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138121,7 +138148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 30, + ACTIONS(3842), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138152,15 +138179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25608] = 5, + [24984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138176,7 +138203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 30, + ACTIONS(3846), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138207,15 +138234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25668] = 5, + [25044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138231,7 +138258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3850), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138262,15 +138289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25728] = 5, + [25104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138286,7 +138313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 30, + ACTIONS(3854), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138317,15 +138344,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25788] = 5, + [25164] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(3860), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138339,17 +138372,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(3874), 30, + ACTIONS(3858), 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, @@ -138372,15 +138402,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25848] = 5, + [25230] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(3864), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138394,17 +138430,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(1043), 30, + ACTIONS(3862), 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, @@ -138427,15 +138460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25908] = 5, + [25296] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 15, + ACTIONS(1053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138451,7 +138484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1435), 30, + ACTIONS(1055), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138482,15 +138515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25968] = 5, + [25356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138506,7 +138539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3878), 30, + ACTIONS(1471), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138537,15 +138570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26028] = 5, + [25416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138561,7 +138594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 30, + ACTIONS(1513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138592,15 +138625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26088] = 5, + [25476] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3868), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138614,17 +138653,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(1485), 30, + ACTIONS(3866), 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, @@ -138647,15 +138683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26148] = 5, + [25542] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138671,7 +138707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3870), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138702,15 +138738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26208] = 5, + [25602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(1433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138726,7 +138762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 30, + ACTIONS(1431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138757,15 +138793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26268] = 5, + [25662] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138781,7 +138817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 30, + ACTIONS(1531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138812,15 +138848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26328] = 5, + [25722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(1537), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138836,7 +138872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, + ACTIONS(1535), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138867,15 +138903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26388] = 5, + [25782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138891,7 +138927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 30, + ACTIONS(3874), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138922,15 +138958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26448] = 5, + [25842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138946,7 +138982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, + ACTIONS(1427), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138977,15 +139013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26508] = 5, + [25902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139001,7 +139037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3878), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139032,15 +139068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26568] = 5, + [25962] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139056,7 +139092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 30, + ACTIONS(3882), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139087,15 +139123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26628] = 5, + [26022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139111,7 +139147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(3886), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139142,15 +139178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26688] = 5, + [26082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139166,7 +139202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 30, + ACTIONS(3890), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139197,88 +139233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26748] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [26142] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1482), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 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, - [26844] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139294,7 +139257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(3894), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139325,15 +139288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26904] = 5, + [26202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139349,7 +139312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(921), 30, + ACTIONS(3898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139380,15 +139343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26964] = 5, + [26262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139404,7 +139367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(3902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139435,15 +139398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27024] = 5, + [26322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139459,7 +139422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, + ACTIONS(1443), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139490,15 +139453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27084] = 5, + [26382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139514,7 +139477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139545,18 +139508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27144] = 6, + [26442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1488), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139572,12 +139532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 28, + ACTIONS(3906), 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, @@ -139599,17 +139560,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, - [27206] = 5, + [26502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139625,7 +139587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3512), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139656,15 +139618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27266] = 5, + [26562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139680,7 +139642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139711,15 +139673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27326] = 5, + [26622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(1441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139735,7 +139697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 30, + ACTIONS(1439), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139766,15 +139728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27386] = 5, + [26682] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139790,7 +139752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 30, + ACTIONS(1051), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139821,15 +139783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27446] = 5, + [26742] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139845,7 +139807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 30, + ACTIONS(3914), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139876,15 +139838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27506] = 5, + [26802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139900,7 +139862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 30, + ACTIONS(1509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139931,23 +139893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27566] = 9, + [26862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1495), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139961,14 +139915,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(3920), 27, + ACTIONS(1539), 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, @@ -139989,16 +139946,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, - [27634] = 5, + [26922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(3920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140014,7 +139972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 30, + ACTIONS(3918), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140045,15 +140003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27694] = 5, + [26982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(3924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140069,7 +140027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 30, + ACTIONS(3922), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140100,15 +140058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27754] = 5, + [27042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140124,7 +140082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 30, + ACTIONS(3926), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140155,15 +140113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27814] = 5, + [27102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140179,7 +140137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1473), 30, + ACTIONS(1475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140210,15 +140168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27874] = 5, + [27162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140234,7 +140192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 30, + ACTIONS(3930), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140265,15 +140223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27934] = 5, + [27222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140289,7 +140247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 30, + ACTIONS(3934), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140320,15 +140278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27994] = 5, + [27282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140344,7 +140302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 30, + ACTIONS(1459), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140375,15 +140333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28054] = 5, + [27342] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(1453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140399,7 +140357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 30, + ACTIONS(1451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140430,15 +140388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28114] = 5, + [27402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140454,7 +140412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 30, + ACTIONS(3938), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140485,15 +140443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28174] = 5, + [27462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1505), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3948), 15, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140509,7 +140467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3946), 30, + ACTIONS(3942), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140540,15 +140498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28234] = 5, + [27522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(1425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140564,7 +140522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 30, + ACTIONS(1423), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140595,15 +140553,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28294] = 5, + [27582] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + ACTIONS(1605), 1, + anon_sym_LBRACK, + ACTIONS(3356), 1, + anon_sym_SQUOTE, + ACTIONS(3467), 1, + sym_identifier, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, + anon_sym_STAR, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_COLON_COLON, + ACTIONS(3483), 1, + anon_sym_for, + ACTIONS(3487), 1, + sym_metavariable, + STATE(2588), 1, + sym_where_predicate, + STATE(2835), 1, + sym_scoped_type_identifier, + STATE(3133), 1, + sym_generic_type, + STATE(3599), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, + sym_generic_type_with_turbofish, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(3481), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3485), 3, + sym_self, + sym_super, + sym_crate, + STATE(3412), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3475), 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, + [27678] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140619,7 +140650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 30, + ACTIONS(1543), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140650,19 +140681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28354] = 7, + [27738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - STATE(1508), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1029), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140678,12 +140705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(1031), 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, @@ -140705,17 +140733,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, - [28418] = 5, + [27798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(3948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140731,7 +140760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3946), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140762,15 +140791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28478] = 5, + [27858] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + ACTIONS(3424), 1, + anon_sym_BANG, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140786,13 +140819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 30, + ACTIONS(3420), 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, @@ -140814,18 +140846,20 @@ 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, - [28538] = 5, + [27922] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + ACTIONS(3950), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140841,13 +140875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3804), 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, @@ -140869,18 +140902,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, - [28598] = 5, + [27984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140896,7 +140928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 30, + ACTIONS(999), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140927,15 +140959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28658] = 5, + [28044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, + ACTIONS(3954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140951,7 +140983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(913), 30, + ACTIONS(3952), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140982,15 +141014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28718] = 5, + [28104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(3958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141006,7 +141038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 30, + ACTIONS(3956), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141037,15 +141069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28778] = 5, + [28164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141061,7 +141093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3960), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141092,15 +141124,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28838] = 5, + [28224] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3964), 1, + anon_sym_BANG, + ACTIONS(3966), 1, + anon_sym_COLON_COLON, + ACTIONS(3968), 1, + anon_sym_move, + STATE(1779), 1, + sym_block, + STATE(3747), 1, + sym_label, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141116,14 +141162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 30, - anon_sym_SEMI, + ACTIONS(3420), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141143,19 +141185,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_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28898] = 5, + [28298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141171,7 +141210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 30, + ACTIONS(3970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141202,15 +141241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28958] = 5, + [28358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141226,7 +141265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141257,15 +141296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29018] = 5, + [28418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141281,7 +141320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 30, + ACTIONS(3974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141312,15 +141351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29078] = 5, + [28478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141336,7 +141375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141367,15 +141406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29138] = 5, + [28538] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141391,7 +141430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3990), 30, + ACTIONS(3526), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141422,15 +141461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29198] = 5, + [28598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(1017), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141446,7 +141485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3994), 30, + ACTIONS(1019), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141477,15 +141516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29258] = 5, + [28658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141501,7 +141540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3998), 30, + ACTIONS(3978), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141532,15 +141571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29318] = 5, + [28718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141556,7 +141595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141587,15 +141626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29378] = 5, + [28778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141611,7 +141650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4002), 30, + ACTIONS(3982), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141642,15 +141681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29438] = 5, + [28838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141666,7 +141705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 30, + ACTIONS(3986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141697,15 +141736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29498] = 5, + [28898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(3532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141721,7 +141760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 30, + ACTIONS(3530), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141752,15 +141791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29558] = 5, + [28958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141776,7 +141815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 30, + ACTIONS(3990), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141807,15 +141846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29618] = 5, + [29018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141831,7 +141870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 30, + ACTIONS(3994), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141862,15 +141901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29678] = 5, + [29078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141886,7 +141925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4022), 30, + ACTIONS(3998), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141917,19 +141956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29738] = 7, + [29138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - STATE(1531), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141945,12 +141980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(4002), 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, @@ -141972,17 +142008,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, - [29802] = 5, + [29198] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141998,7 +142035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(4006), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142029,15 +142066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29862] = 5, + [29258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(915), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142053,7 +142090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(917), 30, + ACTIONS(4010), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142084,15 +142121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29922] = 5, + [29318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 15, + ACTIONS(3738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142108,7 +142145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4028), 30, + ACTIONS(3734), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142139,15 +142176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29982] = 5, + [29378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4034), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142163,7 +142200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4032), 30, + ACTIONS(4014), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142194,15 +142231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30042] = 5, + [29438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(1437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142218,7 +142255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 30, + ACTIONS(1435), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142249,15 +142286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30102] = 5, + [29498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142273,7 +142310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4036), 30, + ACTIONS(4018), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142304,21 +142341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30162] = 8, + [29558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1538), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 14, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142332,14 +142363,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(4040), 28, + ACTIONS(4022), 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, @@ -142362,15 +142396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30228] = 5, + [29618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(4028), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142386,7 +142420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1511), 30, + ACTIONS(4026), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142417,173 +142451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30288] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(1621), 1, - anon_sym_fn, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4044), 1, - sym_identifier, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4050), 1, - anon_sym_for, - STATE(1607), 1, - sym_for_lifetimes, - STATE(2015), 1, - sym_generic_type, - STATE(2235), 1, - sym_scoped_type_identifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3766), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [30387] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1239), 1, - anon_sym_fn, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3254), 1, - anon_sym_for, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4052), 1, - sym_identifier, - STATE(1634), 1, - sym_for_lifetimes, - STATE(2011), 1, - sym_scoped_type_identifier, - STATE(2015), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3774), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [30486] = 10, + [29678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3422), 1, - anon_sym_move, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1542), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142599,10 +142475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(4030), 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, @@ -142622,29 +142502,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_COMMA, anon_sym_SQUOTE, anon_sym_as, - [30555] = 11, + anon_sym_else, + [29738] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, + ACTIONS(3438), 1, anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3422), 1, - anon_sym_move, - ACTIONS(4054), 1, + ACTIONS(4034), 1, anon_sym_COLON_COLON, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1543), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142660,10 +142534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(1485), 28, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142683,18 +142560,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_COMMA, anon_sym_as, - [30626] = 6, + anon_sym_else, + [29802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(1544), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142710,12 +142587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(1485), 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, @@ -142737,19 +142615,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, - [30687] = 6, + [29862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - STATE(1545), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1025), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142765,12 +142642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(1027), 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, @@ -142792,180 +142670,23 @@ 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, - [30748] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3172), 1, - anon_sym_fn, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4062), 1, - anon_sym_COLON_COLON, - ACTIONS(4064), 1, - anon_sym_default, - ACTIONS(4066), 1, - anon_sym_for, - ACTIONS(4072), 1, - sym_metavariable, - STATE(1090), 1, - sym_scoped_type_identifier, - STATE(1130), 1, - sym_generic_type, - STATE(1605), 1, - sym_for_lifetimes, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3612), 1, - sym_scoped_identifier, - STATE(3648), 1, - sym_generic_type_with_turbofish, - STATE(3660), 1, - sym_bracketed_type, - STATE(3733), 1, - sym_function_modifiers, - ACTIONS(4068), 2, - anon_sym_gen, - anon_sym_union, - STATE(1483), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1546), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(4070), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4060), 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, - [30847] = 25, - ACTIONS(29), 1, - anon_sym_LT, + [29922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3214), 1, - anon_sym_fn, - ACTIONS(4074), 1, - sym_identifier, - ACTIONS(4078), 1, - anon_sym_COLON_COLON, - ACTIONS(4080), 1, - anon_sym_default, - ACTIONS(4082), 1, - anon_sym_for, - ACTIONS(4088), 1, - sym_metavariable, - STATE(1603), 1, - sym_scoped_type_identifier, - STATE(1638), 1, - sym_for_lifetimes, - STATE(1669), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3602), 1, - sym_function_modifiers, - STATE(3639), 1, - sym_scoped_identifier, - STATE(3658), 1, - sym_generic_type_with_turbofish, - STATE(3664), 1, - sym_bracketed_type, - ACTIONS(4084), 2, - anon_sym_gen, - anon_sym_union, - STATE(1547), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - STATE(1720), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(4086), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4076), 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, - [30946] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4090), 2, + ACTIONS(4038), 15, anon_sym_PLUS, - anon_sym_DASH, - STATE(1548), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142974,13 +142695,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(3920), 25, + ACTIONS(4036), 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, @@ -143000,56 +142725,42 @@ 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, - [31016] = 17, + [29982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1539), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4042), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1549), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 21, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4040), 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, @@ -143062,61 +142773,50 @@ 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_SQUOTE, + anon_sym_as, anon_sym_else, - [31098] = 18, + [30042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1489), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1550), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 20, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1487), 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, @@ -143128,67 +142828,54 @@ 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_SQUOTE, + anon_sym_as, anon_sym_else, - [31182] = 21, + [30102] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1541), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4046), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1551), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4108), 17, + anon_sym_DOT_DOT, + ACTIONS(4044), 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, @@ -143199,29 +142886,25 @@ 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_SQUOTE, + anon_sym_as, anon_sym_else, - [31272] = 11, + [30168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1552), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143232,16 +142915,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(3436), 20, + ACTIONS(4048), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143253,34 +142939,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_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [31342] = 11, + anon_sym_else, + [30228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1553), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143291,16 +142970,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(3442), 20, + ACTIONS(1505), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143312,34 +142994,251 @@ 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, - [31412] = 11, + anon_sym_else, + [30288] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4122), 1, + ACTIONS(1115), 1, + anon_sym_extern, + ACTIONS(3194), 1, + anon_sym_fn, + ACTIONS(4052), 1, + sym_identifier, + ACTIONS(4056), 1, anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, + ACTIONS(4058), 1, + anon_sym_default, + ACTIONS(4060), 1, + anon_sym_for, + ACTIONS(4066), 1, + sym_metavariable, + STATE(1093), 1, + sym_scoped_type_identifier, + STATE(1136), 1, + sym_generic_type, + STATE(1639), 1, + sym_for_lifetimes, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, + STATE(3617), 1, + sym_scoped_identifier, + STATE(3653), 1, + sym_generic_type_with_turbofish, + STATE(3665), 1, + sym_bracketed_type, + STATE(3754), 1, + sym_function_modifiers, + ACTIONS(4062), 2, + anon_sym_gen, + anon_sym_union, + STATE(1521), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1099), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(4064), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4054), 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, + [30387] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1115), 1, + anon_sym_extern, + ACTIONS(1625), 1, + anon_sym_fn, + ACTIONS(3479), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, + sym_metavariable, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4074), 1, + anon_sym_for, + STATE(1638), 1, + sym_for_lifetimes, + STATE(2020), 1, + sym_generic_type, + STATE(2230), 1, + sym_scoped_type_identifier, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, + STATE(3599), 1, + sym_bracketed_type, + STATE(3603), 1, + sym_function_modifiers, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, + sym_generic_type_with_turbofish, + ACTIONS(3481), 2, + anon_sym_gen, + anon_sym_union, + STATE(1545), 2, + sym_line_comment, + sym_block_comment, + STATE(2074), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1099), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3485), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 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, + [30486] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1115), 1, + anon_sym_extern, + ACTIONS(3230), 1, + anon_sym_fn, + ACTIONS(4076), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_COLON_COLON, + ACTIONS(4082), 1, + anon_sym_default, + ACTIONS(4084), 1, + anon_sym_for, + ACTIONS(4090), 1, + sym_metavariable, + STATE(1591), 1, + sym_scoped_type_identifier, + STATE(1642), 1, + sym_for_lifetimes, STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1554), 2, + sym_generic_type, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, + STATE(3607), 1, + sym_function_modifiers, + STATE(3644), 1, + sym_scoped_identifier, + STATE(3663), 1, + sym_generic_type_with_turbofish, + STATE(3669), 1, + sym_bracketed_type, + ACTIONS(4086), 2, + anon_sym_gen, + anon_sym_union, + STATE(1546), 2, + sym_line_comment, + sym_block_comment, + STATE(1719), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1099), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(4088), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4078), 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, + [30585] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4092), 1, + anon_sym_COLON_COLON, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 17, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143350,16 +143249,18 @@ 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(3424), 20, + ACTIONS(1485), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143371,70 +143272,53 @@ 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_as, - [31482] = 21, + anon_sym_else, + [30646] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + STATE(1548), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1555), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3420), 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, @@ -143445,28 +143329,72 @@ 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_as, anon_sym_else, - [31572] = 5, + [30707] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4132), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1105), 1, + anon_sym_fn, + ACTIONS(1115), 1, + anon_sym_extern, + ACTIONS(3296), 1, + anon_sym_for, + ACTIONS(3479), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3487), 1, sym_metavariable, - ACTIONS(4130), 33, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4094), 1, + sym_identifier, + STATE(1619), 1, + sym_for_lifetimes, + STATE(2012), 1, + sym_scoped_type_identifier, + STATE(2020), 1, + sym_generic_type, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, + STATE(3599), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, + sym_generic_type_with_turbofish, + STATE(3780), 1, + sym_function_modifiers, + ACTIONS(3481), 2, + anon_sym_gen, + anon_sym_union, + STATE(1549), 2, + sym_line_comment, + sym_block_comment, + STATE(2074), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1099), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3485), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143484,79 +143412,47 @@ 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31630] = 21, + [30806] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, + ACTIONS(3424), 1, + anon_sym_BANG, + ACTIONS(3430), 1, + anon_sym_move, ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4090), 2, + anon_sym_COLON_COLON, + STATE(1488), 1, + sym_block, + STATE(3682), 1, + sym_label, + STATE(1550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4100), 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(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1557), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4134), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3420), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + 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, @@ -143567,51 +143463,55 @@ 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, - [31720] = 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_SQUOTE, + anon_sym_as, + [30875] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, + ACTIONS(3424), 1, + anon_sym_BANG, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3430), 1, + anon_sym_move, ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1558), 2, + anon_sym_COLON_COLON, + STATE(1488), 1, + sym_block, + STATE(3682), 1, + sym_label, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3422), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 25, - anon_sym_SEMI, + ACTIONS(3420), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143630,28 +143530,54 @@ 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_else, - [31798] = 5, + anon_sym_as, + [30946] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4140), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1075), 1, + anon_sym_DASH, + ACTIONS(1125), 1, + aux_sym_string_literal_token1, + ACTIONS(1135), 1, + sym__raw_string_literal_start, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3384), 1, + sym_identifier, + ACTIONS(3394), 1, sym_metavariable, - ACTIONS(4138), 33, + STATE(2114), 1, + sym_scoped_identifier, + STATE(2193), 1, + sym__literal_pattern, + STATE(3714), 1, + sym_bracketed_type, + STATE(3774), 1, + sym_generic_type_with_turbofish, + ACTIONS(1127), 2, + anon_sym_true, + anon_sym_false, + STATE(1552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1123), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3392), 3, + sym_self, + sym_super, + sym_crate, + STATE(2094), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3390), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143669,74 +143595,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31856] = 22, + [31032] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4124), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3958), 7, + ACTIONS(4030), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143744,7 +143657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143755,15 +143668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31948] = 5, + [31124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1561), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 10, + ACTIONS(4128), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -143774,7 +143687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4146), 33, + ACTIONS(4126), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143808,27 +143721,53 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32006] = 6, + [31182] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_LPAREN, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1075), 1, + anon_sym_DASH, + ACTIONS(1125), 1, + aux_sym_string_literal_token1, + ACTIONS(1135), 1, + sym__raw_string_literal_start, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3396), 1, + sym_identifier, + ACTIONS(3406), 1, sym_metavariable, - ACTIONS(4150), 33, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2213), 1, + sym__literal_pattern, + STATE(3714), 1, + sym_bracketed_type, + STATE(3774), 1, + sym_generic_type_with_turbofish, + ACTIONS(1127), 2, + anon_sym_true, + anon_sym_false, + STATE(1555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1123), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3404), 3, + sym_self, + sym_super, + sym_crate, + STATE(2094), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3402), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143846,131 +143785,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32066] = 21, + [31268] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4124), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1563), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 17, + ACTIONS(3878), 7, 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, - [32156] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_BANG, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 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(1451), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143981,127 +143858,53 @@ 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, - [32222] = 19, + [31360] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1673), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1699), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1707), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3400), 1, + ACTIONS(3602), 1, sym_identifier, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2109), 1, - sym_scoped_identifier, - STATE(2177), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1565), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3406), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [32308] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3398), 1, + ACTIONS(3610), 1, sym_metavariable, - STATE(2116), 1, + STATE(2666), 1, sym_scoped_identifier, - STATE(2163), 1, + STATE(2963), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3595), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3612), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1701), 2, anon_sym_true, anon_sym_false, - STATE(1566), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1697), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3396), 3, + ACTIONS(3608), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2393), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3394), 20, + ACTIONS(3604), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144122,189 +143925,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32394] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4163), 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, - [32480] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1568), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4167), 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, - [32570] = 19, + [31446] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1699), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1707), 1, sym__raw_string_literal_start, - ACTIONS(3596), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3620), 1, + ACTIONS(3618), 1, sym_identifier, - ACTIONS(3626), 1, + ACTIONS(3624), 1, sym_metavariable, - STATE(2811), 1, + STATE(2784), 1, sym_scoped_identifier, - STATE(3100), 1, + STATE(3083), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3595), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3612), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1701), 2, anon_sym_true, anon_sym_false, - STATE(1569), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1697), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3624), 3, + ACTIONS(3622), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2393), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3622), 20, + ACTIONS(3620), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144325,53 +143992,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32656] = 19, + [31532] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1699), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1707), 1, sym__raw_string_literal_start, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3600), 1, + ACTIONS(3630), 1, + sym_identifier, + ACTIONS(3636), 1, sym_metavariable, - STATE(2686), 1, + STATE(2799), 1, sym_scoped_identifier, - STATE(2950), 1, + STATE(3096), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3595), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3612), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1701), 2, anon_sym_true, anon_sym_false, - STATE(1570), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1697), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3598), 3, + ACTIONS(3634), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2393), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3594), 20, + ACTIONS(3632), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144382,205 +144049,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_i64, anon_sym_u128, anon_sym_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_gen, - anon_sym_union, - [32742] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 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, - [32828] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1572), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3878), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 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, - [32920] = 21, + 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_gen, + anon_sym_union, + [31618] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, + ACTIONS(351), 1, anon_sym_EQ, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4122), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4124), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1573), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(345), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144598,123 +144128,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33010] = 22, + [31708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4022), 7, - anon_sym_SEMI, + ACTIONS(4132), 10, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 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, - [33102] = 19, - ACTIONS(29), 1, + 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(4130), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3608), 1, - sym_identifier, - ACTIONS(3614), 1, - sym_metavariable, - STATE(2801), 1, - sym_scoped_identifier, - STATE(3086), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1575), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3612), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3610), 20, + ACTIONS(4136), 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(4134), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144732,30 +144218,43 @@ 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_gen, + anon_sym_impl, anon_sym_union, - [33188] = 10, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31824] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - STATE(1576), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, + ACTIONS(3752), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, @@ -144767,7 +144266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, + ACTIONS(3748), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144793,109 +144292,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33256] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3386), 1, - sym_metavariable, - STATE(2136), 1, - sym_scoped_identifier, - STATE(2208), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3384), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3382), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [33342] = 13, + [31892] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1578), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, + ACTIONS(3752), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, + ACTIONS(3748), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144921,33 +144353,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33416] = 12, + [31966] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1579), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(3752), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -144955,7 +144387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, + ACTIONS(3748), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144981,43 +144413,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33488] = 14, + [32038] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1580), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3752), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, + ACTIONS(3748), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145043,27 +144475,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33564] = 6, + [32114] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_COLON_COLON, - STATE(1581), 2, + ACTIONS(4140), 1, + anon_sym_LPAREN, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(4155), 9, - anon_sym_LPAREN, + ACTIONS(4143), 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(4150), 33, + ACTIONS(4138), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145097,212 +144529,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33624] = 8, + [32174] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4174), 1, - anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1582), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 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(1451), 24, - anon_sym_LPAREN, + ACTIONS(3750), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3754), 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_SQUOTE, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, anon_sym_as, - [33687] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, - STATE(1823), 1, - sym_field_initializer_list, - STATE(1583), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(3752), 2, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 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, - [33752] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4180), 1, - anon_sym_COLON_COLON, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1584), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(4098), 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(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3453), 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, - [33819] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - sym_identifier, - STATE(1585), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 16, - anon_sym_PLUS, + ACTIONS(4100), 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, - anon_sym_as, - ACTIONS(3412), 23, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3748), 20, 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, @@ -145314,135 +144591,35 @@ 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, - [33882] = 7, + anon_sym_COMMA, + anon_sym_else, + [32258] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(1586), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3496), 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(3494), 22, - anon_sym_LPAREN, + ACTIONS(3750), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3754), 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_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, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, anon_sym_as, - anon_sym_LT2, - [33942] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3574), 1, - anon_sym_LBRACE, - STATE(1587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(4098), 2, 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(3489), 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, - [34000] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_LBRACE, - STATE(1588), 2, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, - anon_sym_PLUS, + ACTIONS(4100), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3752), 9, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -145450,13 +144627,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(3508), 24, + ACTIONS(3748), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145475,44 +144652,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_COLON_COLON, - anon_sym_as, - [34058] = 7, + anon_sym_COMMA, + anon_sym_else, + [32328] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_BANG, - STATE(1589), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4147), 1, + anon_sym_EQ, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(4124), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4145), 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, @@ -145523,45 +144721,120 @@ 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, - [34118] = 6, + anon_sym_COMMA, + anon_sym_else, + [32418] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, - anon_sym_LBRACE, - STATE(1590), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4151), 1, + anon_sym_EQ, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4124), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, - anon_sym_PLUS, + ACTIONS(4100), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4149), 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, + [32508] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3752), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 24, + ACTIONS(3748), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145580,45 +144853,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_COLON_COLON, - anon_sym_as, - [34176] = 7, + anon_sym_COMMA, + anon_sym_else, + [32586] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3516), 1, - anon_sym_COLON_COLON, - STATE(1591), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3512), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4155), 1, + anon_sym_EQ, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4124), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3510), 22, + ACTIONS(4153), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145627,46 +144920,63 @@ 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34236] = 5, + anon_sym_COMMA, + anon_sym_else, + [32676] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1592), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3487), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, + ACTIONS(4159), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3489), 25, + STATE(1574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4157), 19, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145677,31 +144987,33 @@ 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34292] = 5, + anon_sym_COMMA, + anon_sym_else, + [32762] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1593), 2, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(3558), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + anon_sym_BANG, + STATE(1517), 1, + sym_field_initializer_list, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(1483), 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, @@ -145711,10 +145023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 25, + ACTIONS(1485), 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, @@ -145734,22 +145047,28 @@ 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, - [34348] = 7, + [32828] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4165), 1, anon_sym_BANG, - ACTIONS(3489), 1, + ACTIONS(4167), 1, anon_sym_COLON_COLON, - STATE(1594), 2, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1654), 1, + sym_parameters, + STATE(1691), 1, + sym_type_arguments, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3436), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145767,8 +145086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 22, - anon_sym_LPAREN, + ACTIONS(3432), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145789,20 +145107,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [34408] = 7, + [32898] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1075), 1, + anon_sym_DASH, + ACTIONS(1125), 1, + aux_sym_string_literal_token1, + ACTIONS(1135), 1, + sym__raw_string_literal_start, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(3408), 1, + sym_identifier, + ACTIONS(3418), 1, + sym_metavariable, + STATE(2137), 1, + sym_scoped_identifier, + STATE(2202), 1, + sym__literal_pattern, + STATE(3714), 1, + sym_bracketed_type, + STATE(3774), 1, + sym_generic_type_with_turbofish, + ACTIONS(1127), 2, + anon_sym_true, + anon_sym_false, + STATE(1577), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1123), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3416), 3, + sym_self, + sym_super, + sym_crate, + STATE(2094), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3414), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [32984] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, + ACTIONS(3448), 1, anon_sym_BANG, - ACTIONS(4054), 1, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4167), 1, anon_sym_COLON_COLON, - STATE(1595), 2, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1654), 1, + sym_parameters, + STATE(1691), 1, + sym_type_arguments, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3446), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145813,15 +145205,16 @@ 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(3412), 24, - anon_sym_LPAREN, + ACTIONS(3444), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145833,29 +145226,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_SQUOTE, anon_sym_as, - [34468] = 7, + [33054] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3448), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4167), 1, anon_sym_COLON_COLON, - STATE(1596), 2, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1654), 1, + sym_parameters, + STATE(1691), 1, + sym_type_arguments, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 17, + ACTIONS(3452), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145873,8 +145271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3502), 22, - anon_sym_LPAREN, + ACTIONS(3450), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145895,47 +145292,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [34528] = 9, + [33124] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1597), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4173), 1, + anon_sym_EQ, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4124), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, - anon_sym_PLUS, + ACTIONS(4100), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4171), 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, + [33214] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4124), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1581), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3526), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3974), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145944,53 +145429,119 @@ 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34592] = 9, + [33306] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1598), 2, + ACTIONS(4175), 1, + anon_sym_COLON_COLON, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, - anon_sym_PLUS, + ACTIONS(4143), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4138), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33366] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4122), 1, + anon_sym_DOT_DOT, + ACTIONS(4180), 1, + anon_sym_EQ, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4124), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1583), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3518), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4178), 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, @@ -145999,45 +145550,63 @@ 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34656] = 5, + anon_sym_COMMA, + anon_sym_else, + [33456] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3514), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(403), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3516), 25, + STATE(1584), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(401), 19, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146048,53 +145617,59 @@ 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34712] = 9, + anon_sym_COMMA, + anon_sym_else, + [33542] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1600), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(3752), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, + STATE(1585), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3522), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3748), 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, @@ -146105,26 +145680,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_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34776] = 7, + anon_sym_COMMA, + anon_sym_else, + [33624] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, + ACTIONS(3438), 1, anon_sym_BANG, - ACTIONS(4184), 1, + ACTIONS(4182), 1, anon_sym_COLON_COLON, - STATE(1601), 2, + STATE(1517), 1, + sym_field_initializer_list, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146140,7 +145716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(1485), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -146165,24 +145741,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [34836] = 6, + [33687] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, - anon_sym_LBRACE, - STATE(1602), 2, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3572), 1, + anon_sym_BANG, + ACTIONS(4184), 1, + sym_identifier, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3422), 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, @@ -146192,10 +145771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 24, + anon_sym_as, + ACTIONS(3420), 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, @@ -146215,25 +145796,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_as, - [34894] = 9, + [33750] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, + ACTIONS(4163), 1, anon_sym_LPAREN, - ACTIONS(4124), 1, + ACTIONS(4169), 1, anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, + ACTIONS(4186), 1, + anon_sym_COLON_COLON, + STATE(1654), 1, sym_parameters, - STATE(1603), 2, + STATE(1691), 1, + sym_type_arguments, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3456), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146251,7 +145832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 20, + ACTIONS(3454), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146272,22 +145853,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34958] = 5, + [33817] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + ACTIONS(4165), 1, + anon_sym_BANG, + ACTIONS(4188), 1, + anon_sym_LBRACE, + ACTIONS(4190), 1, + anon_sym_COLON_COLON, + STATE(1714), 1, + sym_field_initializer_list, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(1483), 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, @@ -146297,10 +145885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 25, + ACTIONS(1485), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146320,89 +145908,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_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [35014] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [33882] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, + ACTIONS(3496), 1, + anon_sym_BANG, + ACTIONS(3498), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4186), 1, - sym_identifier, - ACTIONS(4188), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2632), 1, - sym_scoped_type_identifier, - STATE(3478), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1605), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [35103] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4190), 1, - anon_sym_SQUOTE, - STATE(1757), 1, - sym_label, - STATE(1606), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3494), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146413,12 +145932,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(3718), 23, + ACTIONS(3492), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146433,93 +145954,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_as, - [35162] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3542), 1, - sym_function_modifiers, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1607), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [35251] = 6, + anon_sym_LT2, + [33942] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 1, - sym_label, - STATE(1608), 2, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1657), 1, + sym_parameters, + STATE(1694), 1, + sym_type_arguments, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3532), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146530,15 +145989,16 @@ 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(3718), 24, - anon_sym_LPAREN, + ACTIONS(3530), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146550,33 +146010,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_SQUOTE, anon_sym_as, - [35308] = 6, + [34006] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, - anon_sym_COLON_COLON, - STATE(1609), 2, + ACTIONS(3584), 1, + anon_sym_LBRACE, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3496), 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, @@ -146586,10 +146044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 24, + ACTIONS(3498), 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, @@ -146609,93 +146067,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, - [35365] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, + anon_sym_COLON_COLON, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(418), 1, - sym_block, - STATE(3532), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1610), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 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, - [35460] = 5, + [34064] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + ACTIONS(3590), 1, + anon_sym_LBRACE, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, + ACTIONS(3520), 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, @@ -146705,10 +146096,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 25, + ACTIONS(3522), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146731,21 +146121,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35515] = 5, + [34122] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1612), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(3520), 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, @@ -146755,11 +146146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 25, + ACTIONS(3522), 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, @@ -146780,16 +146170,25 @@ 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, - [35570] = 5, + [34178] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1613), 2, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1657), 1, + sym_parameters, + STATE(1694), 1, + sym_type_arguments, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3712), 15, + ACTIONS(3514), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146800,15 +146199,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(3710), 25, - anon_sym_LPAREN, + ACTIONS(3512), 20, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146821,76 +146220,53 @@ 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, - [35625] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [34242] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1657), 1, + sym_parameters, + STATE(1694), 1, + sym_type_arguments, + STATE(1596), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3510), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(413), 1, - sym_block, - STATE(3532), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1614), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3508), 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, @@ -146899,27 +146275,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, - [35720] = 7, + 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, + [34306] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4224), 1, - anon_sym_else, - STATE(1807), 1, - sym_else_clause, - STATE(1615), 2, + ACTIONS(3600), 1, + anon_sym_LBRACE, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 15, + ACTIONS(3538), 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, @@ -146929,7 +146309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1393), 23, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146952,24 +146332,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, - [35779] = 6, + [34364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, - STATE(1616), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3504), 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, @@ -146979,7 +146359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 24, + ACTIONS(3506), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -147002,17 +146382,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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [35836] = 5, + [34420] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(3580), 1, + anon_sym_LBRACE, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3504), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147029,7 +146412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 24, + ACTIONS(3506), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147054,32 +146437,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35891] = 5, + [34478] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, + ACTIONS(3538), 1, + anon_sym_BANG, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3536), 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(3500), 24, + ACTIONS(3534), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147094,76 +146482,51 @@ 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, - [35946] = 25, + anon_sym_LT2, + [34538] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(3504), 1, + anon_sym_BANG, + ACTIONS(3506), 1, + anon_sym_COLON_COLON, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3502), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_SEMI, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4232), 1, - anon_sym_COMMA, - STATE(3017), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1619), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3500), 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, @@ -147172,21 +146535,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, - [36041] = 7, + 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, + [34598] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4120), 1, + ACTIONS(3438), 1, anon_sym_BANG, - ACTIONS(4234), 1, + ACTIONS(4192), 1, anon_sym_COLON_COLON, - STATE(1620), 2, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147202,10 +146571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(1485), 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, @@ -147225,16 +146594,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_SQUOTE, anon_sym_as, - [36100] = 5, + [34658] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(3520), 1, + anon_sym_BANG, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 15, + ACTIONS(3518), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147245,15 +146619,16 @@ 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(3678), 25, + ACTIONS(3516), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -147266,76 +146641,46 @@ 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, - [36155] = 25, + anon_sym_LT2, + [34718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3538), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1470), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1622), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3540), 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, @@ -147346,19 +146691,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36250] = 7, + 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, + [34774] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, + ACTIONS(4034), 1, anon_sym_COLON_COLON, - STATE(1623), 2, + ACTIONS(4161), 1, + anon_sym_BANG, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147374,10 +146728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(1485), 24, + 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, @@ -147398,66 +146753,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36309] = 25, + [34834] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1657), 1, + sym_parameters, + STATE(1694), 1, + sym_type_arguments, + STATE(1606), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3528), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1479), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1624), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3526), 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, @@ -147466,138 +146801,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, - [36404] = 25, + 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, + [34898] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, + ACTIONS(3424), 1, + anon_sym_BANG, ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4236), 1, - anon_sym_SEMI, - ACTIONS(4238), 1, - anon_sym_COMMA, - STATE(3117), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, + anon_sym_COLON_COLON, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3422), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [36499] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(483), 1, - sym_block, - STATE(3740), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1626), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3420), 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, @@ -147608,66 +146853,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36594] = 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_SQUOTE, + anon_sym_as, + [34958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3496), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(482), 1, - sym_block, - STATE(3740), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1627), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3498), 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, @@ -147678,66 +146903,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36689] = 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_SQUOTE, + anon_sym_as, + [35014] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(3950), 2, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + anon_sym_COLON_COLON, + STATE(1609), 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, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1813), 1, - sym_block, - STATE(3741), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3804), 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, @@ -147748,66 +146956,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36784] = 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_as, + [35071] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4165), 1, + anon_sym_BANG, + ACTIONS(4194), 1, + anon_sym_COLON_COLON, + STATE(1610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1483), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1818), 1, - sym_block, - STATE(3741), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1629), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1485), 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, @@ -147818,23 +147008,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36879] = 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, + [35130] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1630), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3504), 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, @@ -147844,10 +147040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(3506), 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, @@ -147867,19 +147063,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_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [36936] = 6, + [35185] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_COLON_COLON, - STATE(1631), 2, + ACTIONS(4196), 1, + anon_sym_SQUOTE, + STATE(1897), 1, + sym_label, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147895,10 +147093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(3742), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147918,24 +147116,92 @@ 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, + [35244] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, anon_sym_as, - [36993] = 5, + ACTIONS(4202), 1, + anon_sym_CARET, + ACTIONS(4204), 1, + anon_sym_AMP, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4222), 1, + anon_sym_DOT_DOT, + STATE(422), 1, + sym_block, + STATE(3721), 1, + sym_label, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4220), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4224), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [35339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1632), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3704), 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, @@ -147945,9 +147211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 24, + ACTIONS(3702), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -147970,18 +147237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37048] = 6, + [35394] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147997,9 +147261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(3710), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -148020,90 +147285,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_as, - [37105] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4242), 1, - sym_identifier, - ACTIONS(4244), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2843), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3776), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [37194] = 5, + anon_sym_as, + [35449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1635), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3720), 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, @@ -148113,9 +147311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 24, + ACTIONS(3718), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -148138,18 +147337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37249] = 6, + [35504] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1636), 2, + ACTIONS(4226), 1, + anon_sym_else, + STATE(1807), 1, + sym_else_clause, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148165,7 +147365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(1417), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148189,66 +147389,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37306] = 25, + [35563] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, + ACTIONS(893), 1, anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4246), 1, anon_sym_SEMI, - ACTIONS(4248), 1, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4234), 1, anon_sym_COMMA, - STATE(2986), 1, + STATE(3113), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1637), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148259,56 +147459,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37401] = 22, + [35658] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, + ACTIONS(1115), 1, anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, ACTIONS(3479), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, sym_metavariable, - ACTIONS(4048), 1, + ACTIONS(4072), 1, anon_sym_default, - ACTIONS(4250), 1, + ACTIONS(4236), 1, sym_identifier, - ACTIONS(4252), 1, + ACTIONS(4238), 1, anon_sym_fn, - STATE(2278), 1, + STATE(2280), 1, aux_sym_function_modifiers_repeat1, - STATE(2459), 1, + STATE(2442), 1, sym_extern_modifier, - STATE(2725), 1, + STATE(2845), 1, sym_scoped_type_identifier, - STATE(3513), 1, + STATE(3570), 1, sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, + STATE(3599), 1, sym_bracketed_type, - STATE(3613), 1, - sym_function_modifiers, - STATE(3738), 1, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, sym_generic_type_with_turbofish, - ACTIONS(3473), 2, + STATE(3782), 1, + sym_function_modifiers, + ACTIONS(3481), 2, anon_sym_gen, anon_sym_union, - STATE(1638), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, + ACTIONS(1099), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3477), 3, + ACTIONS(3485), 3, sym_self, sym_super, sym_crate, - ACTIONS(4046), 17, + ACTIONS(4070), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -148326,66 +147526,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37490] = 25, + [35747] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3964), 1, + anon_sym_BANG, + ACTIONS(3966), 1, + anon_sym_COLON_COLON, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 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(3420), 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, + [35806] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4202), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4208), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4222), 1, anon_sym_DOT_DOT, - ACTIONS(4254), 1, - anon_sym_SEMI, - ACTIONS(4256), 1, - anon_sym_COMMA, - STATE(3154), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + STATE(400), 1, + sym_block, + STATE(3721), 1, + sym_label, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4224), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1639), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148396,23 +147648,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37585] = 6, + [35901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_COLON_COLON, - STATE(1640), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3496), 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, @@ -148422,7 +147673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3498), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148445,38 +147696,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, - [37641] = 5, + [35956] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(985), 1, + anon_sym_RBRACK, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4240), 1, + anon_sym_SEMI, + ACTIONS(4242), 1, + anon_sym_COMMA, + STATE(2927), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3706), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148487,29 +147768,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, - anon_sym_DASH_GT, - anon_sym_as, - [37695] = 5, + [36051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3538), 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, @@ -148519,7 +147793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 24, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148544,15 +147818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37749] = 5, + [36106] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, + STATE(1494), 1, + sym_label, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148568,10 +147844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 24, + ACTIONS(3742), 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, @@ -148591,39 +147867,138 @@ 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, - [37803] = 5, + [36163] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1644), 2, + ACTIONS(939), 1, + anon_sym_RBRACK, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4244), 1, + anon_sym_SEMI, + ACTIONS(4246), 1, + anon_sym_COMMA, + STATE(3018), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 15, - anon_sym_PLUS, + ACTIONS(4100), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [36258] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4202), 1, anon_sym_CARET, + ACTIONS(4204), 1, anon_sym_AMP, + ACTIONS(4206), 1, anon_sym_PIPE, + ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4222), 1, + anon_sym_DOT_DOT, + STATE(1468), 1, + sym_block, + STATE(3682), 1, + sym_label, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3682), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4224), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1627), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148634,27 +148009,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [36353] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4202), 1, + anon_sym_CARET, + ACTIONS(4204), 1, + anon_sym_AMP, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4222), 1, + anon_sym_DOT_DOT, + STATE(1449), 1, + sym_block, + STATE(3682), 1, + sym_label, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4220), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4224), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, 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, - [37857] = 7, + ACTIONS(4214), 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, + [36448] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(1833), 1, - sym_arguments, - STATE(1645), 2, + ACTIONS(3806), 1, + anon_sym_COLON_COLON, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148670,9 +148105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 22, + ACTIONS(3804), 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, @@ -148692,22 +148128,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_SQUOTE, anon_sym_as, - [37915] = 5, + [36505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1646), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3520), 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, @@ -148717,7 +148155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 24, + ACTIONS(3522), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148742,56 +148180,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37969] = 19, + [36560] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(403), 2, + ACTIONS(4216), 1, anon_sym_EQ, + ACTIONS(4222), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + STATE(481), 1, + sym_block, + STATE(3746), 1, + sym_label, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - STATE(1647), 2, + ACTIONS(4224), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(401), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148802,63 +148250,66 @@ 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_SQUOTE, - [38051] = 21, + [36655] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4222), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + STATE(486), 1, + sym_block, + STATE(3746), 1, + sym_label, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4224), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 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, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148869,61 +148320,66 @@ 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, - [38137] = 21, + [36750] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4222), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + STATE(1813), 1, + sym_block, + STATE(3747), 1, + sym_label, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4224), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148934,61 +148390,66 @@ 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, - [38223] = 21, + [36845] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4222), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + STATE(1818), 1, + sym_block, + STATE(3747), 1, + sym_label, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4224), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1650), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148999,16 +148460,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_SQUOTE, - [38309] = 5, + [36940] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + ACTIONS(4096), 1, + anon_sym_COLON_COLON, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149024,10 +148486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3714), 24, + ACTIONS(3420), 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, @@ -149047,17 +148509,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_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - [38363] = 5, + [36997] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + ACTIONS(4248), 1, + anon_sym_COLON_COLON, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149073,10 +148537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3582), 24, + ACTIONS(1485), 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, @@ -149096,19 +148560,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_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [38417] = 6, + [37054] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3742), 1, + ACTIONS(3806), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1653), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149124,7 +148589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(3804), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149148,64 +148613,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38473] = 24, + [37111] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(1115), 1, + anon_sym_extern, + ACTIONS(3479), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, + sym_metavariable, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4250), 1, + sym_identifier, + ACTIONS(4252), 1, + anon_sym_fn, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, + STATE(2719), 1, + sym_scoped_type_identifier, + STATE(3570), 1, + sym_generic_type, + STATE(3599), 1, + sym_bracketed_type, + STATE(3694), 1, + sym_function_modifiers, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, + sym_generic_type_with_turbofish, + ACTIONS(3481), 2, + anon_sym_gen, + anon_sym_union, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1099), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3485), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 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, + [37200] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1115), 1, + anon_sym_extern, + ACTIONS(3479), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, + sym_metavariable, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_fn, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, + STATE(2843), 1, + sym_scoped_type_identifier, + STATE(3484), 1, + sym_function_modifiers, + STATE(3570), 1, + sym_generic_type, + STATE(3599), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, + sym_generic_type_with_turbofish, + ACTIONS(3481), 2, + anon_sym_gen, + anon_sym_union, + STATE(1639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1099), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3485), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 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, + [37289] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + STATE(1640), 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, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4266), 1, - anon_sym_RPAREN, - ACTIONS(4268), 1, - anon_sym_COMMA, - STATE(2888), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3804), 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, @@ -149216,64 +148790,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38565] = 24, + 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, + [37346] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4270), 1, - anon_sym_COMMA, - STATE(2896), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1655), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3688), 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149284,48 +148840,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38657] = 18, + 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, + [37401] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4276), 1, - anon_sym_RBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_COMMA, - ACTIONS(4284), 1, + ACTIONS(1115), 1, + anon_sym_extern, + ACTIONS(3479), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(3487), 1, sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3023), 1, - sym__use_clause, - STATE(3461), 1, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4258), 1, + sym_identifier, + ACTIONS(4260), 1, + anon_sym_fn, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, + STATE(2701), 1, + sym_scoped_type_identifier, + STATE(3570), 1, + sym_generic_type, + STATE(3599), 1, sym_bracketed_type, STATE(3618), 1, + sym_function_modifiers, + STATE(3722), 1, + sym_scoped_identifier, + STATE(3761), 1, sym_generic_type_with_turbofish, - STATE(1656), 2, + ACTIONS(3481), 2, + anon_sym_gen, + anon_sym_union, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(1099), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3485), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4070), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -149343,42 +148915,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [38737] = 6, + [37490] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(1657), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(748), 1, + anon_sym_RBRACK, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4262), 1, + anon_sym_SEMI, + ACTIONS(4264), 1, + anon_sym_COMMA, + STATE(3044), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3518), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1643), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149389,71 +148985,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, - [38793] = 24, + [37585] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(2929), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4266), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149464,15 +149051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38885] = 5, + [37673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149488,7 +149075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3632), 24, + ACTIONS(3714), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149511,19 +149098,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_DASH_GT, anon_sym_as, - [38939] = 6, + [37727] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, + ACTIONS(4268), 1, anon_sym_COLON_COLON, - STATE(1660), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149539,7 +149126,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(3530), 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, + [37783] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1647), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3724), 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(3722), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149562,21 +149197,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_DASH_GT, anon_sym_as, - [38995] = 5, + [37837] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, - anon_sym_PLUS, + ACTIONS(4200), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3752), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149585,13 +149230,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(3696), 24, + ACTIONS(3748), 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, @@ -149610,19 +149252,80 @@ 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, - [39049] = 6, + anon_sym_SQUOTE, + [37901] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4296), 1, - anon_sym_DASH_GT, - STATE(1662), 2, + ACTIONS(4270), 1, + sym_identifier, + ACTIONS(4272), 1, + anon_sym_LBRACE, + ACTIONS(4274), 1, + anon_sym_RBRACE, + ACTIONS(4276), 1, + anon_sym_STAR, + ACTIONS(4280), 1, + anon_sym_COMMA, + ACTIONS(4282), 1, + anon_sym_COLON_COLON, + ACTIONS(4286), 1, + sym_metavariable, + STATE(2508), 1, + sym_scoped_identifier, + STATE(3039), 1, + sym__use_clause, + STATE(3515), 1, + sym_bracketed_type, + STATE(3712), 1, + sym_generic_type_with_turbofish, + STATE(1649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4284), 3, + sym_self, + sym_super, + sym_crate, + STATE(2875), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4278), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [37981] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4288), 1, + anon_sym_COLON_COLON, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149638,7 +149341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 23, + ACTIONS(3512), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149662,43 +149365,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39105] = 14, + [38037] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4196), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1663), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3752), 6, + anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3748), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -149720,64 +149422,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39177] = 24, + [38107] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4298), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1664), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(3752), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3748), 21, + 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, @@ -149788,60 +149471,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39269] = 21, + 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, + [38175] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, + anon_sym_AMP, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1665), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4167), 13, + ACTIONS(3752), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3748), 21, 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, @@ -149852,18 +149529,24 @@ 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, - [39355] = 6, + [38247] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1666), 2, + ACTIONS(4290), 1, + anon_sym_DASH_GT, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149879,7 +149562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 23, + ACTIONS(3652), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149903,50 +149586,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39411] = 17, + [38303] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, + anon_sym_AMP, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(3752), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - STATE(1667), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 17, + ACTIONS(3748), 17, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -149964,43 +149647,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39489] = 12, + [38381] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1668), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(1433), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 21, + ACTIONS(1431), 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, @@ -150019,18 +149694,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_SQUOTE, - [39557] = 6, + anon_sym_as, + anon_sym_else, + [38435] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1669), 2, + ACTIONS(4292), 1, + anon_sym_DASH_GT, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150046,7 +149722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(3658), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150070,30 +149746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39613] = 11, + [38491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1670), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(1425), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150102,10 +149768,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(3920), 21, + ACTIONS(1423), 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, @@ -150124,18 +149793,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_SQUOTE, - [39679] = 6, + anon_sym_as, + anon_sym_else, + [38545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4300), 1, - anon_sym_DASH_GT, - STATE(1671), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150151,7 +149819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 23, + ACTIONS(1427), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150175,62 +149843,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39735] = 22, + anon_sym_else, + [38599] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + anon_sym_AMP_AMP, + ACTIONS(3752), 2, anon_sym_EQ, - ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1672), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 3, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3748), 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, - ACTIONS(4198), 3, + [38679] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1437), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 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(1435), 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, - ACTIONS(4212), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [38733] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1441), 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(1439), 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, @@ -150241,17 +149996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39823] = 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, + anon_sym_else, + [38787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4302), 1, - anon_sym_DASH_GT, - STATE(1673), 2, + ACTIONS(4268), 1, + anon_sym_COLON_COLON, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150267,7 +150030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3648), 23, + ACTIONS(3512), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150291,64 +150054,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39879] = 24, + [38843] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(4294), 1, + anon_sym_COLON_COLON, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1483), 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(1485), 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, + [38899] = 24, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4304), 1, + ACTIONS(4296), 1, + anon_sym_RPAREN, + ACTIONS(4298), 1, anon_sym_COMMA, - STATE(3039), 1, + STATE(2979), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150359,62 +150172,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39971] = 22, + [38991] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, + ACTIONS(4155), 1, + anon_sym_EQ, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4302), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 3, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4153), 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, - ACTIONS(4198), 3, + [39077] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4304), 1, + anon_sym_COLON_COLON, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1483), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 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(1485), 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(4212), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39133] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + anon_sym_LPAREN, + STATE(1720), 1, + sym_arguments, + STATE(1668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3738), 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(3734), 22, + 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, @@ -150425,22 +150331,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40059] = 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, + [39191] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, - STATE(1676), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, + ACTIONS(4200), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3752), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150449,13 +150370,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(3518), 23, + ACTIONS(3748), 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, @@ -150474,63 +150392,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, - [40115] = 22, + anon_sym_SQUOTE, + [39257] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4147), 1, + anon_sym_EQ, + ACTIONS(4202), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4208), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4302), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1677), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4308), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4102), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4145), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150541,62 +150457,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40203] = 22, + anon_sym_SQUOTE, + [39343] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4202), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4208), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(403), 2, anon_sym_EQ, - ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4310), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4102), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(401), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150607,17 +150518,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40291] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, + ACTIONS(3966), 1, anon_sym_COLON_COLON, - STATE(1679), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150633,7 +150547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(3420), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150657,58 +150571,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40347] = 21, + [39481] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4112), 1, + ACTIONS(4173), 1, anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4302), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1680), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 13, + ACTIONS(4171), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -150722,64 +150636,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [40433] = 24, + [39567] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4180), 1, + anon_sym_EQ, + ACTIONS(4202), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4208), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4312), 1, - anon_sym_RPAREN, - ACTIONS(4314), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4302), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1681), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4178), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150790,43 +150700,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40525] = 10, + anon_sym_SQUOTE, + [39653] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - STATE(1682), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4151), 1, + anon_sym_EQ, + ACTIONS(4202), 1, anon_sym_CARET, + ACTIONS(4204), 1, anon_sym_AMP, + ACTIONS(4206), 1, anon_sym_PIPE, + ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4300), 1, + anon_sym_DOT_DOT, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(4302), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4149), 13, 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, @@ -150837,42 +150765,47 @@ 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, - [40589] = 5, + [39739] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4202), 1, anon_sym_CARET, + ACTIONS(4204), 1, anon_sym_AMP, + ACTIONS(4206), 1, anon_sym_PIPE, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3752), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 24, + ACTIONS(3748), 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, @@ -150891,62 +150824,63 @@ 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, - anon_sym_else, - [40643] = 21, + anon_sym_SQUOTE, + [39813] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4206), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4302), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1684), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150957,38 +150891,64 @@ 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, - [40729] = 5, + [39901] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1437), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4308), 1, + anon_sym_RPAREN, + ACTIONS(4310), 1, + anon_sym_COMMA, + STATE(2890), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1435), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150999,45 +150959,64 @@ 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, - anon_sym_else, - [40783] = 5, + [39993] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1433), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4312), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1431), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151048,54 +151027,37 @@ 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, - anon_sym_else, - [40837] = 15, + [40085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1687), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3494), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + 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(3920), 21, + ACTIONS(3492), 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, @@ -151106,71 +151068,72 @@ 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, - [40911] = 22, + anon_sym_as, + anon_sym_LT2, + [40139] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(947), 1, + anon_sym_RPAREN, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4314), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1688), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151181,17 +151144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40999] = 6, + [40231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_COLON_COLON, - STATE(1689), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151207,7 +151168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3592), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151230,16 +151191,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, - [41055] = 5, + [40285] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1690), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(3668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151255,7 +151217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 24, + ACTIONS(3666), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151278,17 +151240,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_DASH_GT, anon_sym_as, - anon_sym_else, - [41109] = 5, + [40339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(3598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151304,7 +151266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 24, + ACTIONS(3596), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151327,41 +151289,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, - anon_sym_else, - [41163] = 5, + [40393] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3485), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4202), 1, anon_sym_CARET, + ACTIONS(4204), 1, anon_sym_AMP, + ACTIONS(4206), 1, anon_sym_PIPE, + ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4159), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, + STATE(1685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3483), 22, + ACTIONS(4157), 15, 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_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151370,52 +151349,110 @@ 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_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [41217] = 13, + anon_sym_SQUOTE, + [40475] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(925), 1, + anon_sym_RPAREN, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4202), 1, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4196), 2, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4316), 1, + anon_sym_COMMA, + STATE(2987), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1693), 2, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [40567] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4318), 1, + anon_sym_DASH_GT, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3672), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 21, + ACTIONS(3670), 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, @@ -151434,16 +151471,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_SQUOTE, - [41287] = 5, + anon_sym_as, + [40623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + ACTIONS(4320), 1, + anon_sym_DASH_GT, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151459,7 +151498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 24, + ACTIONS(3676), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151482,19 +151521,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_DASH_GT, anon_sym_as, - [41341] = 6, + [40679] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4318), 1, + ACTIONS(4322), 1, anon_sym_DASH_GT, - STATE(1695), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, + ACTIONS(3684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151510,7 +151548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3686), 23, + ACTIONS(3682), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151534,17 +151572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41397] = 6, + [40735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4320), 1, - anon_sym_DASH_GT, - STATE(1696), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151560,7 +151596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 23, + ACTIONS(3626), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151583,18 +151619,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, - [41453] = 6, + [40789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 1, - anon_sym_DASH_GT, - STATE(1697), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(3640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151610,7 +151645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 23, + ACTIONS(3638), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151633,18 +151668,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, - [41509] = 6, + [40843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4324), 1, - anon_sym_DASH_GT, - STATE(1698), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151660,7 +151694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 23, + ACTIONS(3692), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151683,57 +151717,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, - [41565] = 19, + [40897] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1005), 1, + anon_sym_RBRACK, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4116), 1, anon_sym_EQ, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(3037), 1, + aux_sym_arguments_repeat1, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - STATE(1699), 2, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151744,57 +151787,36 @@ 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_SQUOTE, - [41647] = 18, + [40989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3644), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1700), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3642), 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, anon_sym_DASH_EQ, @@ -151806,65 +151828,47 @@ 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, - [41727] = 23, + anon_sym_COLON_COLON, + anon_sym_as, + [41043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4268), 1, + anon_sym_COLON_COLON, + STATE(1695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3510), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4326), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1701), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3508), 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, @@ -151875,15 +151879,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41816] = 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, + [41099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1702), 2, + ACTIONS(4326), 1, + anon_sym_DASH_GT, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(3648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151899,7 +151912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 23, + ACTIONS(3646), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151923,15 +151936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41869] = 5, + [41155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1703), 2, + ACTIONS(4328), 1, + anon_sym_DASH_GT, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3698), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151947,7 +151962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 23, + ACTIONS(3696), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151971,15 +151986,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41922] = 5, + [41211] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4202), 1, + anon_sym_CARET, + ACTIONS(4204), 1, + anon_sym_AMP, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4300), 1, + anon_sym_DOT_DOT, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4220), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4302), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3974), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 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, + [41299] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4268), 1, + anon_sym_COLON_COLON, + STATE(1699), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151995,7 +152078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(3526), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152019,61 +152102,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41975] = 22, + [41355] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4330), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1705), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4330), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152084,15 +152168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42062] = 5, + [41443] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + ACTIONS(4332), 1, + anon_sym_COLON_COLON, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152108,7 +152194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 23, + ACTIONS(3512), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152132,61 +152218,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42115] = 22, + [41499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + STATE(1702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3708), 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(3706), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3794), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3796), 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_DASH_GT, + anon_sym_as, + [41553] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, ACTIONS(4202), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4204), 1, + anon_sym_AMP, + ACTIONS(4206), 1, anon_sym_PIPE, ACTIONS(4208), 1, + anon_sym_AMP_AMP, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4334), 1, - anon_sym_AMP_AMP, - ACTIONS(4196), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4302), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1707), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4030), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152197,61 +152333,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42202] = 22, + [41641] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(351), 1, + anon_sym_EQ, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4202), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4208), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4302), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1708), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(345), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152262,15 +152397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42289] = 5, + anon_sym_SQUOTE, + [41727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152286,7 +152422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(1485), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152310,15 +152446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42342] = 5, + [41780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1710), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152334,7 +152470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4036), 23, + ACTIONS(4018), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152358,15 +152494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42395] = 5, + [41833] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152382,7 +152518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(4022), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152406,15 +152542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42448] = 5, + [41886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1712), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(4028), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152430,7 +152566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 23, + ACTIONS(4026), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152454,15 +152590,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42501] = 5, + [41939] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + ACTIONS(4180), 1, + anon_sym_EQ, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4342), 1, + anon_sym_CARET, + ACTIONS(4344), 1, + anon_sym_AMP, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_AMP_AMP, + ACTIONS(4350), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, + anon_sym_DOT_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4356), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4354), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4178), 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, + [42024] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4366), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [42111] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152478,7 +152743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 23, + ACTIONS(3952), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152502,15 +152767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42554] = 5, + [42164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152526,7 +152791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 23, + ACTIONS(3960), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152550,15 +152815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42607] = 5, + [42217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152574,7 +152839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 23, + ACTIONS(3382), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152598,15 +152863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42660] = 5, + [42270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152622,7 +152887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3978), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152646,15 +152911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42713] = 5, + [42323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152670,7 +152935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 23, + ACTIONS(3526), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152694,7 +152959,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42766] = 5, + [42376] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4368), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [42463] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4370), 1, + anon_sym_RPAREN, + ACTIONS(4372), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [42552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -152702,7 +153098,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152718,7 +153114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3750), 23, + ACTIONS(3994), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152742,21 +153138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42819] = 8, + [42605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 14, + ACTIONS(3532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152770,10 +153160,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(3788), 21, + ACTIONS(3530), 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, @@ -152793,7 +153186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42878] = 5, + [42658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -152801,7 +153194,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152817,7 +153210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(4010), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152841,7 +153234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42931] = 5, + [42711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -152849,7 +153242,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152865,7 +153258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 23, + ACTIONS(4014), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152889,21 +153282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42984] = 8, + [42764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 14, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152917,10 +153304,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(3834), 21, + ACTIONS(4030), 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, @@ -152940,58 +153330,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43043] = 21, + [42817] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4169), 1, + ACTIONS(4155), 1, anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 12, + ACTIONS(4153), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153004,61 +153394,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43128] = 22, + [42902] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, + ACTIONS(4400), 1, + anon_sym_EQ, ACTIONS(3878), 2, anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4398), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153069,23 +153459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43215] = 9, + [42989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153099,10 +153481,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(3920), 20, + ACTIONS(3974), 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, @@ -153121,61 +153506,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43276] = 22, + anon_sym_as, + [43042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1726), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1483), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4372), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1726), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1485), 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, @@ -153186,29 +153548,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43363] = 10, + 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, + [43095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4038), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153217,10 +153577,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(3920), 20, + ACTIONS(4036), 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, @@ -153239,44 +153602,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43426] = 13, + anon_sym_as, + [43148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4042), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 20, + ACTIONS(4040), 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, @@ -153295,41 +153650,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43495] = 12, + anon_sym_as, + [43201] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(3752), 11, + anon_sym_PLUS, + anon_sym_DASH, 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(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153350,43 +153704,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43562] = 14, + [43264] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3752), 6, + anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153407,114 +153760,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43633] = 17, + [43333] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, - anon_sym_GT, - anon_sym_LT, STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 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, - [43710] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(3752), 7, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 2, anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - STATE(1732), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 15, + anon_sym_DOT_DOT, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -153526,42 +153809,49 @@ 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, - [43789] = 11, + [43400] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4336), 2, + ACTIONS(4378), 1, + anon_sym_CARET, + ACTIONS(4380), 1, + anon_sym_AMP, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1733), 2, + ACTIONS(4388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3752), 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(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153582,60 +153872,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43854] = 21, + [43471] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(3752), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1734), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, + ACTIONS(3748), 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, @@ -153646,60 +153930,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43939] = 21, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [43548] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(3752), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1735), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, + ACTIONS(3748), 15, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153710,44 +153991,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44024] = 15, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [43627] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1736), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + ACTIONS(3752), 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(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153768,54 +154047,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44097] = 19, + [43692] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4147), 1, + anon_sym_EQ, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - STATE(1737), 2, + ACTIONS(4396), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 14, + ACTIONS(4145), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153828,64 +154111,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, - [44178] = 23, + [43777] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4151), 1, + anon_sym_EQ, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_SEMI, - ACTIONS(4376), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1738), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4149), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153896,62 +154175,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44267] = 23, + [43862] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4376), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3752), 4, anon_sym_EQ, - ACTIONS(4228), 1, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT_DOT, + ACTIONS(3748), 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, + [43935] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, ACTIONS(4378), 1, - anon_sym_RBRACE, + anon_sym_CARET, ACTIONS(4380), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + anon_sym_AMP, + ACTIONS(4382), 1, + anon_sym_PIPE, + ACTIONS(4384), 1, + anon_sym_AMP_AMP, + ACTIONS(4386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4159), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4157), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153962,7 +154293,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44356] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [44016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -153970,7 +154303,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153986,7 +154319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 23, + ACTIONS(3938), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154010,15 +154343,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44409] = 5, + [44069] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_DOT, STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(4046), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154032,13 +154371,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(3986), 23, + ACTIONS(4044), 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, @@ -154058,56 +154394,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44462] = 19, + [44128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + STATE(1742), 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(4388), 1, anon_sym_AMP, - ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1742), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 14, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154118,9 +154435,14 @@ 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, - [44543] = 5, + anon_sym_as, + [44181] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154128,7 +154450,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154144,7 +154466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3754), 23, + ACTIONS(3886), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154168,62 +154490,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44596] = 23, + [44234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + STATE(1744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3904), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4402), 1, - anon_sym_LBRACE, - ACTIONS(4404), 1, - anon_sym_DOT_DOT, - STATE(420), 1, - sym_match_block, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1744), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3902), 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, @@ -154234,7 +154531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44685] = 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, + [44287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154242,7 +154546,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154258,7 +154562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3762), 23, + ACTIONS(3914), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154282,7 +154586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44738] = 5, + [44340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154290,7 +154594,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154306,7 +154610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 23, + ACTIONS(3906), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154330,7 +154634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44791] = 5, + [44393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154338,7 +154642,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154354,7 +154658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 23, + ACTIONS(3942), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154378,61 +154682,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44844] = 22, + [44446] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4400), 1, anon_sym_EQ, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(3958), 2, - anon_sym_LPAREN, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + STATE(421), 1, + sym_match_block, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4398), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154443,37 +154748,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44931] = 5, + [44535] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4378), 1, anon_sym_CARET, + ACTIONS(4380), 1, anon_sym_AMP, + ACTIONS(4382), 1, anon_sym_PIPE, + ACTIONS(4384), 1, + anon_sym_AMP_AMP, + ACTIONS(4386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4394), 1, + anon_sym_DOT_DOT, + ACTIONS(4400), 1, + anon_sym_EQ, + ACTIONS(3974), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3846), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4396), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4376), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4390), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4398), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154484,67 +154813,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, - [44984] = 21, + [44622] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4408), 1, + anon_sym_SEMI, + ACTIONS(4410), 1, + anon_sym_else, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4118), 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(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154555,7 +154879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45069] = 5, + [44711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154563,7 +154887,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(3820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154579,7 +154903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 23, + ACTIONS(3818), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154603,37 +154927,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45122] = 5, + [44764] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 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, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4412), 1, + anon_sym_RPAREN, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3766), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154644,14 +154993,7 @@ 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, - [45175] = 5, + [44853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154659,7 +155001,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154675,7 +155017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(3830), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154699,7 +155041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45228] = 5, + [44906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154707,7 +155049,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3510), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154723,7 +155065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(3508), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154747,37 +155089,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45281] = 5, + [44959] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1755), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3860), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4416), 1, + anon_sym_RBRACE, + ACTIONS(4418), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3858), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154788,14 +155155,7 @@ 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, - [45334] = 5, + [45048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154803,7 +155163,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154819,7 +155179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 23, + ACTIONS(3838), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154843,7 +155203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45387] = 5, + [45101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154851,7 +155211,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(3844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154867,7 +155227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 23, + ACTIONS(3842), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154891,7 +155251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45440] = 5, + [45154] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154899,7 +155259,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154915,7 +155275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, + ACTIONS(3846), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154939,61 +155299,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45493] = 22, + [45207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1483), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4412), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1759), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1485), 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, @@ -155004,7 +155340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45580] = 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, + [45260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155012,7 +155355,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155028,7 +155371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 23, + ACTIONS(3854), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155052,7 +155395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45633] = 5, + [45313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155060,7 +155403,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155076,7 +155419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 23, + ACTIONS(4006), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155100,7 +155443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45686] = 5, + [45366] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155108,7 +155451,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(3762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155124,7 +155467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 23, + ACTIONS(3760), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155148,85 +155491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45739] = 21, + [45419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4414), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 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, - [45824] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3808), 14, + ACTIONS(3766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155240,10 +155513,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(3806), 21, + ACTIONS(3764), 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, @@ -155263,15 +155539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45883] = 5, + [45472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155287,7 +155563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 23, + ACTIONS(3768), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155311,15 +155587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45936] = 5, + [45525] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155335,7 +155611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 23, + ACTIONS(3772), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155359,15 +155635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45989] = 5, + [45578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155383,7 +155659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 23, + ACTIONS(3776), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155407,15 +155683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46042] = 5, + [45631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155431,7 +155707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 23, + ACTIONS(3780), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155455,15 +155731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46095] = 5, + [45684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155479,7 +155755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 23, + ACTIONS(3784), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155503,37 +155779,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46148] = 5, + [45737] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3948), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4202), 1, anon_sym_CARET, + ACTIONS(4204), 1, anon_sym_AMP, + ACTIONS(4206), 1, anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4222), 1, + anon_sym_DOT_DOT, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3946), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4224), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4420), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4218), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155544,14 +155843,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_as, - [46201] = 5, + [45822] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4270), 1, + sym_identifier, + ACTIONS(4272), 1, + anon_sym_LBRACE, + ACTIONS(4276), 1, + anon_sym_STAR, + ACTIONS(4282), 1, + anon_sym_COLON_COLON, + ACTIONS(4286), 1, + sym_metavariable, + ACTIONS(4422), 1, + anon_sym_RBRACE, + STATE(2508), 1, + sym_scoped_identifier, + STATE(3192), 1, + sym__use_clause, + STATE(3515), 1, + sym_bracketed_type, + STATE(3712), 1, + sym_generic_type_with_turbofish, + STATE(1770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4284), 3, + sym_self, + sym_super, + sym_crate, + STATE(2875), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4278), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [45899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155559,7 +155911,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155575,7 +155927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 23, + ACTIONS(4048), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155599,81 +155951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46254] = 23, + [45952] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [46343] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1773), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155689,7 +155975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 23, + ACTIONS(3918), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155713,15 +155999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46396] = 5, + [46005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155737,7 +156023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 23, + ACTIONS(3922), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155761,15 +156047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46449] = 5, + [46058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155785,7 +156071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 23, + ACTIONS(3926), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155809,60 +156095,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46502] = 21, + [46111] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4424), 1, + anon_sym_SEMI, + ACTIONS(4426), 1, + anon_sym_else, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1776), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 12, + ACTIONS(4114), 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, + [46200] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3932), 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(3930), 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, @@ -155873,7 +156202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46587] = 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, + [46253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155881,7 +156217,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, + ACTIONS(1589), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155897,7 +156233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1587), 23, + ACTIONS(1591), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155921,7 +156257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46640] = 5, + [46306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155929,7 +156265,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155945,7 +156281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 23, + ACTIONS(1505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155969,7 +156305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46693] = 5, + [46359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155977,7 +156313,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155993,7 +156329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 23, + ACTIONS(1539), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156017,7 +156353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46746] = 5, + [46412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -156025,7 +156361,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156041,7 +156377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156065,7 +156401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46799] = 5, + [46465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -156073,7 +156409,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(1499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156089,7 +156425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 23, + ACTIONS(1497), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156113,7 +156449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46852] = 5, + [46518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -156121,7 +156457,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156137,7 +156473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156161,60 +156497,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46905] = 21, + [46571] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4030), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156225,61 +156562,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46990] = 22, + [46658] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4428), 1, + anon_sym_SEMI, + ACTIONS(4430), 1, + anon_sym_else, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156290,81 +156628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47077] = 23, + [46747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4418), 1, - anon_sym_SEMI, - ACTIONS(4420), 1, - anon_sym_else, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [47166] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1786), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156380,7 +156652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 23, + ACTIONS(3970), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156404,15 +156676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47219] = 5, + [46800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156428,7 +156700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 23, + ACTIONS(1491), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156452,101 +156724,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47272] = 21, + [46853] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, + ACTIONS(4155), 1, anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 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, - [47357] = 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(1483), 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(1481), 23, + ACTIONS(4153), 12, 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, @@ -156557,22 +156788,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, - [47410] = 5, + [46938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156588,7 +156812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3758), 23, + ACTIONS(1447), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156612,15 +156836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47463] = 5, + [46991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(1529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156636,7 +156860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 23, + ACTIONS(1527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156660,61 +156884,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47516] = 22, + [47044] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, ACTIONS(3878), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1792), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156725,15 +156949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47603] = 5, + [47131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1793), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156749,7 +156973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 23, + ACTIONS(1471), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156773,27 +156997,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47656] = 10, + [47184] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_DOT, ACTIONS(4364), 1, + anon_sym_as, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3752), 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(3748), 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, + 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, + [47245] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4432), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [47332] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, anon_sym_as, STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, + ACTIONS(3752), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, @@ -156805,7 +157146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156826,42 +157167,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47719] = 13, + [47395] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4344), 1, + anon_sym_AMP, + ACTIONS(4358), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4364), 1, anon_sym_as, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, + ACTIONS(3752), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156882,33 +157223,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47788] = 12, + [47464] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4358), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4364), 1, anon_sym_as, - ACTIONS(4382), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(3752), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156916,7 +157257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156937,43 +157278,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47855] = 14, + [47531] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3752), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156994,50 +157335,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47926] = 17, + [47602] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(3752), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 16, + ACTIONS(3748), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157054,52 +157395,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48003] = 18, + [47679] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(3752), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 15, + ACTIONS(3748), 15, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE_PIPE, @@ -157115,30 +157456,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48082] = 11, + [47758] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4358), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4364), 1, anon_sym_as, - ACTIONS(4382), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(3752), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -157148,7 +157489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157169,58 +157510,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48147] = 21, + [47823] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4112), 1, + ACTIONS(4147), 1, anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, + ACTIONS(4145), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157233,58 +157574,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48232] = 21, + [47908] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, + ACTIONS(4151), 1, anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, + ACTIONS(4149), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157297,44 +157638,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48317] = 15, + [47993] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4382), 2, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + ACTIONS(3752), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3748), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157355,54 +157696,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48390] = 19, + [48066] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4159), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 14, + ACTIONS(4157), 14, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157417,7 +157758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48471] = 5, + [48147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157425,7 +157766,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157441,7 +157782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 23, + ACTIONS(3890), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157465,7 +157806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48524] = 5, + [48200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157473,7 +157814,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157489,7 +157830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3746), 23, + ACTIONS(3894), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157513,7 +157854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48577] = 5, + [48253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157521,7 +157862,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157537,7 +157878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1511), 23, + ACTIONS(1459), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157561,7 +157902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48630] = 5, + [48306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157569,7 +157910,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 15, + ACTIONS(1545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157585,7 +157926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1515), 23, + ACTIONS(1543), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157609,61 +157950,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48683] = 22, + [48359] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(3958), 2, + ACTIONS(3974), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157674,7 +158015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48770] = 5, + [48446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157682,7 +158023,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 15, + ACTIONS(1519), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157698,7 +158039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1535), 23, + ACTIONS(1517), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157722,7 +158063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48823] = 5, + [48499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157730,7 +158071,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157746,7 +158087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 23, + ACTIONS(3822), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157770,7 +158111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48876] = 5, + [48552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157778,7 +158119,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(3958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157794,7 +158135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 23, + ACTIONS(3956), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157818,7 +158159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48929] = 5, + [48605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157826,7 +158167,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157842,7 +158183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157866,7 +158207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48982] = 5, + [48658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157874,7 +158215,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1537), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157890,7 +158231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 23, + ACTIONS(1535), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157914,7 +158255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49035] = 5, + [48711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157922,7 +158263,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(1445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157938,7 +158279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 23, + ACTIONS(1443), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157962,7 +158303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49088] = 5, + [48764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -157970,7 +158311,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 15, + ACTIONS(1489), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157986,7 +158327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1473), 23, + ACTIONS(1487), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158010,7 +158351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49141] = 5, + [48817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -158018,7 +158359,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158034,7 +158375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 23, + ACTIONS(1465), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158058,7 +158399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49194] = 5, + [48870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -158066,7 +158407,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(1457), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158082,7 +158423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 23, + ACTIONS(1455), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158106,7 +158447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49247] = 5, + [48923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -158114,7 +158455,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158130,7 +158471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 23, + ACTIONS(999), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158154,7 +158495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49300] = 5, + [48976] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -158162,7 +158503,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(907), 15, + ACTIONS(1007), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158178,7 +158519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(909), 23, + ACTIONS(1009), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158202,15 +158543,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49353] = 5, + [49029] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4378), 1, + anon_sym_CARET, + ACTIONS(4380), 1, + anon_sym_AMP, + ACTIONS(4382), 1, + anon_sym_PIPE, + ACTIONS(4384), 1, + anon_sym_AMP_AMP, + ACTIONS(4386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4394), 1, + anon_sym_DOT_DOT, + ACTIONS(4400), 1, + anon_sym_EQ, + ACTIONS(4030), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4392), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4396), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(4376), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4390), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4398), 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, + [49116] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1017), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158226,7 +158632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 23, + ACTIONS(1019), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158250,15 +158656,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49406] = 5, + [49169] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4342), 1, + anon_sym_CARET, + ACTIONS(4344), 1, + anon_sym_AMP, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4348), 1, + anon_sym_AMP_AMP, + ACTIONS(4350), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, + anon_sym_DOT_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4436), 1, + anon_sym_EQ, + ACTIONS(4030), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4356), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4354), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4434), 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, + [49256] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, + ACTIONS(1025), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158274,7 +158745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(913), 23, + ACTIONS(1027), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158298,15 +158769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49459] = 5, + [49309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(1503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158322,7 +158793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 23, + ACTIONS(1501), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158346,61 +158817,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49512] = 22, + [49362] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4424), 1, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4436), 1, anon_sym_EQ, - ACTIONS(4022), 2, + ACTIONS(3878), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4382), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4434), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158411,15 +158882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49599] = 5, + [49449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(915), 15, + ACTIONS(1029), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158435,7 +158906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(917), 23, + ACTIONS(1031), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158459,15 +158930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49652] = 5, + [49502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158483,7 +158954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(1513), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158507,62 +158978,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49705] = 23, + [49555] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4426), 1, - anon_sym_RPAREN, - ACTIONS(4428), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4436), 1, + anon_sym_EQ, + ACTIONS(3974), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4434), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158573,61 +159043,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49794] = 22, + [49642] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(3878), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + ACTIONS(4438), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158638,15 +159108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49881] = 5, + [49729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1829), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158662,7 +159132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(921), 23, + ACTIONS(1485), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158686,15 +159156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49934] = 5, + [49782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158710,7 +159180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 23, + ACTIONS(3982), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158734,80 +159204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49987] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(3958), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 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, - [50074] = 5, + [49835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1832), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158823,7 +159228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 23, + ACTIONS(1051), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158847,15 +159252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50127] = 5, + [49888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1833), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, + ACTIONS(1053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158871,7 +159276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3998), 23, + ACTIONS(1055), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158895,15 +159300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50180] = 5, + [49941] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1834), 2, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_DOT, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(3864), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158917,13 +159328,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(4002), 23, + ACTIONS(3862), 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, @@ -158943,15 +159351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50233] = 5, + [50000] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_DOT, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(3868), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158965,13 +159379,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(1039), 23, + ACTIONS(3866), 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, @@ -158991,37 +159402,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50286] = 5, + [50059] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1041), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1043), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4440), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1837), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159032,44 +159467,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, - [50339] = 5, + [50146] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1837), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4024), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4022), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4442), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159080,22 +159532,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, - [50392] = 5, + [50233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(3738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159111,7 +159556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 23, + ACTIONS(3734), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159135,15 +159580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50445] = 5, + [50286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159159,7 +159604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 23, + ACTIONS(3910), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159183,15 +159628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50498] = 5, + [50339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159207,7 +159652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3792), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159231,85 +159676,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50551] = 5, + [50392] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4030), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4444), 1, + anon_sym_RPAREN, + ACTIONS(4446), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4028), 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(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50604] = 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(4034), 15, - anon_sym_PLUS, + ACTIONS(4100), 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(4032), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159320,69 +159742,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, - [50657] = 23, + [50481] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(129), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4430), 1, - anon_sym_RPAREN, - ACTIONS(4432), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159393,7 +159808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50746] = 5, + [50570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -159401,7 +159816,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159417,7 +159832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 23, + ACTIONS(3878), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159441,62 +159856,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50799] = 23, + [50623] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, + ACTIONS(299), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159507,7 +159922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50888] = 5, + [50712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -159515,7 +159930,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159531,7 +159946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 23, + ACTIONS(1485), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159555,37 +159970,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50941] = 5, + [50765] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1847), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3832), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4378), 1, anon_sym_CARET, + ACTIONS(4380), 1, anon_sym_AMP, + ACTIONS(4382), 1, anon_sym_PIPE, + ACTIONS(4384), 1, + anon_sym_AMP_AMP, + ACTIONS(4386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4400), 1, + anon_sym_EQ, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4450), 1, + anon_sym_LBRACE, + STATE(1442), 1, + sym_match_block, + ACTIONS(4374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3830), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4406), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4376), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4390), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4398), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159596,68 +160036,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, - anon_sym_as, - [50994] = 22, + [50854] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(403), 2, anon_sym_EQ, - ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4434), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(401), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159668,62 +160096,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51081] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50935] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4436), 1, - anon_sym_LBRACE, - STATE(1493), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(4452), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159734,21 +160163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51170] = 8, + [51022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 14, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159762,10 +160185,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(4040), 21, + ACTIONS(3986), 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, @@ -159785,127 +160211,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51229] = 22, + [51075] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4438), 2, + ACTIONS(301), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51316] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159916,62 +160277,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51405] = 23, + [51164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1291), 1, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3790), 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(3788), 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, + [51217] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1287), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, + ACTIONS(4414), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159982,46 +160391,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51494] = 17, + [51306] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4270), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4276), 1, anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(4282), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4286), 1, sym_metavariable, - ACTIONS(4440), 1, + ACTIONS(4454), 1, anon_sym_RBRACE, - STATE(2502), 1, + STATE(2508), 1, sym_scoped_identifier, - STATE(3365), 1, + STATE(3192), 1, sym__use_clause, - STATE(3461), 1, + STATE(3515), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3712), 1, sym_generic_type_with_turbofish, STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4284), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(2875), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4278), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160042,80 +160451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [51571] = 22, + [51383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4442), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51658] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1856), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160131,7 +160475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 23, + ACTIONS(3796), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160155,62 +160499,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51711] = 23, + [51436] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4444), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - ACTIONS(4446), 1, + ACTIONS(4458), 1, anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160221,15 +160565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51800] = 5, + [51525] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160245,7 +160589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3946), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160269,62 +160613,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51853] = 23, + [51578] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, + ACTIONS(303), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160335,62 +160679,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51942] = 23, + [51667] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1053), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + ACTIONS(4460), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160401,62 +160744,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52031] = 23, + [51754] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4448), 1, + ACTIONS(4462), 1, anon_sym_SEMI, - ACTIONS(4450), 1, + ACTIONS(4464), 1, anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160467,62 +160810,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52120] = 23, + [51843] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1323), 1, + anon_sym_RPAREN, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4452), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160533,62 +160876,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52209] = 23, + [51932] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4454), 1, + ACTIONS(4466), 1, anon_sym_SEMI, - ACTIONS(4456), 1, + ACTIONS(4468), 1, anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160599,62 +160942,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52298] = 23, + [52021] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4458), 1, + ACTIONS(4470), 1, anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160665,62 +161008,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52387] = 23, + [52110] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, - anon_sym_SEMI, - ACTIONS(4462), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4472), 1, + anon_sym_RPAREN, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160731,62 +161074,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52476] = 23, + [52199] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4474), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4476), 1, + anon_sym_else, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160797,62 +161140,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52565] = 23, + [52288] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1061), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4478), 1, + anon_sym_SEMI, + ACTIONS(4480), 1, + anon_sym_else, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160863,56 +161206,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52654] = 19, + [52377] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(307), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(403), 2, + ACTIONS(4116), 1, anon_sym_EQ, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - STATE(1868), 2, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(401), 14, + ACTIONS(4114), 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, + [52466] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3816), 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(3814), 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, @@ -160923,62 +161313,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, - [52735] = 21, + anon_sym_as, + [52519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3802), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1869), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3800), 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, @@ -160989,62 +161361,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52820] = 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, + [52572] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + STATE(1870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3828), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4404), 1, - anon_sym_DOT_DOT, - ACTIONS(4464), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_match_block, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3826), 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(1870), 2, + anon_sym_as, + [52625] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(3852), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 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(3850), 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, @@ -161055,58 +161457,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52909] = 21, + 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, + [52678] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(403), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 12, + ACTIONS(401), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -161119,58 +161524,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52994] = 21, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52759] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(351), 1, + anon_sym_EQ, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 12, + ACTIONS(345), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -161183,62 +161590,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53079] = 23, + [52844] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4400), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4482), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_match_block, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4406), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4398), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161249,62 +161656,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53168] = 23, + [52933] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4173), 1, + anon_sym_EQ, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4171), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161315,62 +161720,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53257] = 23, + [53018] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4180), 1, + anon_sym_EQ, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_RPAREN, - ACTIONS(4090), 2, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4178), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161381,122 +161784,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53346] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - ACTIONS(4468), 1, - anon_sym_RBRACE, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1876), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [53423] = 23, + [53103] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, + ACTIONS(309), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161507,62 +161850,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53512] = 23, + [53192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1878), 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, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4470), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1878), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3804), 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, @@ -161573,62 +161891,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53601] = 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, + [53245] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(4484), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161639,62 +161963,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53690] = 23, + [53332] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4108), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4472), 1, - anon_sym_LBRACE, - STATE(1791), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161705,62 +162029,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53779] = 23, + [53421] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(1137), 1, + anon_sym_RPAREN, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161771,7 +162095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53868] = 5, + [53510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -161779,7 +162103,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(3812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161795,7 +162119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 23, + ACTIONS(3810), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161819,62 +162143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53921] = 23, + [53563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1883), 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(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1883), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + 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, @@ -161885,62 +162184,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54010] = 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, + [53616] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(351), 1, + anon_sym_EQ, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(345), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161951,62 +162255,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54099] = 23, + [53701] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4474), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162017,15 +162321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54188] = 5, + [53790] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_DOT, STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3860), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -162039,13 +162349,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(3842), 23, + ACTIONS(3858), 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, @@ -162065,62 +162372,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54241] = 23, + [53849] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4486), 1, + anon_sym_RBRACE, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162131,62 +162438,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54330] = 23, + [53938] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4488), 1, + anon_sym_RBRACE, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162197,62 +162504,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54419] = 23, + [54027] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(315), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162263,62 +162570,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54508] = 23, + [54116] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4378), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4380), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4382), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4384), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4386), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4400), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4476), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4490), 1, + anon_sym_LBRACE, + STATE(1789), 1, + sym_match_block, + ACTIONS(4374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4406), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4376), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4398), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162329,62 +162636,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54597] = 23, + [54205] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(317), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162395,62 +162702,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54686] = 23, + [54294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + STATE(1892), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3872), 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(3870), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3794), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3796), 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, + [54347] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4492), 1, + anon_sym_RBRACE, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162461,62 +162816,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54775] = 23, + [54436] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, + ACTIONS(319), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162527,62 +162882,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54864] = 23, + [54525] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1285), 1, + anon_sym_RPAREN, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4478), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162593,62 +162948,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54953] = 23, + [54614] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4496), 1, + anon_sym_RBRACE, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 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, + [54703] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1897), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3936), 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(3934), 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, @@ -162659,62 +163055,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55042] = 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, + [54756] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, + ACTIONS(323), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162725,62 +163128,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55131] = 23, + [54845] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, + ACTIONS(325), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162791,62 +163194,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55220] = 23, + [54934] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4480), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162857,61 +163260,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55309] = 22, + [55023] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4498), 1, + anon_sym_RBRACE, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4482), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1899), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162922,61 +163326,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55396] = 22, + [55112] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(331), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4484), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1900), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162987,61 +163392,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55483] = 22, + [55201] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4486), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1901), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163052,37 +163458,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55570] = 5, + [55290] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1902), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3984), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3982), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1904), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163093,44 +163524,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, - [55623] = 5, + [55379] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1903), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4500), 1, + anon_sym_RBRACE, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3990), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163141,44 +163590,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, - [55676] = 5, + [55468] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1904), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3996), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(339), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3994), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163189,44 +163656,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, - [55729] = 5, + [55557] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1905), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3876), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(341), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3874), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163237,44 +163722,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, - [55782] = 5, + [55646] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1906), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4012), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(125), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_CARET, + ACTIONS(4104), 1, anon_sym_AMP, + ACTIONS(4106), 1, anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4010), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163285,67 +163788,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, - [55835] = 21, + [55735] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4502), 1, + anon_sym_RBRACE, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1907), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4488), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4216), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163356,15 +163854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55920] = 5, + [55824] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1908), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163380,7 +163878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 23, + ACTIONS(3898), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163404,15 +163902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55973] = 5, + [55877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1909), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163428,7 +163926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 23, + ACTIONS(3990), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163452,81 +163950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56026] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1910), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56115] = 5, + [55930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1911), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(3514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163542,7 +163974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3878), 23, + ACTIONS(3512), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163566,62 +163998,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56168] = 23, + [55983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1913), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4000), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4490), 1, - anon_sym_SEMI, - ACTIONS(4492), 1, - anon_sym_else, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1912), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3998), 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, @@ -163632,15 +164039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56257] = 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, + [56036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1913), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163656,7 +164070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(4002), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163680,62 +164094,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56310] = 23, + [56089] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4202), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4222), 1, anon_sym_DOT_DOT, - ACTIONS(4494), 1, - anon_sym_RBRACE, - ACTIONS(4496), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4224), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1914), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4504), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163746,103 +164158,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56399] = 23, + [56174] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4173), 1, + anon_sym_EQ, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4348), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_SEMI, - ACTIONS(4500), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56488] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1916), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3900), 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(3898), 23, + ACTIONS(4171), 12, 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, @@ -163853,67 +164222,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, - [56541] = 22, + [56259] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4202), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4204), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4210), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4222), 1, anon_sym_DOT_DOT, - ACTIONS(4502), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4508), 1, + anon_sym_AMP_AMP, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4212), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4224), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(4506), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4200), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4218), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4214), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163924,60 +164287,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56627] = 22, + [56346] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(293), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4504), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163988,118 +164353,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56713] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [56435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3760), 1, - sym__use_clause, STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [56787] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(3876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4506), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1920), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3874), 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, @@ -164110,60 +164394,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56873] = 22, + 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, + [56488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4508), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1921), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1509), 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, @@ -164174,60 +164442,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56959] = 22, + 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, + [56541] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, ACTIONS(4510), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1922), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164238,59 +164513,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57045] = 21, + [56627] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4512), 1, + anon_sym_RBRACK, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4414), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4514), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1923), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164301,60 +164577,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57129] = 22, + [56713] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4436), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4514), 1, anon_sym_DOT_DOT, - ACTIONS(4516), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4420), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4516), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1924), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4434), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164365,60 +164640,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57215] = 22, + [56797] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, ACTIONS(4518), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1925), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164429,60 +164704,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57301] = 22, + [56883] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, ACTIONS(4520), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164493,60 +164768,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57387] = 22, + [56969] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4364), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, ACTIONS(4522), 1, - anon_sym_AMP_AMP, - ACTIONS(4382), 2, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4514), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1927), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164557,60 +164832,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57473] = 22, + [57055] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, ACTIONS(4524), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1928), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164621,60 +164896,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57559] = 22, + [57141] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4526), 1, + anon_sym_RBRACK, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1929), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164685,44 +164960,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57645] = 16, + [57227] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4270), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4276), 1, anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(4282), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4286), 1, sym_metavariable, - STATE(2502), 1, + STATE(2508), 1, sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3482), 1, + STATE(3192), 1, sym__use_clause, - STATE(3618), 1, + STATE(3515), 1, + sym_bracketed_type, + STATE(3712), 1, sym_generic_type_with_turbofish, - STATE(1930), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4284), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(2875), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4278), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164743,60 +165018,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [57719] = 22, + [57301] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4526), 1, + ACTIONS(4528), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164807,60 +165082,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57805] = 22, + [57387] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4528), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4530), 1, + anon_sym_RBRACK, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1932), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164871,60 +165146,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57891] = 22, + [57473] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4530), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4532), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1933), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164935,59 +165210,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57977] = 21, + [57559] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4534), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4488), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4514), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164998,60 +165274,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58061] = 22, + [57645] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4536), 1, + anon_sym_RBRACK, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165062,44 +165338,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58147] = 16, + [57731] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4270), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4276), 1, anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(4282), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4286), 1, sym_metavariable, - STATE(2502), 1, + STATE(2508), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3515), 1, sym_bracketed_type, - STATE(3584), 1, + STATE(3686), 1, sym__use_clause, - STATE(3618), 1, + STATE(3712), 1, sym_generic_type_with_turbofish, - STATE(1936), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4284), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(2875), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4278), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165120,60 +165396,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [58221] = 22, + [57805] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4334), 1, + anon_sym_LBRACK, + ACTIONS(4340), 1, + anon_sym_QMARK, + ACTIONS(4342), 1, + anon_sym_CARET, + ACTIONS(4344), 1, + anon_sym_AMP, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4350), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4436), 1, + anon_sym_EQ, + ACTIONS(4514), 1, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4356), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4504), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4516), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4354), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4434), 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, + [57889] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4534), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4538), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [57975] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1938), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, + [58061] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4542), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1939), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165184,60 +165651,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58307] = 22, + [58147] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4536), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4544), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165248,60 +165715,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58393] = 22, + [58233] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4538), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4546), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165312,60 +165779,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58479] = 22, + [58319] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4540), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4548), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165376,60 +165843,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58565] = 22, + [58405] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4270), 1, + sym_identifier, + ACTIONS(4272), 1, + anon_sym_LBRACE, + ACTIONS(4276), 1, + anon_sym_STAR, + ACTIONS(4282), 1, + anon_sym_COLON_COLON, + ACTIONS(4286), 1, + sym_metavariable, + STATE(2508), 1, + sym_scoped_identifier, + STATE(3515), 1, + sym_bracketed_type, + STATE(3673), 1, + sym__use_clause, + STATE(3712), 1, + sym_generic_type_with_turbofish, + STATE(1943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4284), 3, + sym_self, + sym_super, + sym_crate, + STATE(2875), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4278), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [58479] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4340), 1, anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4342), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4344), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4350), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4358), 1, + anon_sym_DOT, + ACTIONS(4364), 1, + anon_sym_as, + ACTIONS(4436), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4506), 1, + anon_sym_EQ_GT, + ACTIONS(4514), 1, anon_sym_DOT_DOT, - ACTIONS(4542), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4550), 1, + anon_sym_AMP_AMP, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4356), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4516), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4434), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165440,60 +165965,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58651] = 22, + [58565] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4544), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4552), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1942), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165504,60 +166029,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58737] = 22, + [58651] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4270), 1, + sym_identifier, + ACTIONS(4272), 1, + anon_sym_LBRACE, + ACTIONS(4276), 1, + anon_sym_STAR, + ACTIONS(4282), 1, + anon_sym_COLON_COLON, + ACTIONS(4286), 1, + sym_metavariable, + STATE(2508), 1, + sym_scoped_identifier, + STATE(3515), 1, + sym_bracketed_type, + STATE(3678), 1, + sym__use_clause, + STATE(3712), 1, + sym_generic_type_with_turbofish, + STATE(1946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4284), 3, + sym_self, + sym_super, + sym_crate, + STATE(2875), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4278), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [58725] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4546), 1, + ACTIONS(4554), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165568,60 +166151,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58823] = 22, + [58811] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4548), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165632,60 +166215,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58909] = 22, + [58897] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4556), 1, + anon_sym_RBRACK, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1945), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165696,60 +166279,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58995] = 22, + [58983] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4550), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4558), 1, + anon_sym_RBRACK, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1946), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165760,60 +166343,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59081] = 22, + [59069] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4552), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4560), 1, + anon_sym_RBRACK, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165824,60 +166407,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59167] = 22, + [59155] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4554), 1, + ACTIONS(4562), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165888,44 +166471,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59253] = 16, + [59241] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4270), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4276), 1, anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(4282), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4286), 1, sym_metavariable, - STATE(2502), 1, + STATE(2508), 1, sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, + STATE(3515), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3670), 1, + sym__use_clause, + STATE(3712), 1, sym_generic_type_with_turbofish, - STATE(1949), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4284), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(2875), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4278), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165946,60 +166529,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59327] = 22, + [59315] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4556), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4564), 1, + anon_sym_COMMA, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1950), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166010,60 +166593,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59413] = 22, + [59401] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4558), 1, + ACTIONS(4566), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166074,60 +166657,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59499] = 22, + [59487] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3750), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3754), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3758), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4102), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4104), 1, anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_AMP_AMP, ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4230), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, + ACTIONS(4568), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4098), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4112), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4120), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4232), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4100), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4118), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4114), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166138,64 +166721,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59585] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59573] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3722), 1, - sym__use_clause, - STATE(1953), 2, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_QMARK, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_as, + ACTIONS(4102), 1, + anon_sym_CARET, + ACTIONS(4104), 1, + anon_sym_AMP, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4116), 1, + anon_sym_EQ, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4098), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4120), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, + ACTIONS(4100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4118), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4114), 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, [59659] = 17, ACTIONS(29), 1, anon_sym_LT, @@ -166203,40 +166792,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4562), 1, + ACTIONS(4570), 1, sym_identifier, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4580), 1, sym_metavariable, STATE(3144), 1, sym_scoped_type_identifier, - STATE(3422), 1, + STATE(3396), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1954), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166261,40 +166850,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4580), 1, sym_metavariable, - ACTIONS(4574), 1, + ACTIONS(4582), 1, sym_identifier, - STATE(3151), 1, + STATE(2920), 1, sym_scoped_type_identifier, - STATE(3438), 1, + STATE(3199), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1955), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166319,40 +166908,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4580), 1, sym_metavariable, - ACTIONS(4576), 1, + ACTIONS(4584), 1, sym_identifier, - STATE(3045), 1, + STATE(3087), 1, sym_scoped_type_identifier, - STATE(3264), 1, + STATE(3343), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1956), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166377,40 +166966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4580), 1, sym_metavariable, - ACTIONS(4578), 1, + ACTIONS(4586), 1, sym_identifier, - STATE(3013), 1, + STATE(3143), 1, sym_scoped_type_identifier, - STATE(3172), 1, + STATE(3428), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1957), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166435,40 +167024,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, ACTIONS(4580), 1, + sym_metavariable, + ACTIONS(4588), 1, sym_identifier, - STATE(3147), 1, + STATE(2922), 1, sym_scoped_type_identifier, - STATE(3430), 1, + STATE(3210), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1958), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166493,40 +167082,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4580), 1, sym_metavariable, - ACTIONS(4582), 1, + ACTIONS(4590), 1, sym_identifier, - STATE(2947), 1, + STATE(3136), 1, sym_scoped_type_identifier, - STATE(3185), 1, + STATE(3418), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1959), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166551,40 +167140,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4580), 1, sym_metavariable, - ACTIONS(4584), 1, + ACTIONS(4592), 1, sym_identifier, - STATE(2867), 1, + STATE(3145), 1, sym_scoped_type_identifier, - STATE(3389), 1, + STATE(3429), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1960), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166609,40 +167198,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3900), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4580), 1, sym_metavariable, - ACTIONS(4586), 1, + ACTIONS(4594), 1, sym_identifier, - STATE(3148), 1, + STATE(3150), 1, sym_scoped_type_identifier, - STATE(3432), 1, + STATE(3437), 1, sym_generic_type, - STATE(3477), 1, + STATE(3483), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3609), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3783), 1, sym_bracketed_type, - STATE(1961), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3898), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4576), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4578), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4572), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166665,14 +167254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1962), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4590), 3, + ACTIONS(4598), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4588), 29, + ACTIONS(4596), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166707,14 +167296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1963), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4594), 3, + ACTIONS(4602), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4592), 29, + ACTIONS(4600), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166749,14 +167338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4598), 3, + ACTIONS(4606), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4596), 29, + ACTIONS(4604), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166793,28 +167382,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3554), 1, - sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3730), 1, + sym_attribute, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1965), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166842,28 +167431,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3560), 1, + STATE(3485), 1, sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1966), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166891,28 +167480,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3695), 1, - sym_bracketed_type, - STATE(3709), 1, + STATE(3685), 1, sym_attribute, - STATE(3765), 1, + STATE(3714), 1, + sym_bracketed_type, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1967), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166940,28 +167529,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3619), 1, + STATE(3537), 1, sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1968), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166989,28 +167578,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3468), 1, + STATE(3517), 1, sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1969), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167038,28 +167627,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3492), 1, + STATE(3564), 1, sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1970), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167087,28 +167676,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3512), 1, + STATE(3610), 1, sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1971), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167136,28 +167725,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3558), 1, + STATE(3689), 1, sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1972), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167185,28 +167774,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4614), 1, sym_metavariable, - STATE(2348), 1, + STATE(2376), 1, sym_scoped_identifier, - STATE(3647), 1, + STATE(3704), 1, sym_attribute, - STATE(3695), 1, + STATE(3714), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3774), 1, sym_generic_type_with_turbofish, - STATE(1973), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4612), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167234,26 +167823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4608), 1, + ACTIONS(4616), 1, sym_identifier, - ACTIONS(4612), 1, + ACTIONS(4620), 1, anon_sym_COLON_COLON, - ACTIONS(4616), 1, + ACTIONS(4624), 1, sym_metavariable, - STATE(3364), 1, + STATE(3171), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3515), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3712), 1, sym_generic_type_with_turbofish, - STATE(1974), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(4614), 3, + ACTIONS(4622), 3, sym_self, sym_super, sym_crate, - ACTIONS(4610), 20, + ACTIONS(4618), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167281,26 +167870,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, + ACTIONS(4620), 1, anon_sym_COLON_COLON, - ACTIONS(4618), 1, + ACTIONS(4626), 1, sym_identifier, - ACTIONS(4624), 1, + ACTIONS(4632), 1, sym_metavariable, - STATE(3189), 1, + STATE(3201), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3515), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3712), 1, sym_generic_type_with_turbofish, - STATE(1975), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(4622), 3, + ACTIONS(4630), 3, sym_self, sym_super, sym_crate, - ACTIONS(4620), 20, + ACTIONS(4628), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167326,12 +167915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(1017), 1, anon_sym_DOT_DOT, - STATE(1976), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 20, + ACTIONS(1019), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167357,12 +167946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, + ACTIONS(1029), 1, anon_sym_DOT_DOT, - STATE(1977), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 20, + ACTIONS(1031), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167388,15 +167977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3485), 1, + ACTIONS(3502), 1, anon_sym_COLON, - ACTIONS(3489), 2, + ACTIONS(3506), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1978), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 17, + ACTIONS(3500), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167419,15 +168008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, + ACTIONS(3536), 1, anon_sym_COLON, - ACTIONS(3508), 2, + ACTIONS(3540), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1979), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 17, + ACTIONS(3534), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167450,46 +168039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, - anon_sym_COLON, - ACTIONS(3516), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1980), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3510), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - 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_for, - anon_sym_where, - anon_sym_else, - anon_sym_LT2, - [61259] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(3518), 1, anon_sym_COLON, - ACTIONS(3500), 2, + ACTIONS(3522), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1981), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 17, + ACTIONS(3516), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167507,36 +168065,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61296] = 14, + [61259] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(4636), 1, anon_sym_LPAREN, - ACTIONS(4630), 1, + ACTIONS(4638), 1, anon_sym_LBRACE, - ACTIONS(4632), 1, + ACTIONS(4640), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4636), 1, + ACTIONS(4644), 1, anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4642), 1, + ACTIONS(4650), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - ACTIONS(4640), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1982), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 9, + ACTIONS(4634), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167546,28 +168104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [61349] = 10, + [61312] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(3494), 1, + anon_sym_COLON, + ACTIONS(3498), 2, anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1983), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 13, + ACTIONS(3492), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -167578,21 +168130,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [61393] = 5, + anon_sym_LT2, + [61349] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3680), 1, - anon_sym_COLON, - STATE(1984), 2, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(2015), 1, + sym_type_arguments, + STATE(2082), 1, + sym_parameters, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 18, + ACTIONS(3432), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -167602,24 +168166,20 @@ static const uint16_t ts_small_parse_table[] = { 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_in, - [61427] = 5, + [61393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3712), 1, + ACTIONS(3720), 1, anon_sym_COLON, - STATE(1985), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 18, + ACTIONS(3718), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167638,51 +168198,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61461] = 5, + [61427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3694), 1, + ACTIONS(3538), 2, anon_sym_COLON, - STATE(1986), 2, + anon_sym_DOT_DOT, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 18, + ACTIONS(3534), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3540), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, 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, anon_sym_in, - [61495] = 6, + [61463] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, + ACTIONS(3520), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1987), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 3, + ACTIONS(3516), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3500), 14, + ACTIONS(3522), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167697,52 +168258,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61531] = 6, + [61499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(3690), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1988), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3516), 14, + ACTIONS(3688), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, 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, - [61567] = 6, + [61533] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1989), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, + ACTIONS(3492), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3508), 14, + ACTIONS(3498), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167757,57 +168317,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61603] = 6, + [61569] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(3712), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1990), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3489), 14, + ACTIONS(3710), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, 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, - [61639] = 10, + [61603] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, - STATE(1991), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 13, + ACTIONS(3450), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167821,6 +168380,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, + [61647] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3504), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1995), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3500), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3506), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, [61683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, @@ -167828,7 +168417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3704), 1, anon_sym_COLON, - STATE(1992), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, ACTIONS(3702), 18, @@ -167855,22 +168444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, - STATE(1993), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 13, + ACTIONS(3444), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167884,55 +168473,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61761] = 14, - ACTIONS(37), 1, - anon_sym_SQUOTE, + [61761] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - sym_identifier, - STATE(3732), 1, - sym_label, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1994), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(1629), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(2886), 3, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - STATE(3177), 3, - sym_block, - sym__literal, - sym_negative_literal, - [61812] = 5, + ACTIONS(3492), 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_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [61792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1995), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 16, + ACTIONS(3498), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167949,18 +168528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61845] = 5, + [61825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1996), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 16, + ACTIONS(3540), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167977,18 +168556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61878] = 5, + [61858] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(3520), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 16, + ACTIONS(3522), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -168005,52 +168584,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61911] = 4, + [61891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + ACTIONS(3504), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 18, + ACTIONS(3506), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, 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_for, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - anon_sym_LT2, - [61942] = 9, + anon_sym_in, + [61924] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4658), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, - STATE(1999), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 13, + ACTIONS(3454), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168064,119 +168644,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61983] = 5, + [61965] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2000), 2, + ACTIONS(1075), 1, + anon_sym_DASH, + ACTIONS(1125), 1, + aux_sym_string_literal_token1, + ACTIONS(1135), 1, + sym__raw_string_literal_start, + ACTIONS(1607), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + sym_identifier, + STATE(3738), 1, + sym_label, + ACTIONS(1127), 2, + anon_sym_true, + anon_sym_false, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 16, - 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_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [62016] = 11, + ACTIONS(1633), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(2986), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3235), 3, + sym_block, + sym__literal, + sym_negative_literal, + [62016] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, ACTIONS(4664), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, + anon_sym_const, + ACTIONS(4666), 1, + anon_sym_enum, + ACTIONS(4668), 1, + anon_sym_fn, + ACTIONS(4670), 1, + anon_sym_mod, + ACTIONS(4672), 1, + anon_sym_static, + ACTIONS(4674), 1, + anon_sym_struct, + ACTIONS(4676), 1, + anon_sym_trait, + ACTIONS(4678), 1, + anon_sym_type, + ACTIONS(4680), 1, + anon_sym_union, + ACTIONS(4682), 1, + anon_sym_unsafe, + ACTIONS(4684), 1, + anon_sym_use, + ACTIONS(4686), 1, + anon_sym_extern, + STATE(2219), 1, + sym_extern_modifier, + STATE(2280), 1, + aux_sym_function_modifiers_repeat1, + STATE(3545), 1, + sym_function_modifiers, ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2001), 2, + anon_sym_async, + anon_sym_default, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 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, - [62060] = 19, + [62076] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, + ACTIONS(4688), 1, anon_sym_const, - ACTIONS(4670), 1, + ACTIONS(4690), 1, anon_sym_enum, - ACTIONS(4672), 1, + ACTIONS(4692), 1, anon_sym_fn, - ACTIONS(4674), 1, + ACTIONS(4694), 1, anon_sym_mod, - ACTIONS(4676), 1, + ACTIONS(4696), 1, anon_sym_static, - ACTIONS(4678), 1, + ACTIONS(4698), 1, anon_sym_struct, - ACTIONS(4680), 1, + ACTIONS(4700), 1, anon_sym_trait, - ACTIONS(4682), 1, + ACTIONS(4702), 1, anon_sym_type, - ACTIONS(4684), 1, + ACTIONS(4704), 1, anon_sym_union, - ACTIONS(4686), 1, + ACTIONS(4706), 1, anon_sym_unsafe, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_use, - ACTIONS(4690), 1, + ACTIONS(4710), 1, anon_sym_extern, - STATE(2250), 1, + STATE(2247), 1, sym_extern_modifier, - STATE(2278), 1, + STATE(2280), 1, aux_sym_function_modifiers_repeat1, - STATE(3485), 1, + STATE(3760), 1, sym_function_modifiers, - ACTIONS(4666), 2, + ACTIONS(4662), 2, anon_sym_async, anon_sym_default, - STATE(2002), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - [62120] = 5, + [62136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3618), 1, + ACTIONS(3644), 1, anon_sym_COLON, - STATE(2003), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3616), 16, + ACTIONS(3642), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168193,92 +168790,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62152] = 12, + [62168] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(4714), 1, anon_sym_COLON, - ACTIONS(4658), 1, + ACTIONS(4716), 1, anon_sym_BANG, - ACTIONS(4660), 1, + ACTIONS(4718), 1, anon_sym_DOT_DOT, - ACTIONS(4692), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2013), 1, sym_type_arguments, - ACTIONS(4662), 2, + ACTIONS(4720), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2004), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4712), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62198] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4694), 1, - anon_sym_const, - ACTIONS(4696), 1, - anon_sym_enum, - ACTIONS(4698), 1, - anon_sym_fn, - ACTIONS(4700), 1, - anon_sym_mod, - ACTIONS(4702), 1, - anon_sym_static, - ACTIONS(4704), 1, - anon_sym_struct, - ACTIONS(4706), 1, - anon_sym_trait, - ACTIONS(4708), 1, - anon_sym_type, - ACTIONS(4710), 1, - anon_sym_union, - ACTIONS(4712), 1, - anon_sym_unsafe, - ACTIONS(4714), 1, - anon_sym_use, - ACTIONS(4716), 1, - anon_sym_extern, - STATE(2261), 1, - sym_extern_modifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(3754), 1, - sym_function_modifiers, - ACTIONS(4666), 2, - anon_sym_async, - anon_sym_default, - STATE(2005), 2, - sym_line_comment, - sym_block_comment, - [62258] = 5, + anon_sym_else, + anon_sym_in, + [62212] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, - anon_sym_COLON, - STATE(2006), 2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym_type_arguments, + STATE(2083), 1, + sym_parameters, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 16, + ACTIONS(3512), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168289,29 +168850,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62290] = 8, + [62250] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2083), 1, sym_parameters, - STATE(2007), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 13, + ACTIONS(3526), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168325,17 +168883,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62328] = 5, + [62288] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, - anon_sym_COLON, - STATE(2008), 2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym_type_arguments, + STATE(2083), 1, + sym_parameters, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 16, + ACTIONS(3508), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168346,29 +168910,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62360] = 8, + [62326] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2083), 1, sym_parameters, - STATE(2009), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 13, + ACTIONS(3530), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168382,23 +168943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62398] = 8, + [62364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2010), 2, + ACTIONS(3628), 1, + anon_sym_COLON, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 13, + ACTIONS(3626), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168409,75 +168964,84 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62436] = 8, + [62396] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, + ACTIONS(4714), 1, + anon_sym_COLON, + ACTIONS(4716), 1, + anon_sym_BANG, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4724), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2011), 2, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 13, - anon_sym_SEMI, + ACTIONS(4712), 3, 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_where, - anon_sym_else, - [62474] = 4, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + ACTIONS(3640), 1, + anon_sym_COLON, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3696), 16, + ACTIONS(3638), 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [62503] = 5, + [62474] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4718), 1, + ACTIONS(4726), 1, anon_sym_LPAREN, - STATE(2013), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(4150), 15, + ACTIONS(4138), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -168493,148 +169057,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62534] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3436), 1, - anon_sym_PLUS, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4630), 1, - anon_sym_LBRACE, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4720), 1, - anon_sym_LPAREN, - ACTIONS(4725), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4722), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2014), 2, - sym_line_comment, - sym_block_comment, - [62589] = 6, + [62505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2015), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 14, + ACTIONS(3666), 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, - [62622] = 4, + [62534] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + ACTIONS(3528), 1, + anon_sym_COLON, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3706), 16, + ACTIONS(3526), 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_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62651] = 16, + [62567] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4630), 1, - anon_sym_LBRACE, - ACTIONS(4632), 1, + ACTIONS(4636), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4730), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - ACTIONS(4640), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, + ACTIONS(4634), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [62704] = 4, + anon_sym_else, + anon_sym_in, + [62608] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + ACTIONS(3532), 1, + anon_sym_COLON, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 16, + ACTIONS(3530), 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, @@ -168644,20 +169167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62733] = 6, + [62641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3528), 1, + ACTIONS(3514), 1, anon_sym_COLON, - ACTIONS(4727), 1, + ACTIONS(4732), 1, anon_sym_COLON_COLON, - STATE(2019), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 14, + ACTIONS(3512), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168672,15 +169194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62766] = 4, + [62674] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 16, + ACTIONS(3714), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168692,53 +169214,66 @@ 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, - anon_sym_in, - [62795] = 6, + [62703] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, + ACTIONS(4634), 1, + anon_sym_PIPE, + ACTIONS(4638), 1, + anon_sym_LBRACE, + ACTIONS(4640), 1, anon_sym_COLON, - ACTIONS(4733), 1, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_AT, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4734), 1, + anon_sym_LPAREN, + ACTIONS(4736), 1, anon_sym_COLON_COLON, - STATE(2021), 2, + STATE(2015), 1, + sym_type_arguments, + STATE(2082), 1, + sym_parameters, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, - anon_sym_SEMI, + ACTIONS(3432), 3, 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, - [62828] = 4, + [62756] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2022), 2, + ACTIONS(3514), 1, + anon_sym_COLON, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 16, + ACTIONS(3512), 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, @@ -168748,16 +169283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62857] = 4, + [62789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2023), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3714), 16, + ACTIONS(3706), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168774,42 +169308,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62886] = 6, + [62818] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2024), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3722), 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, - [62919] = 4, + [62847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 16, + ACTIONS(1501), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168821,29 +169353,26 @@ 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, - [62948] = 6, + anon_sym_in, + [62876] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2026), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 14, + ACTIONS(1513), 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, @@ -168853,109 +169382,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62981] = 4, + anon_sym_in, + [62905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, + ACTIONS(3514), 1, + anon_sym_COLON, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 16, + ACTIONS(3512), 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_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63010] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2028), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63053] = 16, + [62938] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, + ACTIONS(4638), 1, anon_sym_LBRACE, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4636), 1, + ACTIONS(4644), 1, anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4722), 1, - anon_sym_RBRACK, - ACTIONS(4737), 1, + ACTIONS(4740), 1, anon_sym_LPAREN, - ACTIONS(4739), 1, + ACTIONS(4742), 1, + anon_sym_RBRACK, + ACTIONS(4745), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, - ACTIONS(3436), 2, + ACTIONS(3432), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(4640), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2029), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - [63106] = 4, + [62991] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 16, + ACTIONS(3692), 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, + [63020] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2032), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1051), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168972,19 +169497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [63135] = 6, + [63049] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, + ACTIONS(3510), 1, anon_sym_COLON, - ACTIONS(4741), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, - STATE(2031), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3508), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168999,35 +169524,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63168] = 10, + [63082] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, + ACTIONS(3432), 1, + anon_sym_PLUS, ACTIONS(4634), 1, - anon_sym_BANG, + anon_sym_PIPE, ACTIONS(4638), 1, + anon_sym_LBRACE, + ACTIONS(4640), 1, + anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_AT, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4743), 1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4747), 1, + anon_sym_LPAREN, + ACTIONS(4749), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + STATE(2015), 1, + sym_type_arguments, + STATE(2082), 1, + sym_parameters, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2032), 2, + ACTIONS(4742), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2034), 2, + sym_line_comment, + sym_block_comment, + [63137] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4716), 1, + anon_sym_BANG, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, + sym_type_arguments, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4712), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63180] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 9, + ACTIONS(1055), 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_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, anon_sym_in, [63209] = 4, @@ -169035,10 +169624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(3512), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169059,34 +169648,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 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, + ACTIONS(4126), 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, [63265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3918), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169107,10 +169696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, + ACTIONS(3922), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169131,7 +169720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, ACTIONS(3926), 15, @@ -169151,103 +169740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, [63349] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2038), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3930), 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, - [63377] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2039), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4138), 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, - [63405] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2040), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4130), 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, - [63433] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - STATE(2041), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 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, - [63463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169255,7 +169747,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(3902), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169271,15 +169763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63491] = 4, + [63377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_COLON_COLON, STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4146), 15, + ACTIONS(4143), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169294,8 +169788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [63519] = 4, + [63407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169303,7 +169796,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(3760), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169319,7 +169812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63547] = 4, + [63435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169327,7 +169820,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(3764), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169343,7 +169836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63575] = 4, + [63463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169351,7 +169844,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3906), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169367,7 +169860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63603] = 4, + [63491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169375,87 +169868,56 @@ static const uint16_t ts_small_parse_table[] = { STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 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, - [63631] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2048), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 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, - [63659] = 12, + ACTIONS(4130), 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, + [63519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, + ACTIONS(4092), 1, anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2049), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(4143), 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, - [63703] = 4, + [63549] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(3768), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169471,15 +169933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63731] = 4, + [63577] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3772), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169495,15 +169957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63759] = 4, + [63605] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3776), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169519,15 +169981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63787] = 4, + [63633] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 15, + ACTIONS(3780), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169543,15 +170005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63815] = 4, + [63661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3784), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169567,17 +170029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63843] = 5, + [63689] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(2055), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(4155), 14, + ACTIONS(4134), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169592,7 +170052,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [63873] = 4, + sym_identifier, + [63717] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2055), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3818), 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, + [63745] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169600,7 +170085,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 15, + ACTIONS(3822), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169616,7 +170101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63901] = 4, + [63773] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169624,7 +170109,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3952), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169640,7 +170125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63929] = 4, + [63801] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169648,7 +170133,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 15, + ACTIONS(3526), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169664,7 +170149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63957] = 4, + [63829] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169672,7 +170157,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + ACTIONS(3830), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169688,7 +170173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63985] = 4, + [63857] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169696,7 +170181,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 15, + ACTIONS(3508), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169712,7 +170197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64013] = 4, + [63885] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169720,7 +170205,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3846), 15, + ACTIONS(3838), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169736,7 +170221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64041] = 4, + [63913] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169744,7 +170229,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3842), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169760,7 +170245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64069] = 4, + [63941] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169768,7 +170253,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3854), 15, + ACTIONS(3956), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169784,7 +170269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64097] = 4, + [63969] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169792,7 +170277,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 15, + ACTIONS(3846), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169808,7 +170293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64125] = 4, + [63997] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169816,7 +170301,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 15, + ACTIONS(3854), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169832,7 +170317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64153] = 4, + [64025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169840,7 +170325,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3882), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169856,7 +170341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64181] = 4, + [64053] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169864,7 +170349,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3960), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169880,7 +170365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64209] = 4, + [64081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169888,7 +170373,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3898), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169904,7 +170389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64237] = 4, + [64109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169912,7 +170397,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3970), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169928,7 +170413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64265] = 4, + [64137] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -169936,7 +170421,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 15, + ACTIONS(3886), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169952,90 +170437,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64293] = 5, + [64165] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4749), 1, - anon_sym_DASH_GT, STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 13, + ACTIONS(3890), 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, - [64322] = 5, + [64193] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_DOT_DOT, STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 13, + ACTIONS(3894), 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, - [64351] = 6, + [64221] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4753), 1, - anon_sym_pat, - STATE(146), 1, - sym_fragment_specifier, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4712), 1, + anon_sym_PIPE, + ACTIONS(4714), 1, + anon_sym_COLON, + ACTIONS(4716), 1, + anon_sym_BANG, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, + sym_type_arguments, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(4751), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [64382] = 5, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 13, + ACTIONS(3530), 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, + [64293] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1025), 1, + anon_sym_DOT_DOT, + STATE(2075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1027), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170049,17 +170565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64411] = 5, + [64322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, + ACTIONS(1007), 1, anon_sym_DOT_DOT, - STATE(2075), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 13, + ACTIONS(1009), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170073,17 +170589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64440] = 5, + [64351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, + ACTIONS(4757), 1, anon_sym_DASH_GT, - STATE(2076), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 13, + ACTIONS(3696), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170097,48 +170613,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64469] = 5, + [64380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4761), 1, - anon_sym_DASH_GT, - STATE(2077), 2, + anon_sym_DOT_DOT, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 13, + ACTIONS(4759), 13, 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_where, anon_sym_else, - [64498] = 8, + anon_sym_in, + [64409] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, + ACTIONS(4714), 1, anon_sym_COLON, - ACTIONS(4660), 1, + ACTIONS(4718), 1, anon_sym_DOT_DOT, - ACTIONS(4664), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - ACTIONS(4662), 2, + ACTIONS(4720), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2078), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 9, + ACTIONS(4712), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170148,17 +170664,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64533] = 5, + [64444] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4763), 1, + ACTIONS(4765), 1, + anon_sym_pat, + STATE(187), 1, + sym_fragment_specifier, + STATE(2080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4763), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [64475] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, anon_sym_DASH_GT, - STATE(2079), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 13, + ACTIONS(3646), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170172,17 +170713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64562] = 5, + [64504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4765), 1, + ACTIONS(4769), 1, anon_sym_DASH_GT, - STATE(2080), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 13, + ACTIONS(3652), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170196,17 +170737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64591] = 5, + [64533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, + ACTIONS(4771), 1, anon_sym_DASH_GT, - STATE(2081), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 13, + ACTIONS(3658), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170220,17 +170761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64620] = 5, + [64562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, + ACTIONS(4773), 1, anon_sym_DASH_GT, - STATE(2082), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 13, + ACTIONS(3670), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170244,348 +170785,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64649] = 7, + [64591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2083), 2, + ACTIONS(4775), 1, + anon_sym_DASH_GT, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 3, + ACTIONS(3676), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4771), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3500), 5, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64681] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - ACTIONS(4776), 1, anon_sym_EQ, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(3099), 1, - sym_trait_bounds, - ACTIONS(3436), 2, - anon_sym_PLUS, - anon_sym_as, - ACTIONS(4778), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2084), 2, - sym_line_comment, - sym_block_comment, - [64727] = 7, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [64620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4780), 1, - anon_sym_LPAREN, - ACTIONS(3506), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2085), 2, + ACTIONS(4777), 1, + anon_sym_DASH_GT, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 5, + ACTIONS(3682), 13, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3508), 5, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64759] = 7, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [64649] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(4779), 1, + anon_sym_LPAREN, + ACTIONS(3496), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2086), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, + ACTIONS(3492), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4783), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3489), 5, + anon_sym_LT2, + ACTIONS(3498), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64791] = 6, + [64681] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2087), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 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, - [64821] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(3504), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, + ACTIONS(3500), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4786), 3, + ACTIONS(4782), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3516), 5, + ACTIONS(3506), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64853] = 7, + [64713] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(4782), 1, + anon_sym_LPAREN, + ACTIONS(3504), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, + ACTIONS(3500), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4780), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3508), 5, + anon_sym_LT2, + ACTIONS(3506), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64885] = 7, + [64745] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3538), 1, anon_sym_DOT_DOT, - ACTIONS(4786), 2, + ACTIONS(4785), 2, anon_sym_LPAREN, anon_sym_RBRACK, STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 4, + ACTIONS(3534), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3516), 6, + ACTIONS(3540), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [64917] = 7, + [64777] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, + ACTIONS(3520), 1, anon_sym_DOT_DOT, - ACTIONS(4771), 2, + ACTIONS(4788), 2, anon_sym_LPAREN, anon_sym_RBRACK, STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 4, + ACTIONS(3516), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3500), 6, + ACTIONS(3522), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [64949] = 7, + [64809] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3504), 1, anon_sym_DOT_DOT, - ACTIONS(4780), 2, + ACTIONS(4782), 2, anon_sym_LPAREN, anon_sym_RBRACK, STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 4, + ACTIONS(3500), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3508), 6, + ACTIONS(3506), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [64981] = 7, + [64841] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, - anon_sym_LPAREN, - ACTIONS(3498), 2, - anon_sym_COLON, + ACTIONS(3496), 1, anon_sym_DOT_DOT, + ACTIONS(4779), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 5, - anon_sym_RPAREN, + ACTIONS(3492), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3500), 5, + ACTIONS(3498), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65013] = 7, + [64873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(3487), 2, - anon_sym_COLON, + ACTIONS(4793), 1, anon_sym_DOT_DOT, STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 5, + ACTIONS(4791), 12, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3489), 5, - anon_sym_BANG, + 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_COLON_COLON, - [65045] = 7, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64901] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4786), 1, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(3514), 2, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + ACTIONS(4795), 1, anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(4797), 1, + anon_sym_EQ, + STATE(2015), 1, + sym_type_arguments, + STATE(2446), 1, + sym_parameters, + STATE(3089), 1, + sym_trait_bounds, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4799), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 5, - anon_sym_RPAREN, + [64947] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3538), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3516), 5, + ACTIONS(4785), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3540), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65077] = 5, + [64979] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - STATE(2096), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 12, + ACTIONS(4634), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170593,333 +171109,331 @@ static const uint16_t ts_small_parse_table[] = { 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, - [65105] = 13, + [65009] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4788), 1, + anon_sym_LPAREN, + ACTIONS(3520), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2098), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3516), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(4793), 1, + ACTIONS(3522), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [65041] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4801), 1, anon_sym_LPAREN, - ACTIONS(4795), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - ACTIONS(4797), 1, + ACTIONS(4805), 1, anon_sym_BANG, - ACTIONS(4799), 1, + ACTIONS(4807), 1, anon_sym_AT, - ACTIONS(4801), 1, + ACTIONS(4809), 1, anon_sym_DOT_DOT, - ACTIONS(4805), 1, + ACTIONS(4813), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - ACTIONS(4803), 2, + ACTIONS(4811), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2097), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4634), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [65149] = 7, + [65085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, + ACTIONS(3496), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4783), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2098), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 4, - anon_sym_SEMI, + ACTIONS(3492), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3489), 6, + ACTIONS(4779), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3498), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65181] = 6, + [65117] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(3520), 2, anon_sym_COLON, - ACTIONS(3910), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2099), 2, + anon_sym_DOT_DOT, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, - anon_sym_SEMI, + ACTIONS(3516), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4788), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65210] = 13, + ACTIONS(3522), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [65149] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2100), 2, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(3538), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2102), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65253] = 10, + ACTIONS(3534), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3540), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [65181] = 10, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(4680), 1, + ACTIONS(4676), 1, anon_sym_trait, - ACTIONS(4819), 1, + ACTIONS(4815), 1, anon_sym_impl, - STATE(397), 1, + STATE(412), 1, sym_block, - STATE(3532), 1, + STATE(3721), 1, sym_label, - STATE(2101), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3574), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65290] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4809), 1, - anon_sym_COLON, - ACTIONS(3776), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4807), 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, - [65319] = 13, + [65218] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4819), 1, + anon_sym_GT, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4821), 1, - anon_sym_GT, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2103), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65362] = 13, + [65261] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, ACTIONS(4823), 1, + sym_metavariable, + ACTIONS(4825), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2104), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65405] = 13, + [65304] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4825), 1, + ACTIONS(4827), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2105), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65448] = 13, + [65347] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4827), 1, + ACTIONS(4829), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2106), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65491] = 13, + [65390] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4823), 1, sym_metavariable, - ACTIONS(4829), 1, + ACTIONS(4831), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2107), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65534] = 6, + [65433] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4833), 1, + ACTIONS(4835), 1, anon_sym_COLON, - STATE(2108), 2, + ACTIONS(3950), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, + ACTIONS(4833), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170929,19 +171443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65562] = 6, + [65462] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4835), 1, anon_sym_COLON, - ACTIONS(4839), 1, + ACTIONS(3806), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2109), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 9, + ACTIONS(4833), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170951,52 +171466,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65590] = 4, + [65491] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, + sym_identifier, + ACTIONS(4821), 1, + anon_sym_const, + ACTIONS(4823), 1, + sym_metavariable, + ACTIONS(4837), 1, + anon_sym_GT, + STATE(1121), 1, + sym_attribute_item, + STATE(2141), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2811), 1, + sym_lifetime, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 11, + STATE(3392), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [65534] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + ACTIONS(4839), 1, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, + STATE(2082), 1, + sym_parameters, + STATE(2112), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3432), 4, 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, - [65614] = 9, - ACTIONS(19), 1, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65572] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(4841), 1, - sym_identifier, - STATE(411), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2111), 2, + ACTIONS(1125), 1, + aux_sym_string_literal_token1, + ACTIONS(4843), 1, + sym_crate, + STATE(2274), 1, + sym_string_literal, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, + ACTIONS(4841), 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, - [65648] = 6, + [65602] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171005,7 +171555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(4849), 1, anon_sym_COLON_COLON, - STATE(2112), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, ACTIONS(4845), 9, @@ -171018,283 +171568,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65676] = 12, + [65630] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, ACTIONS(4851), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2117), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2560), 1, - sym_lifetime, - STATE(2113), 2, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, + STATE(2082), 1, + sym_parameters, + STATE(2115), 2, sym_line_comment, sym_block_comment, - STATE(3034), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65716] = 12, + ACTIONS(3432), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65668] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4855), 1, - anon_sym_RBRACE, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4859), 1, - anon_sym_COMMA, - ACTIONS(4861), 1, - sym_integer_literal, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2114), 2, + ACTIONS(3446), 1, + anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(2015), 1, + sym_type_arguments, + STATE(2446), 1, + sym_parameters, + STATE(2116), 2, sym_line_comment, sym_block_comment, - STATE(3112), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65756] = 11, + ACTIONS(3444), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [65706] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(3436), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2462), 1, + STATE(2446), 1, sym_parameters, - STATE(2115), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3432), 4, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [65794] = 6, + [65744] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2116), 2, + ACTIONS(4853), 1, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, + STATE(2082), 1, + sym_parameters, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, + ACTIONS(3432), 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, - [65822] = 12, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65782] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4855), 1, sym_identifier, - ACTIONS(4815), 1, + STATE(415), 1, + sym_block, + STATE(3721), 1, + sym_label, + STATE(2119), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4857), 6, + anon_sym_async, anon_sym_const, - ACTIONS(4867), 1, - sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2816), 1, - sym_lifetime, - STATE(2117), 2, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65816] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2120), 2, sym_line_comment, sym_block_comment, - STATE(3031), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65862] = 11, + ACTIONS(1423), 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, + [65840] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - ACTIONS(4869), 1, + ACTIONS(4859), 1, anon_sym_for, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, - STATE(2118), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3432), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65900] = 12, + [65878] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4863), 1, anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4865), 1, anon_sym_COLON_COLON, - ACTIONS(4871), 1, - anon_sym_EQ, - STATE(2403), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2119), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4861), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [65940] = 11, + anon_sym_else, + anon_sym_in, + [65906] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4869), 1, + anon_sym_COLON, + ACTIONS(4871), 1, anon_sym_COLON_COLON, - ACTIONS(4873), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2120), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(4867), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65978] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65934] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4875), 1, + ACTIONS(4823), 1, sym_metavariable, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2122), 1, + STATE(2141), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2121), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - STATE(3078), 3, + STATE(3392), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66018] = 12, + [65974] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4877), 1, + ACTIONS(4873), 1, sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2816), 1, + STATE(2158), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2811), 1, sym_lifetime, - STATE(2122), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - STATE(2872), 3, + STATE(2989), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66058] = 4, + [66014] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2123), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, ACTIONS(1427), 11, @@ -171309,91 +171868,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66082] = 6, + [66038] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_COLON, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - STATE(2124), 2, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + ACTIONS(3534), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 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, - [66110] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(3540), 8, anon_sym_LPAREN, - ACTIONS(4648), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2125), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3424), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [66148] = 6, + anon_sym_if, + [66066] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - STATE(2126), 2, + ACTIONS(3504), 1, + anon_sym_DOT_DOT, + ACTIONS(3500), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3506), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66176] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66094] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, + ACTIONS(3496), 1, anon_sym_DOT_DOT, - ACTIONS(3483), 2, + ACTIONS(3492), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2127), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 8, + ACTIONS(3498), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -171402,102 +171934,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [66204] = 11, + [66122] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(3520), 1, + anon_sym_DOT_DOT, + ACTIONS(3516), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4881), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2128), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66242] = 12, + ACTIONS(3522), 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, + [66150] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4851), 1, + ACTIONS(4875), 1, sym_metavariable, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2117), 1, + STATE(2132), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2129), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - STATE(3034), 3, + STATE(3097), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66282] = 12, + [66190] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4877), 1, sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, + STATE(1082), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(1121), 1, + sym_attribute_item, + STATE(2811), 1, sym_lifetime, - STATE(2130), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(2873), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66322] = 6, + [66230] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4879), 1, + sym_identifier, + ACTIONS(4881), 1, + anon_sym_RBRACE, + ACTIONS(4883), 1, + anon_sym_DOT_DOT, ACTIONS(4885), 1, + anon_sym_COMMA, + ACTIONS(4887), 1, + sym_integer_literal, + STATE(1121), 1, + sym_attribute_item, + STATE(2561), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2133), 2, + sym_line_comment, + sym_block_comment, + STATE(3076), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66270] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3452), 1, anon_sym_COLON, - STATE(2131), 2, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + STATE(2015), 1, + sym_type_arguments, + STATE(2446), 1, + sym_parameters, + STATE(2134), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [66308] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4753), 1, + anon_sym_COLON_COLON, + ACTIONS(4869), 1, + anon_sym_COLON, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 9, + ACTIONS(4867), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171507,229 +172089,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66350] = 6, + [66336] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4879), 1, + sym_identifier, + ACTIONS(4883), 1, anon_sym_DOT_DOT, - ACTIONS(3502), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2132), 2, + ACTIONS(4887), 1, + sym_integer_literal, + ACTIONS(4889), 1, + anon_sym_RBRACE, + ACTIONS(4891), 1, + anon_sym_COMMA, + STATE(1121), 1, + sym_attribute_item, + STATE(2561), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 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, - [66378] = 4, + STATE(3120), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66376] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2133), 2, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4869), 1, + anon_sym_COLON, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 11, + ACTIONS(4867), 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, - [66402] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [66404] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(4887), 1, - anon_sym_move, - STATE(410), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2134), 2, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON_COLON, + ACTIONS(4893), 1, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, + STATE(2082), 1, + sym_parameters, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66436] = 11, + ACTIONS(3432), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66442] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(4714), 1, anon_sym_COLON, - ACTIONS(4658), 1, + ACTIONS(4716), 1, anon_sym_BANG, - ACTIONS(4660), 1, + ACTIONS(4718), 1, anon_sym_DOT_DOT, - ACTIONS(4692), 1, + ACTIONS(4724), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2013), 1, sym_type_arguments, - ACTIONS(4662), 2, + ACTIONS(4720), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2135), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(4712), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [66474] = 6, + [66480] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_COLON, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - STATE(2136), 2, + ACTIONS(1125), 1, + aux_sym_string_literal_token1, + ACTIONS(4895), 1, + sym_crate, + STATE(2274), 1, + sym_string_literal, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, + ACTIONS(4841), 8, 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, - [66502] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_DOT_DOT, - ACTIONS(3510), 2, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3516), 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, - [66530] = 12, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66510] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4821), 1, anon_sym_const, - ACTIONS(4889), 1, + ACTIONS(4897), 1, sym_metavariable, - STATE(1079), 1, + STATE(1082), 1, aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2816), 1, + STATE(2811), 1, sym_lifetime, - STATE(2138), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - STATE(3269), 3, + STATE(3314), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66570] = 6, + [66550] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_COLON, - ACTIONS(4879), 1, + ACTIONS(4865), 1, anon_sym_COLON_COLON, - STATE(2139), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4835), 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, - [66598] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2140), 2, + ACTIONS(4901), 1, + anon_sym_COLON, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 11, + ACTIONS(4899), 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, - [66622] = 7, + [66578] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, + ACTIONS(1125), 1, aux_sym_string_literal_token1, - ACTIONS(4893), 1, + ACTIONS(4903), 1, sym_crate, - STATE(2270), 1, + STATE(2274), 1, sym_string_literal, - STATE(2141), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, + ACTIONS(4841), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -171738,138 +172289,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66652] = 7, + [66608] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4895), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2142), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4891), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, + sym_identifier, + ACTIONS(4821), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66682] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4897), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2143), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66720] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4899), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, + ACTIONS(4873), 1, + sym_metavariable, + STATE(1121), 1, + sym_attribute_item, + STATE(2158), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2563), 1, + sym_lifetime, STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 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, - [66750] = 6, + STATE(2989), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66648] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_COLON, STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, + ACTIONS(1439), 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, - [66778] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, - ACTIONS(3494), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2146), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3500), 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, - [66806] = 7, + [66672] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, + ACTIONS(1125), 1, aux_sym_string_literal_token1, - ACTIONS(4901), 1, + ACTIONS(4905), 1, sym_crate, - STATE(2270), 1, + STATE(2274), 1, sym_string_literal, - STATE(2147), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, + ACTIONS(4841), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -171878,224 +172360,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66836] = 11, + [66702] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(3436), 1, + anon_sym_COLON, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - ACTIONS(4903), 1, - anon_sym_for, - STATE(2006), 1, + ACTIONS(4907), 1, + anon_sym_EQ, + STATE(2416), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2446), 1, sym_parameters, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3432), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [66742] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(1431), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66874] = 11, + 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, + [66766] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - ACTIONS(4905), 1, + ACTIONS(4909), 1, anon_sym_for, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3432), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66912] = 11, + [66804] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - ACTIONS(4907), 1, + ACTIONS(4911), 1, anon_sym_for, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3432), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66950] = 6, + [66842] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, + ACTIONS(4865), 1, anon_sym_COLON_COLON, - ACTIONS(4837), 1, + ACTIONS(4915), 1, anon_sym_COLON, STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 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, - [66978] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2152), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1435), 11, + ACTIONS(4913), 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, - [67002] = 11, + [66870] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4656), 1, anon_sym_COLON_COLON, - ACTIONS(4909), 1, + ACTIONS(4917), 1, anon_sym_for, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2082), 1, sym_parameters, - STATE(2153), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3432), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67040] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2154), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67078] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4911), 1, - anon_sym_RBRACE, - ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2155), 2, - sym_line_comment, - sym_block_comment, - STATE(3062), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67118] = 6, + [66908] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, + ACTIONS(4871), 1, anon_sym_COLON_COLON, - ACTIONS(4917), 1, + ACTIONS(4921), 1, anon_sym_COLON, - STATE(2156), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 9, + ACTIONS(4919), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172105,15 +172533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67146] = 4, + [66936] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2157), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 10, + ACTIONS(1435), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172121,185 +172549,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67169] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4923), 1, - anon_sym_RBRACE, - ACTIONS(4925), 1, - anon_sym_COMMA, - ACTIONS(4927), 1, - sym_crate, - STATE(1115), 1, - sym_attribute_item, - STATE(2268), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2866), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2158), 2, - sym_line_comment, - sym_block_comment, - [67210] = 4, + [66960] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2159), 2, + ACTIONS(4847), 1, + anon_sym_COLON, + ACTIONS(4871), 1, + anon_sym_COLON_COLON, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 10, + ACTIONS(4845), 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, - [67233] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [66988] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4933), 1, - anon_sym_RBRACE, - ACTIONS(4935), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2273), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2878), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2160), 2, + ACTIONS(4753), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_COLON, + STATE(2156), 2, sym_line_comment, sym_block_comment, - [67274] = 4, + ACTIONS(4919), 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, + [67016] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2161), 2, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4921), 1, + anon_sym_COLON, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 10, + ACTIONS(4919), 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, - [67297] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [67044] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4939), 1, - anon_sym_RBRACE, - ACTIONS(4941), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2311), 1, + ACTIONS(4821), 1, + anon_sym_const, + ACTIONS(4923), 1, + sym_metavariable, + STATE(1082), 1, aux_sym_enum_variant_list_repeat1, - STATE(3105), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2162), 2, + STATE(1121), 1, + sym_attribute_item, + STATE(2811), 1, + sym_lifetime, + STATE(2158), 2, sym_line_comment, sym_block_comment, - [67338] = 4, + STATE(3158), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67084] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2163), 2, + ACTIONS(4753), 1, + anon_sym_COLON_COLON, + ACTIONS(4847), 1, + anon_sym_COLON, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 10, + ACTIONS(4845), 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, - [67361] = 11, + [67112] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4943), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2164), 2, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(4925), 1, + anon_sym_move, + STATE(414), 1, + sym_block, + STATE(3721), 1, + sym_label, + STATE(2160), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67398] = 4, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2165), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 10, + ACTIONS(4927), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172310,41 +172713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67421] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4945), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2166), 2, - sym_line_comment, - sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67458] = 4, + [67169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2167), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 10, + ACTIONS(4929), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172355,41 +172732,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67481] = 11, + [67192] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4949), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2168), 2, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + ACTIONS(4931), 1, + anon_sym_BANG, + STATE(1129), 1, + sym_type_arguments, + STATE(2163), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67518] = 4, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67223] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2169), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 10, + ACTIONS(4933), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172400,15 +172774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67541] = 4, + [67246] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 10, + ACTIONS(4935), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172419,57 +172793,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67564] = 4, + [67269] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2171), 2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4937), 1, + anon_sym_LBRACE, + STATE(2007), 1, + sym_type_arguments, + STATE(2083), 1, + sym_parameters, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 10, + ACTIONS(3512), 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, - [67587] = 8, + [67302] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4955), 1, + ACTIONS(4716), 1, anon_sym_BANG, - STATE(1643), 1, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, sym_type_arguments, - STATE(2172), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3574), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67618] = 4, + [67333] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2173), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 10, + ACTIONS(4939), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172480,15 +172859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67641] = 4, + [67356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2174), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 10, + ACTIONS(4941), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172499,15 +172878,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67664] = 4, + [67379] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2175), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4879), 1, + sym_identifier, + ACTIONS(4883), 1, + anon_sym_DOT_DOT, + ACTIONS(4887), 1, + sym_integer_literal, + ACTIONS(4943), 1, + anon_sym_RBRACE, + STATE(1121), 1, + sym_attribute_item, + STATE(2561), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2170), 2, + sym_line_comment, + sym_block_comment, + STATE(3253), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67416] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 10, + ACTIONS(4945), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172518,15 +172923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67687] = 4, + [67439] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2176), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 10, + ACTIONS(4947), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172537,15 +172942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67710] = 4, + [67462] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 10, + ACTIONS(4949), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172556,12 +172961,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67733] = 4, + [67485] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(4953), 1, + anon_sym_RBRACE, + ACTIONS(4955), 1, + anon_sym_COMMA, + ACTIONS(4957), 1, + sym_crate, + STATE(1121), 1, + sym_attribute_item, + STATE(2297), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2868), 1, + sym_enum_variant, + STATE(3569), 1, + sym_visibility_modifier, + STATE(2174), 2, + sym_line_comment, + sym_block_comment, + [67526] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4959), 1, + sym_identifier, + ACTIONS(4961), 1, + anon_sym_RBRACE, + ACTIONS(4963), 1, + anon_sym_COMMA, + STATE(1121), 1, + sym_attribute_item, + STATE(2300), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2878), 1, + sym_field_declaration, + STATE(3548), 1, + sym_visibility_modifier, + STATE(2175), 2, + sym_line_comment, + sym_block_comment, + [67567] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2176), 2, sym_line_comment, sym_block_comment, ACTIONS(4965), 10, @@ -172575,12 +173036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67756] = 4, + [67590] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, ACTIONS(4967), 10, @@ -172594,7 +173055,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67779] = 4, + [67613] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 1, + anon_sym_BANG, + STATE(1129), 1, + sym_type_arguments, + STATE(2178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67644] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4169), 1, + anon_sym_LT2, + ACTIONS(4332), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 1, + anon_sym_BANG, + STATE(1690), 1, + sym_type_arguments, + STATE(2179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67675] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172613,7 +173120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67802] = 4, + [67698] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -172632,15 +173139,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67825] = 4, + [67721] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4636), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4973), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 10, + ACTIONS(4634), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [67756] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2183), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1509), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172651,12 +173183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67848] = 4, + [67779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, ACTIONS(4975), 10, @@ -172670,12 +173202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67871] = 4, + [67802] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, ACTIONS(4977), 10, @@ -172689,64 +173221,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67894] = 9, + [67825] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4979), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2185), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, + ACTIONS(4979), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [67927] = 10, + anon_sym_else, + anon_sym_in, + [67848] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2186), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4879), 1, + sym_identifier, + ACTIONS(4883), 1, + anon_sym_DOT_DOT, + ACTIONS(4887), 1, + sym_integer_literal, + ACTIONS(4981), 1, + anon_sym_RBRACE, + STATE(1121), 1, + sym_attribute_item, + STATE(2561), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 4, - anon_sym_PLUS, - anon_sym_GT, + STATE(3253), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67885] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4983), 1, + anon_sym_RBRACE, + ACTIONS(4985), 1, anon_sym_COMMA, - anon_sym_as, - [67962] = 4, + STATE(1121), 1, + sym_attribute_item, + STATE(2281), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3102), 1, + sym_enum_variant, + STATE(3569), 1, + sym_visibility_modifier, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + [67926] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2187), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 10, + ACTIONS(4987), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172757,15 +173313,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67985] = 4, + [67949] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4716), 1, + anon_sym_BANG, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, + sym_type_arguments, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2190), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4712), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [67984] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 10, + ACTIONS(4989), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172776,15 +173357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68008] = 4, + [68007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 10, + ACTIONS(4991), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172795,15 +173376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68031] = 4, + [68030] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, + ACTIONS(4845), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172814,15 +173395,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68054] = 4, + [68053] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + ACTIONS(1607), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(2183), 1, + sym_block, + STATE(3738), 1, + sym_label, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 10, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68084] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2195), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4993), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172833,63 +173437,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68077] = 8, + [68107] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, - STATE(2192), 2, + ACTIONS(4169), 1, + anon_sym_LT2, + ACTIONS(4332), 1, + anon_sym_COLON_COLON, + ACTIONS(4995), 1, + anon_sym_BANG, + STATE(1690), 1, + sym_type_arguments, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3574), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68108] = 10, + [68138] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_DOT_DOT, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4959), 1, + sym_identifier, ACTIONS(4997), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4995), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2193), 2, + anon_sym_RBRACE, + ACTIONS(4999), 1, + anon_sym_COMMA, + STATE(1121), 1, + sym_attribute_item, + STATE(2273), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2949), 1, + sym_field_declaration, + STATE(3548), 1, + sym_visibility_modifier, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [68143] = 4, + [68179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2194), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 10, + ACTIONS(5001), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172900,40 +173507,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68166] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [68202] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4879), 1, sym_identifier, - ACTIONS(5001), 1, - anon_sym_RBRACE, + ACTIONS(4883), 1, + anon_sym_DOT_DOT, + ACTIONS(4887), 1, + sym_integer_literal, ACTIONS(5003), 1, - anon_sym_COMMA, - STATE(1115), 1, + anon_sym_RBRACE, + STATE(1121), 1, sym_attribute_item, - STATE(2266), 1, + STATE(2561), 1, aux_sym_enum_variant_list_repeat1, - STATE(2850), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2195), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - [68207] = 4, + STATE(3253), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2196), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, ACTIONS(5005), 10, @@ -172947,61 +173552,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68230] = 8, + [68262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, - STATE(2197), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68261] = 8, + ACTIONS(5007), 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, + [68285] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2198), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68292] = 4, + 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, + [68308] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2199), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 10, + ACTIONS(5009), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173012,114 +173609,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68315] = 10, + [68331] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5009), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2200), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(5011), 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, - [68350] = 11, + anon_sym_else, + anon_sym_in, + [68354] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4879), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4883), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, + ACTIONS(4887), 1, sym_integer_literal, - ACTIONS(5011), 1, + ACTIONS(5013), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2561), 1, aux_sym_enum_variant_list_repeat1, - STATE(2201), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, + STATE(3253), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68387] = 10, + [68391] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2202), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(5015), 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, - [68422] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(5013), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, - STATE(2203), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68453] = 4, + anon_sym_else, + anon_sym_in, + [68414] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 10, + ACTIONS(5017), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173130,15 +173692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68476] = 4, + [68437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 10, + ACTIONS(5019), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173149,15 +173711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68499] = 4, + [68460] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2206), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 10, + ACTIONS(5021), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173168,15 +173730,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68522] = 4, + [68483] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5023), 1, + anon_sym_BANG, + ACTIONS(5025), 1, + anon_sym_DOT_DOT, + ACTIONS(5029), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, + sym_type_arguments, + ACTIONS(5027), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 10, + ACTIONS(4712), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [68518] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2211), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5031), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173187,15 +173774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68545] = 4, + [68541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2208), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 10, + ACTIONS(4634), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173206,15 +173793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68568] = 4, + [68564] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2209), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 10, + ACTIONS(4919), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173225,38 +173812,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68591] = 8, + [68587] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3456), 1, + anon_sym_COLON, + ACTIONS(4652), 1, anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2210), 2, + STATE(2446), 1, + sym_parameters, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, + ACTIONS(3454), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, [68622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2211), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 10, + ACTIONS(5033), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173267,499 +173856,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68645] = 11, + [68645] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, + ACTIONS(5035), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2013), 1, sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2212), 2, - sym_line_comment, - sym_block_comment, - [68681] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5027), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2213), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - [68719] = 12, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68673] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(5029), 1, + ACTIONS(5037), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2277), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, + STATE(3431), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3569), 1, sym_visibility_modifier, - STATE(2214), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - [68757] = 12, + [68711] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(4959), 1, sym_identifier, - ACTIONS(5031), 1, + ACTIONS(5039), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2308), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, + STATE(3212), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3548), 1, sym_visibility_modifier, - STATE(2215), 2, - sym_line_comment, - sym_block_comment, - [68795] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2216), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [68825] = 12, + [68749] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5033), 1, + ACTIONS(5041), 1, anon_sym_SEMI, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1187), 1, - sym_field_declaration_list, - STATE(2366), 1, - sym_type_parameters, - STATE(2885), 1, - sym_ordered_field_declaration_list, - STATE(3241), 1, - sym_where_clause, - STATE(2217), 2, - sym_line_comment, - sym_block_comment, - [68863] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - STATE(2218), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3489), 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, - [68887] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_DOT_DOT, + STATE(771), 1, + sym_declaration_list, STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 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, - [68911] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, - STATE(1643), 1, - sym_type_arguments, - STATE(2220), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3574), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68939] = 12, + [68777] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4951), 1, sym_identifier, + ACTIONS(4957), 1, + sym_crate, ACTIONS(5045), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2277), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, + STATE(3431), 1, + sym_enum_variant, + STATE(3569), 1, sym_visibility_modifier, - STATE(2221), 2, - sym_line_comment, - sym_block_comment, - [68977] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_PLUS, - STATE(2222), 3, - sym_line_comment, - sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5047), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69001] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym_type_arguments, - STATE(2223), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69029] = 9, + [68815] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LPAREN, - ACTIONS(5059), 1, - anon_sym_LBRACK, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(3502), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - ACTIONS(5057), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4959), 1, + sym_identifier, + ACTIONS(5047), 1, anon_sym_RBRACE, - STATE(2224), 3, + STATE(1121), 1, + sym_attribute_item, + STATE(2308), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3212), 1, + sym_field_declaration, + STATE(3548), 1, + sym_visibility_modifier, + STATE(2221), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [69061] = 10, + [68853] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5065), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2225), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(5049), 1, + anon_sym_RBRACE, + STATE(1121), 1, + sym_attribute_item, + STATE(2277), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3431), 1, + sym_enum_variant, + STATE(3569), 1, + sym_visibility_modifier, + STATE(2222), 2, sym_line_comment, sym_block_comment, - [69095] = 9, + [68891] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5068), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2226), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(5051), 1, anon_sym_SEMI, + ACTIONS(5053), 1, + anon_sym_LPAREN, + ACTIONS(5055), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, anon_sym_where, - [69127] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - ACTIONS(5065), 1, - anon_sym_RBRACK, - ACTIONS(3518), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2227), 2, + STATE(662), 1, + sym_field_declaration_list, + STATE(2333), 1, + sym_type_parameters, + STATE(2931), 1, + sym_ordered_field_declaration_list, + STATE(3277), 1, + sym_where_clause, + STATE(2223), 2, sym_line_comment, sym_block_comment, - [69159] = 9, + [68929] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2228), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4959), 1, + sym_identifier, + ACTIONS(5061), 1, + anon_sym_RBRACE, + STATE(1121), 1, + sym_attribute_item, + STATE(2308), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3212), 1, + sym_field_declaration, + STATE(3548), 1, + sym_visibility_modifier, + STATE(2224), 2, sym_line_comment, - sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [69191] = 8, + sym_block_comment, + [68967] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2229), 2, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5063), 1, + anon_sym_SEMI, + STATE(673), 1, + sym_declaration_list, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69221] = 10, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68995] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4879), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4883), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, + ACTIONS(4887), 1, sym_integer_literal, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2561), 1, aux_sym_enum_variant_list_repeat1, - STATE(2230), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, + STATE(3253), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [69255] = 7, + [69029] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4712), 1, + anon_sym_PIPE, + ACTIONS(4714), 1, + anon_sym_COLON, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3512), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [69061] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4169), 1, anon_sym_LT2, - ACTIONS(5070), 1, + ACTIONS(5065), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(1690), 1, sym_type_arguments, - STATE(2231), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3574), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69283] = 9, + [69089] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(5072), 1, + ACTIONS(5067), 1, anon_sym_for, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2083), 1, sym_parameters, - STATE(2232), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69315] = 5, + [69121] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym_type_arguments, + STATE(2381), 1, + sym_parameters, + STATE(2230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69151] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3504), 1, anon_sym_DOT_DOT, - STATE(2233), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 8, + ACTIONS(3506), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -173768,161 +174233,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [69339] = 12, + [69175] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5069), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, ACTIONS(5074), 1, - anon_sym_SEMI, - ACTIONS(5076), 1, + anon_sym_LBRACK, + ACTIONS(5077), 1, anon_sym_LBRACE, - STATE(773), 1, - sym_field_declaration_list, - STATE(2347), 1, - sym_type_parameters, - STATE(2930), 1, - sym_ordered_field_declaration_list, - STATE(3254), 1, - sym_where_clause, - STATE(2234), 2, + STATE(3555), 1, + sym_token_tree_pattern, + STATE(3560), 1, + sym_macro_rule, + ACTIONS(5072), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2232), 3, sym_line_comment, sym_block_comment, - [69377] = 8, + aux_sym_macro_definition_repeat1, + [69207] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2235), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3532), 5, - anon_sym_COLON, + ACTIONS(5082), 1, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69407] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5078), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2236), 2, + STATE(2240), 1, + aux_sym_trait_bounds_repeat1, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(5080), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69439] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2237), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3526), 5, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_as, - [69469] = 12, + anon_sym_SQUOTE, + anon_sym_where, + [69233] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(5080), 1, + ACTIONS(5084), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2277), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, + STATE(3431), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3569), 1, sym_visibility_modifier, - STATE(2238), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - [69507] = 9, + [69271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, ACTIONS(5082), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2239), 2, + anon_sym_PLUS, + STATE(2233), 1, + aux_sym_trait_bounds_repeat1, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [69539] = 6, + ACTIONS(5086), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69297] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5086), 1, + ACTIONS(5088), 1, anon_sym_PLUS, - STATE(2248), 1, + STATE(2233), 1, aux_sym_trait_bounds_repeat1, - STATE(2240), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 7, + ACTIONS(5086), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -173930,45 +174342,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69565] = 12, + [69323] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_SEMI, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1127), 1, + sym_declaration_list, + STATE(2237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69351] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, + STATE(2083), 1, + sym_parameters, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3512), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69383] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(5088), 1, + ACTIONS(5096), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2277), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, + STATE(3431), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3569), 1, sym_visibility_modifier, - STATE(2241), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - [69603] = 6, + [69421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, + ACTIONS(5100), 1, anon_sym_PLUS, - STATE(2248), 1, - aux_sym_trait_bounds_repeat1, - STATE(2242), 2, + STATE(2240), 3, sym_line_comment, sym_block_comment, - ACTIONS(5084), 7, + aux_sym_trait_bounds_repeat1, + ACTIONS(5098), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -173976,471 +174431,605 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69629] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69445] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5092), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym_type_arguments, + STATE(2381), 1, + sym_parameters, + STATE(2241), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3512), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69475] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4712), 1, + anon_sym_PIPE, + ACTIONS(4714), 1, + anon_sym_COLON, + ACTIONS(4716), 1, + anon_sym_BANG, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, + sym_type_arguments, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2242), 2, + sym_line_comment, + sym_block_comment, + [69511] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, + ACTIONS(5103), 1, + anon_sym_RBRACK, + ACTIONS(3512), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4712), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2243), 2, sym_line_comment, sym_block_comment, - [69667] = 12, + [69543] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(4959), 1, sym_identifier, - ACTIONS(5094), 1, + ACTIONS(5106), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2308), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, + STATE(3212), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3548), 1, sym_visibility_modifier, STATE(2244), 2, sym_line_comment, sym_block_comment, - [69705] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69581] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5096), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, + ACTIONS(5053), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5108), 1, + anon_sym_SEMI, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1147), 1, + sym_field_declaration_list, + STATE(2362), 1, + sym_type_parameters, + STATE(3106), 1, + sym_ordered_field_declaration_list, + STATE(3373), 1, + sym_where_clause, STATE(2245), 2, sym_line_comment, sym_block_comment, - [69743] = 7, + [69619] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, + ACTIONS(5053), 1, + anon_sym_LPAREN, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5112), 1, anon_sym_SEMI, - ACTIONS(5100), 1, + STATE(743), 1, + sym_field_declaration_list, + STATE(2364), 1, + sym_type_parameters, + STATE(2932), 1, + sym_ordered_field_declaration_list, + STATE(3284), 1, + sym_where_clause, + STATE(2246), 2, + sym_line_comment, + sym_block_comment, + [69657] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(1121), 1, + ACTIONS(5114), 1, + anon_sym_SEMI, + STATE(1154), 1, sym_declaration_list, - STATE(2246), 2, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69685] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4801), 1, + anon_sym_LPAREN, + ACTIONS(4805), 1, + anon_sym_BANG, + ACTIONS(4809), 1, + anon_sym_DOT_DOT, + ACTIONS(5116), 1, + anon_sym_COLON_COLON, + ACTIONS(4811), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2248), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4634), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69717] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(5118), 1, + anon_sym_COLON_COLON, + STATE(1129), 1, + sym_type_arguments, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3574), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69771] = 12, + [69745] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym_type_arguments, + STATE(2381), 1, + sym_parameters, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3508), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69775] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3512), 1, + anon_sym_PLUS, + ACTIONS(4712), 1, + anon_sym_PIPE, + ACTIONS(4714), 1, + anon_sym_COLON, + ACTIONS(4718), 1, + anon_sym_DOT_DOT, + ACTIONS(4724), 1, + anon_sym_COLON_COLON, + ACTIONS(4720), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5103), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2251), 2, + sym_line_comment, + sym_block_comment, + [69809] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(5102), 1, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(5120), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2277), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, + STATE(3431), 1, + sym_enum_variant, + STATE(3569), 1, sym_visibility_modifier, - STATE(2247), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - [69809] = 6, + [69847] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5086), 1, - anon_sym_PLUS, - STATE(2222), 1, - aux_sym_trait_bounds_repeat1, - STATE(2248), 2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, + STATE(2083), 1, + sym_parameters, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(5104), 7, + ACTIONS(3512), 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, + [69879] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5053), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, anon_sym_where, - [69835] = 9, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5124), 1, + anon_sym_SEMI, + STATE(1193), 1, + sym_field_declaration_list, + STATE(2375), 1, + sym_type_parameters, + STATE(2888), 1, + sym_ordered_field_declaration_list, + STATE(3301), 1, + sym_where_clause, + STATE(2254), 2, + sym_line_comment, + sym_block_comment, + [69917] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3496), 1, + anon_sym_DOT_DOT, + STATE(2255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3498), 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, + [69941] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3520), 1, + anon_sym_DOT_DOT, + STATE(2256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3522), 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, + [69965] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(4636), 1, anon_sym_LPAREN, - ACTIONS(4634), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(5106), 1, + ACTIONS(5126), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2249), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4634), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [69867] = 7, + [69997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_SEMI, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym_declaration_list, - STATE(2250), 2, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69895] = 9, + ACTIONS(3540), 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, + [70021] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5112), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2251), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4959), 1, + sym_identifier, + ACTIONS(5128), 1, + anon_sym_RBRACE, + STATE(1121), 1, + sym_attribute_item, + STATE(2308), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3212), 1, + sym_field_declaration, + STATE(3548), 1, + sym_visibility_modifier, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69927] = 12, + [70059] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(5114), 1, + ACTIONS(4959), 1, + sym_identifier, + ACTIONS(5130), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2308), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(3212), 1, + sym_field_declaration, + STATE(3548), 1, sym_visibility_modifier, - STATE(2252), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - [69965] = 9, + [70097] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(5116), 1, + ACTIONS(5132), 1, anon_sym_for, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2083), 1, sym_parameters, - STATE(2253), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69997] = 9, + [70129] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2381), 1, sym_parameters, - STATE(2254), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3526), 5, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_where, - [70029] = 12, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70159] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_SEMI, - STATE(1141), 1, - sym_field_declaration_list, - STATE(2372), 1, - sym_type_parameters, - STATE(3085), 1, - sym_ordered_field_declaration_list, - STATE(3338), 1, - sym_where_clause, - STATE(2255), 2, + ACTIONS(5134), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, + STATE(2083), 1, + sym_parameters, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [70067] = 9, + ACTIONS(3512), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70191] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5136), 1, anon_sym_for, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2083), 1, sym_parameters, - STATE(2256), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70099] = 12, + [70223] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - ACTIONS(5124), 1, - anon_sym_SEMI, - STATE(643), 1, - sym_field_declaration_list, - STATE(2333), 1, - sym_type_parameters, - STATE(2905), 1, - sym_ordered_field_declaration_list, - STATE(3168), 1, - sym_where_clause, - STATE(2257), 2, - sym_line_comment, - sym_block_comment, - [70137] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5126), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2258), 2, + ACTIONS(5138), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, + STATE(2083), 1, + sym_parameters, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [70175] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(3512), 4, anon_sym_SEMI, - STATE(585), 1, - sym_declaration_list, - STATE(2259), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70203] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_DOT_DOT, - STATE(2260), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3516), 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, - [70227] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5130), 1, - anon_sym_SEMI, - STATE(1148), 1, - sym_declaration_list, - STATE(2261), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, + anon_sym_PLUS, + anon_sym_where, [70255] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_for, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2083), 1, sym_parameters, - STATE(2262), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -174450,23 +175039,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5134), 1, + ACTIONS(5142), 1, anon_sym_SEMI, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5146), 1, anon_sym_DASH_GT, - STATE(496), 1, + STATE(682), 1, sym_block, - STATE(2532), 1, + STATE(2539), 1, sym_where_clause, - STATE(3736), 1, + STATE(3463), 1, sym_label, - STATE(2263), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, [70322] = 11, @@ -174474,287 +175063,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(5148), 1, anon_sym_SEMI, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1379), 1, + STATE(1395), 1, sym_block, - STATE(2538), 1, + STATE(2547), 1, sym_where_clause, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2264), 2, - sym_line_comment, - sym_block_comment, - [70357] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_fn, - ACTIONS(5149), 1, - anon_sym_extern, - STATE(2459), 1, - sym_extern_modifier, - STATE(2265), 3, - sym_line_comment, - sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5144), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70384] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2966), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2266), 2, - sym_line_comment, - sym_block_comment, - [70419] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(739), 1, - sym_declaration_list, - STATE(2467), 1, - sym_type_parameters, - STATE(2643), 1, - sym_trait_bounds, - STATE(3407), 1, - sym_where_clause, - STATE(2267), 2, - sym_line_comment, - sym_block_comment, - [70454] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2913), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, STATE(2268), 2, sym_line_comment, sym_block_comment, - [70489] = 11, + [70357] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5156), 1, + ACTIONS(5152), 1, anon_sym_SEMI, - STATE(542), 1, + STATE(1406), 1, sym_block, - STATE(2494), 1, + STATE(2548), 1, sym_where_clause, - STATE(3736), 1, + STATE(3745), 1, sym_label, STATE(2269), 2, sym_line_comment, sym_block_comment, - [70524] = 4, + [70392] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5156), 1, + anon_sym_RBRACE, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5160), 1, + anon_sym_COMMA, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(5158), 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, - [70545] = 11, + STATE(2917), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70425] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5166), 1, anon_sym_SEMI, - STATE(1391), 1, + STATE(590), 1, sym_block, - STATE(2539), 1, + STATE(2504), 1, sym_where_clause, - STATE(3739), 1, + STATE(3463), 1, sym_label, STATE(2271), 2, sym_line_comment, sym_block_comment, - [70580] = 11, + [70460] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - ACTIONS(5162), 1, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(5168), 1, anon_sym_SEMI, - ACTIONS(5164), 1, - anon_sym_EQ, - STATE(2458), 1, - sym_type_parameters, - STATE(2953), 1, - sym_trait_bounds, - STATE(3299), 1, + ACTIONS(5170), 1, + anon_sym_DASH_GT, + STATE(732), 1, + sym_block, + STATE(2579), 1, sym_where_clause, + STATE(3463), 1, + sym_label, STATE(2272), 2, sym_line_comment, sym_block_comment, - [70615] = 11, + [70495] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(4959), 1, sym_identifier, - STATE(1079), 1, + STATE(1082), 1, aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2920), 1, + STATE(3026), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3548), 1, sym_visibility_modifier, STATE(2273), 2, sym_line_comment, sym_block_comment, - [70650] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, STATE(2274), 2, sym_line_comment, sym_block_comment, - [70685] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5166), 1, + ACTIONS(5172), 8, anon_sym_SEMI, - ACTIONS(5168), 1, - anon_sym_DASH_GT, - STATE(704), 1, - sym_block, - STATE(2582), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2275), 2, - sym_line_comment, - sym_block_comment, - [70720] = 4, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70551] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2276), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, + ACTIONS(5098), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -174763,4005 +175235,4122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [70741] = 11, + [70572] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5170), 1, + ACTIONS(5174), 1, anon_sym_SEMI, - STATE(1402), 1, + ACTIONS(5176), 1, + anon_sym_DASH_GT, + STATE(1286), 1, sym_block, - STATE(2540), 1, + STATE(2541), 1, sym_where_clause, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2277), 2, - sym_line_comment, - sym_block_comment, - [70776] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - anon_sym_fn, - ACTIONS(5174), 1, - anon_sym_extern, - STATE(2265), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2278), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - ACTIONS(4666), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70805] = 6, + [70607] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4706), 1, - anon_sym_trait, - ACTIONS(5176), 1, - anon_sym_impl, - STATE(2279), 2, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(4957), 1, + sym_crate, + STATE(1082), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1121), 1, + sym_attribute_item, + STATE(3248), 1, + sym_enum_variant, + STATE(3569), 1, + sym_visibility_modifier, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70830] = 11, + [70642] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, ACTIONS(5178), 1, anon_sym_SEMI, ACTIONS(5180), 1, anon_sym_DASH_GT, - STATE(657), 1, + STATE(1300), 1, sym_block, - STATE(2518), 1, + STATE(2542), 1, sym_where_clause, - STATE(3736), 1, + STATE(3745), 1, sym_label, + STATE(2278), 2, + sym_line_comment, + sym_block_comment, + [70677] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(4957), 1, + sym_crate, + STATE(1121), 1, + sym_attribute_item, + STATE(2277), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3431), 1, + sym_enum_variant, + STATE(3569), 1, + sym_visibility_modifier, + STATE(2279), 2, + sym_line_comment, + sym_block_comment, + [70712] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5182), 1, + anon_sym_fn, + ACTIONS(5184), 1, + anon_sym_extern, + STATE(2295), 1, + aux_sym_function_modifiers_repeat1, + STATE(2442), 1, + sym_extern_modifier, STATE(2280), 2, sym_line_comment, sym_block_comment, - [70865] = 11, + ACTIONS(4662), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [70741] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, - anon_sym_SEMI, - STATE(553), 1, - sym_block, - STATE(2503), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(4957), 1, + sym_crate, + STATE(1082), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1121), 1, + sym_attribute_item, + STATE(3103), 1, + sym_enum_variant, + STATE(3569), 1, + sym_visibility_modifier, STATE(2281), 2, sym_line_comment, sym_block_comment, - [70900] = 11, + [70776] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5184), 1, + ACTIONS(5186), 1, anon_sym_SEMI, - STATE(605), 1, + STATE(502), 1, sym_block, - STATE(2477), 1, + STATE(2557), 1, sym_where_clause, - STATE(3736), 1, + STATE(3463), 1, sym_label, STATE(2282), 2, sym_line_comment, sym_block_comment, - [70935] = 11, + [70811] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5186), 1, - anon_sym_SEMI, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, ACTIONS(5188), 1, - anon_sym_DASH_GT, - STATE(683), 1, - sym_block, - STATE(2528), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, + anon_sym_RBRACE, + ACTIONS(5190), 1, + anon_sym_COMMA, STATE(2283), 2, sym_line_comment, sym_block_comment, - [70970] = 11, + STATE(3009), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70844] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5192), 1, anon_sym_SEMI, - STATE(1252), 1, + STATE(578), 1, sym_block, - STATE(2584), 1, + STATE(2499), 1, sym_where_clause, - STATE(3739), 1, + STATE(3463), 1, sym_label, STATE(2284), 2, sym_line_comment, sym_block_comment, - [71005] = 11, + [70879] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_SEMI, - STATE(529), 1, + ACTIONS(5196), 1, + anon_sym_DASH_GT, + STATE(649), 1, sym_block, - STATE(2489), 1, + STATE(2530), 1, sym_where_clause, - STATE(3736), 1, + STATE(3463), 1, sym_label, STATE(2285), 2, sym_line_comment, sym_block_comment, - [71040] = 11, + [70914] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, + ACTIONS(5198), 1, anon_sym_SEMI, - ACTIONS(5196), 1, + ACTIONS(5200), 1, anon_sym_DASH_GT, - STATE(572), 1, + STATE(549), 1, sym_block, - STATE(2569), 1, + STATE(2482), 1, sym_where_clause, - STATE(3736), 1, + STATE(3463), 1, sym_label, STATE(2286), 2, sym_line_comment, sym_block_comment, - [71075] = 4, + [70949] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2287), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5047), 8, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5202), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5206), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71096] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - STATE(2270), 1, - sym_string_literal, - STATE(2288), 2, + ACTIONS(5208), 1, + anon_sym_LT, + STATE(2470), 1, + sym_type_parameters, + STATE(2976), 1, + sym_trait_bounds, + STATE(3416), 1, + sym_where_clause, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71121] = 10, + [70984] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, ACTIONS(5204), 1, - anon_sym_COMMA, - ACTIONS(5206), 1, - anon_sym_ref, + anon_sym_COLON, ACTIONS(5208), 1, - sym_mutable_specifier, - STATE(2289), 2, + anon_sym_LT, + STATE(643), 1, + sym_declaration_list, + STATE(2438), 1, + sym_type_parameters, + STATE(2601), 1, + sym_trait_bounds, + STATE(3454), 1, + sym_where_clause, + STATE(2288), 2, sym_line_comment, sym_block_comment, - STATE(2982), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71154] = 11, + [71019] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, ACTIONS(5210), 1, anon_sym_SEMI, - ACTIONS(5212), 1, - anon_sym_DASH_GT, - STATE(1201), 1, + STATE(601), 1, sym_block, - STATE(2527), 1, + STATE(2509), 1, sym_where_clause, - STATE(3739), 1, + STATE(3463), 1, sym_label, - STATE(2290), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - [71189] = 10, + [71054] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, + ACTIONS(4634), 1, + anon_sym_PIPE, + ACTIONS(4636), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5214), 1, - anon_sym_RBRACE, - ACTIONS(5216), 1, - anon_sym_COMMA, - STATE(2291), 2, + ACTIONS(5212), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2290), 2, sym_line_comment, sym_block_comment, - STATE(2851), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71222] = 11, + [71087] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(581), 1, - sym_declaration_list, - STATE(2438), 1, - sym_type_parameters, - STATE(2723), 1, - sym_trait_bounds, - STATE(3192), 1, + ACTIONS(5214), 1, + anon_sym_SEMI, + STATE(1383), 1, + sym_block, + STATE(2546), 1, sym_where_clause, - STATE(2292), 2, + STATE(3745), 1, + sym_label, + STATE(2291), 2, sym_line_comment, sym_block_comment, - [71257] = 10, + [71122] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5204), 1, + anon_sym_COLON, ACTIONS(5208), 1, - sym_mutable_specifier, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_SEMI, ACTIONS(5218), 1, - anon_sym_RBRACE, - ACTIONS(5220), 1, - anon_sym_COMMA, - STATE(2293), 2, + anon_sym_EQ, + STATE(2414), 1, + sym_type_parameters, + STATE(3112), 1, + sym_trait_bounds, + STATE(3379), 1, + sym_where_clause, + STATE(2292), 2, sym_line_comment, sym_block_comment, - STATE(2853), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71290] = 11, + [71157] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5222), 1, + ACTIONS(5220), 1, anon_sym_SEMI, - ACTIONS(5224), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, - STATE(1282), 1, + STATE(615), 1, sym_block, - STATE(2533), 1, + STATE(2481), 1, sym_where_clause, - STATE(3739), 1, + STATE(3463), 1, sym_label, - STATE(2294), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - [71325] = 11, + [71192] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5226), 1, + ACTIONS(5224), 1, anon_sym_SEMI, - STATE(1339), 1, + STATE(1308), 1, sym_block, - STATE(2536), 1, + STATE(2543), 1, sym_where_clause, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2295), 2, + STATE(2294), 2, + sym_line_comment, + sym_block_comment, + [71227] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5229), 1, + anon_sym_fn, + ACTIONS(5231), 1, + anon_sym_extern, + STATE(2442), 1, + sym_extern_modifier, + STATE(2295), 3, sym_line_comment, sym_block_comment, - [71360] = 11, + aux_sym_function_modifiers_repeat1, + ACTIONS(5226), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [71254] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, + ACTIONS(5234), 1, anon_sym_SEMI, - ACTIONS(5230), 1, - anon_sym_DASH_GT, - STATE(1296), 1, + STATE(539), 1, sym_block, - STATE(2534), 1, + STATE(2585), 1, sym_where_clause, - STATE(3739), 1, + STATE(3463), 1, sym_label, STATE(2296), 2, sym_line_comment, sym_block_comment, - [71395] = 11, + [71289] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4951), 1, sym_identifier, - STATE(1079), 1, + ACTIONS(4957), 1, + sym_crate, + STATE(1082), 1, aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(3372), 1, - sym_field_declaration, - STATE(3627), 1, + STATE(2909), 1, + sym_enum_variant, + STATE(3569), 1, sym_visibility_modifier, STATE(2297), 2, sym_line_comment, sym_block_comment, - [71430] = 10, + [71324] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5154), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5158), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5162), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5164), 1, sym_mutable_specifier, - ACTIONS(5232), 1, + ACTIONS(5236), 1, anon_sym_RBRACE, - ACTIONS(5234), 1, + ACTIONS(5238), 1, anon_sym_COMMA, STATE(2298), 2, sym_line_comment, sym_block_comment, - STATE(2897), 2, + STATE(2854), 2, sym_field_pattern, sym_remaining_field_pattern, - [71463] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [71357] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(5154), 1, sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(3206), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5240), 1, + anon_sym_RBRACE, + ACTIONS(5242), 1, + anon_sym_COMMA, STATE(2299), 2, sym_line_comment, sym_block_comment, - [71498] = 11, + STATE(2855), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71390] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5236), 1, - anon_sym_SEMI, - ACTIONS(5238), 1, - anon_sym_DASH_GT, - STATE(1349), 1, - sym_block, - STATE(2537), 1, - sym_where_clause, - STATE(3739), 1, - sym_label, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4959), 1, + sym_identifier, + STATE(1082), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1121), 1, + sym_attribute_item, + STATE(2919), 1, + sym_field_declaration, + STATE(3548), 1, + sym_visibility_modifier, STATE(2300), 2, sym_line_comment, sym_block_comment, - [71533] = 11, + [71425] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5240), 1, - anon_sym_SEMI, - ACTIONS(5242), 1, - anon_sym_DASH_GT, - STATE(1233), 1, - sym_block, - STATE(2531), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5208), 1, + anon_sym_LT, + STATE(744), 1, + sym_declaration_list, + STATE(2479), 1, + sym_type_parameters, + STATE(2654), 1, + sym_trait_bounds, + STATE(3335), 1, sym_where_clause, - STATE(3739), 1, - sym_label, STATE(2301), 2, sym_line_comment, sym_block_comment, - [71568] = 11, + [71460] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, ACTIONS(5244), 1, anon_sym_SEMI, - STATE(703), 1, + ACTIONS(5246), 1, + anon_sym_DASH_GT, + STATE(1166), 1, sym_block, - STATE(2550), 1, + STATE(2529), 1, sym_where_clause, - STATE(3736), 1, + STATE(3745), 1, sym_label, STATE(2302), 2, sym_line_comment, sym_block_comment, - [71603] = 11, + [71495] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, - anon_sym_SEMI, ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(593), 1, + anon_sym_SEMI, + STATE(757), 1, sym_block, - STATE(2568), 1, + STATE(2483), 1, sym_where_clause, - STATE(3736), 1, + STATE(3463), 1, sym_label, STATE(2303), 2, sym_line_comment, sym_block_comment, - [71638] = 11, + [71530] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5204), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1242), 1, + STATE(1186), 1, sym_declaration_list, - STATE(2423), 1, + STATE(2460), 1, sym_type_parameters, - STATE(2676), 1, + STATE(2617), 1, sym_trait_bounds, - STATE(3236), 1, + STATE(3256), 1, sym_where_clause, STATE(2304), 2, sym_line_comment, sym_block_comment, - [71673] = 11, + [71565] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1142), 1, - sym_declaration_list, - STATE(2442), 1, - sym_type_parameters, - STATE(2637), 1, - sym_trait_bounds, - STATE(3342), 1, + ACTIONS(5250), 1, + anon_sym_SEMI, + STATE(1343), 1, + sym_block, + STATE(2544), 1, sym_where_clause, + STATE(3745), 1, + sym_label, STATE(2305), 2, sym_line_comment, sym_block_comment, - [71708] = 11, + [71600] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - ACTIONS(5250), 1, - anon_sym_SEMI, + ACTIONS(5144), 1, + anon_sym_LBRACE, ACTIONS(5252), 1, - anon_sym_EQ, - STATE(2443), 1, - sym_type_parameters, - STATE(3097), 1, - sym_trait_bounds, - STATE(3349), 1, + anon_sym_SEMI, + ACTIONS(5254), 1, + anon_sym_DASH_GT, + STATE(690), 1, + sym_block, + STATE(2572), 1, sym_where_clause, + STATE(3463), 1, + sym_label, STATE(2306), 2, sym_line_comment, sym_block_comment, - [71743] = 11, + [71635] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5256), 1, anon_sym_SEMI, - STATE(772), 1, + ACTIONS(5258), 1, + anon_sym_DASH_GT, + STATE(1353), 1, sym_block, - STATE(2578), 1, + STATE(2545), 1, sym_where_clause, - STATE(3736), 1, + STATE(3745), 1, sym_label, STATE(2307), 2, sym_line_comment, sym_block_comment, - [71778] = 11, + [71670] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4957), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(4959), 1, sym_identifier, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, + STATE(1082), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, + STATE(1121), 1, + sym_attribute_item, + STATE(3391), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3548), 1, sym_visibility_modifier, STATE(2308), 2, sym_line_comment, sym_block_comment, - [71813] = 10, + [71705] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5256), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3062), 1, + anon_sym_POUND, + ACTIONS(4957), 1, + sym_crate, + ACTIONS(4959), 1, + sym_identifier, + STATE(1121), 1, + sym_attribute_item, + STATE(2308), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3212), 1, + sym_field_declaration, + STATE(3548), 1, + sym_visibility_modifier, STATE(2309), 2, sym_line_comment, sym_block_comment, - [71846] = 11, + [71740] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5204), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(646), 1, + STATE(741), 1, sym_declaration_list, - STATE(2475), 1, + STATE(2410), 1, sym_type_parameters, - STATE(2678), 1, + STATE(2800), 1, sym_trait_bounds, - STATE(3239), 1, + STATE(3354), 1, sym_where_clause, STATE(2310), 2, sym_line_comment, sym_block_comment, - [71881] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [71775] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1125), 1, + aux_sym_string_literal_token1, + STATE(2274), 1, + sym_string_literal, + STATE(2311), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4841), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71800] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4700), 1, + anon_sym_trait, + ACTIONS(5260), 1, + anon_sym_impl, + STATE(2312), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71825] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(3111), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2311), 2, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5150), 1, + anon_sym_LBRACE, + ACTIONS(5262), 1, + anon_sym_SEMI, + ACTIONS(5264), 1, + anon_sym_DASH_GT, + STATE(1207), 1, + sym_block, + STATE(2533), 1, + sym_where_clause, + STATE(3745), 1, + sym_label, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [71916] = 11, + [71860] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, + ACTIONS(5266), 1, anon_sym_SEMI, - ACTIONS(5260), 1, - anon_sym_DASH_GT, - STATE(1160), 1, + STATE(1258), 1, sym_block, - STATE(2522), 1, + STATE(2540), 1, sym_where_clause, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2312), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [71951] = 4, + [71895] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2313), 2, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, + ACTIONS(5023), 1, + anon_sym_BANG, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 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, - [71972] = 11, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71920] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5262), 1, + ACTIONS(5268), 1, anon_sym_SEMI, - STATE(1304), 1, + ACTIONS(5270), 1, + anon_sym_DASH_GT, + STATE(1239), 1, sym_block, - STATE(2535), 1, + STATE(2537), 1, sym_where_clause, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2314), 2, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [72007] = 11, + [71955] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5204), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1180), 1, + STATE(1248), 1, sym_declaration_list, - STATE(2424), 1, + STATE(2434), 1, sym_type_parameters, - STATE(2657), 1, + STATE(2643), 1, sym_trait_bounds, - STATE(3195), 1, + STATE(3251), 1, sym_where_clause, - STATE(2315), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [72042] = 6, + [71990] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - STATE(2316), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72067] = 9, + ACTIONS(5098), 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, + [72011] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5264), 1, - anon_sym_RBRACE, - STATE(2317), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72097] = 10, + ACTIONS(5098), 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, + [72032] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RBRACK, - ACTIONS(5272), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(2356), 1, - aux_sym_macro_definition_repeat1, - STATE(3373), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2318), 2, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5208), 1, + anon_sym_LT, + STATE(1148), 1, + sym_declaration_list, + STATE(2413), 1, + sym_type_parameters, + STATE(2593), 1, + sym_trait_bounds, + STATE(3375), 1, + sym_where_clause, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [72129] = 10, + [72067] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5274), 1, + ACTIONS(5278), 1, anon_sym_RBRACE, - STATE(2373), 1, + STATE(2368), 1, aux_sym_macro_definition_repeat1, - STATE(3395), 1, + STATE(3434), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2319), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [72161] = 10, + [72099] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_RPAREN, - STATE(2329), 1, - aux_sym_macro_definition_repeat1, - STATE(3425), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2320), 2, + ACTIONS(5025), 1, + anon_sym_DOT_DOT, + ACTIONS(5029), 1, + anon_sym_COLON_COLON, + ACTIONS(5027), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2322), 2, sym_line_comment, sym_block_comment, - [72193] = 10, + ACTIONS(4712), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72125] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, ACTIONS(5276), 1, - anon_sym_RBRACK, - STATE(2337), 1, + anon_sym_LBRACE, + ACTIONS(5280), 1, + anon_sym_RPAREN, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3427), 1, + STATE(3215), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2321), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [72225] = 10, + [72157] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_RBRACE, - STATE(2326), 1, + ACTIONS(5280), 1, + anon_sym_RBRACK, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3167), 1, + STATE(3222), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2322), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [72257] = 10, + [72189] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, + ACTIONS(5282), 1, anon_sym_RBRACE, - STATE(2369), 1, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3431), 1, + STATE(3238), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2323), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - [72289] = 7, + [72221] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2324), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72315] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_EQ, - ACTIONS(5284), 2, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5284), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2325), 2, + STATE(2326), 2, sym_line_comment, sym_block_comment, - STATE(3142), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72343] = 10, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72251] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_RBRACE, - STATE(2224), 1, + ACTIONS(5286), 1, + anon_sym_RPAREN, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3232), 1, + STATE(3240), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2326), 2, - sym_line_comment, - sym_block_comment, - [72375] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5290), 1, - aux_sym_line_comment_token1, - ACTIONS(5292), 1, - aux_sym_line_comment_token3, - ACTIONS(5294), 1, - anon_sym_BANG2, - ACTIONS(5296), 1, - anon_sym_SLASH2, - STATE(3524), 1, - sym__line_doc_comment_marker, - STATE(3539), 1, - sym__inner_line_doc_comment_marker, - STATE(3568), 1, - sym__outer_line_doc_comment_marker, STATE(2327), 2, sym_line_comment, sym_block_comment, - [72407] = 9, + [72283] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5298), 1, - anon_sym_RBRACE, + ACTIONS(5288), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2328), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72437] = 10, + ACTIONS(3512), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [72309] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5300), 1, - anon_sym_RPAREN, - STATE(2224), 1, + ACTIONS(5286), 1, + anon_sym_RBRACK, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3230), 1, + STATE(3241), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, STATE(2329), 2, sym_line_comment, sym_block_comment, - [72469] = 5, + [72341] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, + ACTIONS(5154), 1, sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5290), 1, + anon_sym_RBRACE, STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72491] = 10, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72371] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RPAREN, - STATE(2374), 1, + ACTIONS(5292), 1, + anon_sym_RBRACE, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3330), 1, + STATE(3244), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, STATE(2331), 2, sym_line_comment, sym_block_comment, - [72523] = 10, + [72403] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(2346), 1, - aux_sym_macro_definition_repeat1, - STATE(3332), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5296), 1, + anon_sym_STAR, + STATE(2866), 1, + sym_use_list, + STATE(3740), 1, + sym_type_arguments, + ACTIONS(5294), 2, + sym_identifier, + sym_super, STATE(2332), 2, sym_line_comment, sym_block_comment, - [72555] = 10, + [72433] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5053), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5298), 1, anon_sym_SEMI, - STATE(728), 1, + STATE(738), 1, sym_field_declaration_list, - STATE(2890), 1, + STATE(3114), 1, sym_ordered_field_declaration_list, - STATE(3393), 1, + STATE(3351), 1, sym_where_clause, STATE(2333), 2, sym_line_comment, sym_block_comment, - [72587] = 10, + [72465] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5304), 1, + anon_sym_RBRACK, + ACTIONS(5306), 1, anon_sym_LBRACE, ACTIONS(5308), 1, - anon_sym_RPAREN, - STATE(2350), 1, - aux_sym_macro_definition_repeat1, - STATE(3334), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + anon_sym_EQ, + STATE(3475), 1, + sym_delim_token_tree, STATE(2334), 2, sym_line_comment, sym_block_comment, - [72619] = 10, + [72497] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(2352), 1, - aux_sym_macro_definition_repeat1, - STATE(3336), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5310), 1, + anon_sym_RBRACE, STATE(2335), 2, sym_line_comment, sym_block_comment, - [72651] = 9, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72527] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5154), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5158), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5162), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5164), 1, sym_mutable_specifier, - ACTIONS(5310), 1, + ACTIONS(5312), 1, anon_sym_RBRACE, STATE(2336), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72681] = 10, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72557] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5314), 1, + anon_sym_RBRACE, + STATE(2337), 2, + sym_line_comment, + sym_block_comment, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72587] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5316), 1, + anon_sym_RBRACE, + STATE(2338), 2, + sym_line_comment, + sym_block_comment, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72617] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5272), 1, + anon_sym_LPAREN, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym_macro_definition_repeat1, + STATE(3338), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, + STATE(2339), 2, + sym_line_comment, + sym_block_comment, + [72649] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5300), 1, + ACTIONS(5318), 1, anon_sym_RBRACK, - STATE(2224), 1, + STATE(2347), 1, aux_sym_macro_definition_repeat1, - STATE(3231), 1, + STATE(3339), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2337), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [72713] = 9, + [72681] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(5272), 1, + anon_sym_LPAREN, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2338), 2, - sym_line_comment, - sym_block_comment, - [72743] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5316), 1, - sym_identifier, - STATE(2339), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72765] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2340), 2, + ACTIONS(5320), 1, + anon_sym_RPAREN, + STATE(2348), 1, + aux_sym_macro_definition_repeat1, + STATE(3341), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, + STATE(2341), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72795] = 7, + [72713] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, + ACTIONS(5272), 1, + anon_sym_LPAREN, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, + anon_sym_LBRACE, ACTIONS(5320), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2341), 2, + anon_sym_RBRACK, + STATE(2378), 1, + aux_sym_macro_definition_repeat1, + STATE(3342), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, + STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [72821] = 5, + [72745] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5322), 1, + ACTIONS(4272), 1, + anon_sym_LBRACE, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5296), 1, + anon_sym_STAR, + STATE(2866), 1, + sym_use_list, + STATE(3472), 1, + sym_type_arguments, + ACTIONS(5294), 2, sym_identifier, - STATE(2342), 2, + sym_super, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72843] = 7, + [72775] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(4995), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2343), 2, + ACTIONS(5272), 1, + anon_sym_LPAREN, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, + anon_sym_LBRACE, + ACTIONS(5322), 1, + anon_sym_RBRACE, + STATE(2369), 1, + aux_sym_macro_definition_repeat1, + STATE(3448), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, + STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72869] = 8, + [72807] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, ACTIONS(5326), 1, anon_sym_COLON, ACTIONS(5328), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(5324), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2344), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [72897] = 10, + [72835] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RPAREN, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - STATE(2359), 1, + ACTIONS(5330), 1, + anon_sym_RPAREN, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3367), 1, + STATE(3360), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2345), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [72929] = 10, + [72867] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, ACTIONS(5330), 1, anon_sym_RBRACK, - STATE(2224), 1, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3355), 1, + STATE(3361), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2346), 2, - sym_line_comment, - sym_block_comment, - [72961] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - ACTIONS(5332), 1, - anon_sym_SEMI, - STATE(578), 1, - sym_field_declaration_list, - STATE(3081), 1, - sym_ordered_field_declaration_list, - STATE(3315), 1, - sym_where_clause, STATE(2347), 2, sym_line_comment, sym_block_comment, - [72993] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2348), 2, - sym_line_comment, - sym_block_comment, - [73025] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5344), 1, - anon_sym_RBRACE, - STATE(2349), 2, - sym_line_comment, - sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73055] = 10, + [72899] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, + ACTIONS(5332), 1, anon_sym_RPAREN, - STATE(2224), 1, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3356), 1, + STATE(3362), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, - STATE(2350), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [73087] = 5, + [72931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5348), 1, + ACTIONS(5334), 1, anon_sym_trait, - STATE(2351), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3574), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73109] = 10, + [72953] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5336), 1, + aux_sym_line_comment_token1, + ACTIONS(5338), 1, + aux_sym_line_comment_token3, + ACTIONS(5340), 1, + anon_sym_BANG2, + ACTIONS(5342), 1, + anon_sym_SLASH2, + STATE(3581), 1, + sym__line_doc_comment_marker, + STATE(3587), 1, + sym__inner_line_doc_comment_marker, + STATE(3768), 1, + sym__outer_line_doc_comment_marker, + STATE(2350), 2, + sym_line_comment, + sym_block_comment, + [72985] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, ACTIONS(5346), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3357), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2352), 2, + anon_sym_COLON, + ACTIONS(5348), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5344), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [73141] = 8, + [73013] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(5348), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3512), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, + [73039] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5350), 1, + anon_sym_RBRACE, STATE(2353), 2, sym_line_comment, sym_block_comment, - [73169] = 7, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73069] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(5354), 1, + ACTIONS(5288), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(5346), 1, + anon_sym_COLON, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(5344), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [73195] = 8, + [73097] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_EQ, - ACTIONS(5356), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5352), 1, + anon_sym_RPAREN, + STATE(2323), 1, + aux_sym_macro_definition_repeat1, + STATE(3359), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, STATE(2355), 2, sym_line_comment, sym_block_comment, - STATE(3109), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73223] = 10, + [73129] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5352), 1, anon_sym_RBRACK, - STATE(2224), 1, + STATE(2324), 1, aux_sym_macro_definition_repeat1, - STATE(3207), 1, + STATE(3374), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, STATE(2356), 2, sym_line_comment, sym_block_comment, - [73255] = 10, + [73161] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, + ACTIONS(5354), 1, anon_sym_RBRACE, - STATE(2224), 1, + STATE(2325), 1, aux_sym_macro_definition_repeat1, - STATE(3302), 1, + STATE(3417), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, STATE(2357), 2, sym_line_comment, sym_block_comment, - [73287] = 10, + [73193] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5364), 1, - anon_sym_RBRACE, - STATE(2357), 1, + ACTIONS(5356), 1, + anon_sym_RPAREN, + STATE(2327), 1, aux_sym_macro_definition_repeat1, - STATE(3421), 1, + STATE(3394), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, STATE(2358), 2, sym_line_comment, sym_block_comment, - [73319] = 10, + [73225] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RPAREN, - STATE(2224), 1, + ACTIONS(5356), 1, + anon_sym_RBRACK, + STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3204), 1, + STATE(3372), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, STATE(2359), 2, sym_line_comment, sym_block_comment, - [73351] = 10, + [73257] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5053), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5366), 1, - anon_sym_RBRACK, - ACTIONS(5368), 1, + ACTIONS(5360), 1, anon_sym_EQ, - STATE(3464), 1, - sym_delim_token_tree, + ACTIONS(5358), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2360), 2, sym_line_comment, sym_block_comment, - [73383] = 9, + STATE(3154), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73285] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(5272), 1, + anon_sym_LPAREN, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, + ACTIONS(5362), 1, + anon_sym_RBRACE, + STATE(2331), 1, + aux_sym_macro_definition_repeat1, + STATE(3263), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, STATE(2361), 2, sym_line_comment, sym_block_comment, - [73413] = 9, + [73317] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5370), 1, - anon_sym_RBRACE, + ACTIONS(5053), 1, + anon_sym_LPAREN, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, + anon_sym_SEMI, + STATE(1175), 1, + sym_field_declaration_list, + STATE(2879), 1, + sym_ordered_field_declaration_list, + STATE(3204), 1, + sym_where_clause, STATE(2362), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73443] = 9, + [73349] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5372), 1, - anon_sym_RBRACE, + ACTIONS(4871), 1, + anon_sym_COLON_COLON, + ACTIONS(5300), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5366), 1, + anon_sym_RBRACK, + ACTIONS(5368), 1, + anon_sym_EQ, + STATE(3479), 1, + sym_delim_token_tree, STATE(2363), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73473] = 9, + [73381] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5374), 1, - anon_sym_RBRACE, + ACTIONS(5053), 1, + anon_sym_LPAREN, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5370), 1, + anon_sym_SEMI, + STATE(628), 1, + sym_field_declaration_list, + STATE(2974), 1, + sym_ordered_field_declaration_list, + STATE(3413), 1, + sym_where_clause, STATE(2364), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73503] = 5, + [73413] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, + ACTIONS(5372), 1, sym_identifier, STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, + ACTIONS(4857), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73525] = 10, + [73435] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5378), 1, - anon_sym_SEMI, - STATE(1239), 1, - sym_field_declaration_list, - STATE(2926), 1, - sym_ordered_field_declaration_list, - STATE(3225), 1, - sym_where_clause, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5374), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2366), 2, sym_line_comment, sym_block_comment, - [73557] = 5, + ACTIONS(3512), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [73461] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5380), 1, - anon_sym_trait, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, + ACTIONS(5376), 1, + anon_sym_RBRACE, STATE(2367), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73579] = 10, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73491] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, + ACTIONS(5378), 1, + anon_sym_RBRACE, + STATE(2232), 1, + aux_sym_macro_definition_repeat1, + STATE(3357), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, STATE(2368), 2, sym_line_comment, sym_block_comment, - [73611] = 10, + [73523] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5274), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5380), 1, anon_sym_RBRACE, - STATE(2224), 1, + STATE(2232), 1, aux_sym_macro_definition_repeat1, - STATE(3307), 1, + STATE(3364), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3555), 1, sym_token_tree_pattern, STATE(2369), 2, sym_line_comment, sym_block_comment, - [73643] = 8, + [73555] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, + ACTIONS(4753), 1, anon_sym_COLON_COLON, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5300), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5366), 1, + anon_sym_RBRACK, + ACTIONS(5368), 1, + anon_sym_EQ, + STATE(3479), 1, + sym_delim_token_tree, STATE(2370), 2, sym_line_comment, sym_block_comment, - [73671] = 10, + [73587] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5053), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5384), 1, anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, + ACTIONS(5382), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2371), 2, sym_line_comment, sym_block_comment, - [73703] = 10, + STATE(3099), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5384), 1, - anon_sym_SEMI, - STATE(1169), 1, - sym_field_declaration_list, - STATE(2879), 1, - sym_ordered_field_declaration_list, - STATE(3423), 1, - sym_where_clause, + ACTIONS(5386), 1, + anon_sym_trait, STATE(2372), 2, sym_line_comment, sym_block_comment, - [73735] = 10, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73637] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5386), 1, - anon_sym_RBRACE, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3209), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5388), 1, + sym_identifier, STATE(2373), 2, sym_line_comment, sym_block_comment, - [73767] = 10, + ACTIONS(4857), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5330), 1, - anon_sym_RPAREN, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3354), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, + ACTIONS(5390), 1, + sym_identifier, STATE(2374), 2, sym_line_comment, sym_block_comment, - [73799] = 9, + ACTIONS(4857), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73681] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5053), 1, + anon_sym_LPAREN, + ACTIONS(5059), 1, anon_sym_where, ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5388), 1, + ACTIONS(5392), 1, anon_sym_SEMI, - STATE(762), 1, - sym_declaration_list, - STATE(3135), 1, + STATE(1245), 1, + sym_field_declaration_list, + STATE(2924), 1, + sym_ordered_field_declaration_list, + STATE(3247), 1, sym_where_clause, STATE(2375), 2, sym_line_comment, sym_block_comment, - [73828] = 9, + [73713] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(5300), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(5390), 1, - anon_sym_SEMI, - STATE(1334), 1, - sym_declaration_list, - STATE(2963), 1, - sym_where_clause, + ACTIONS(5366), 1, + anon_sym_RBRACK, + ACTIONS(5368), 1, + anon_sym_EQ, + STATE(3479), 1, + sym_delim_token_tree, STATE(2376), 2, sym_line_comment, sym_block_comment, - [73857] = 9, + [73745] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5392), 1, - anon_sym_SEMI, - STATE(1162), 1, - sym_declaration_list, - STATE(2874), 1, - sym_where_clause, + ACTIONS(5394), 1, + sym_identifier, STATE(2377), 2, sym_line_comment, sym_block_comment, - [73886] = 9, + ACTIONS(4857), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73767] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(5272), 1, + anon_sym_LPAREN, + ACTIONS(5274), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, anon_sym_LBRACE, - STATE(1183), 1, - sym_enum_variant_list, - STATE(2659), 1, - sym_type_parameters, - STATE(3223), 1, - sym_where_clause, + ACTIONS(5332), 1, + anon_sym_RBRACK, + STATE(2232), 1, + aux_sym_macro_definition_repeat1, + STATE(3363), 1, + sym_macro_rule, + STATE(3555), 1, + sym_token_tree_pattern, STATE(2378), 2, sym_line_comment, sym_block_comment, - [73915] = 5, + [73799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(1007), 1, + anon_sym_DOT_DOT, STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [73936] = 9, + ACTIONS(1009), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73820] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, + anon_sym_where, ACTIONS(5396), 1, - anon_sym_GT, - ACTIONS(5398), 1, - anon_sym_COMMA, - STATE(3024), 1, - sym_trait_bounds, - STATE(3025), 1, - aux_sym_type_arguments_repeat1, + anon_sym_LBRACE, + STATE(647), 1, + sym_enum_variant_list, + STATE(2644), 1, + sym_type_parameters, + STATE(3445), 1, + sym_where_clause, STATE(2380), 2, sym_line_comment, sym_block_comment, - [73965] = 5, + [73849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_DOT_DOT, + ACTIONS(5398), 1, + anon_sym_DASH_GT, STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73986] = 9, + ACTIONS(3658), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [73870] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_enum_variant_list, - STATE(2664), 1, - sym_type_parameters, - STATE(3387), 1, - sym_where_clause, + ACTIONS(4809), 1, + anon_sym_DOT_DOT, + ACTIONS(4811), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2382), 2, sym_line_comment, sym_block_comment, - [74015] = 8, + ACTIONS(4634), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73893] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5402), 1, + ACTIONS(5400), 1, anon_sym_if, - STATE(3741), 1, + STATE(3746), 1, sym_label, - STATE(1814), 2, + STATE(482), 2, sym_if_expression, sym_block, STATE(2383), 2, sym_line_comment, sym_block_comment, - [74042] = 5, + [73920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - anon_sym_DOT_DOT, + ACTIONS(5402), 1, + anon_sym_DASH_GT, STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74063] = 9, + ACTIONS(3676), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [73941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, ACTIONS(5404), 1, - anon_sym_SEMI, - STATE(712), 1, - sym_declaration_list, - STATE(2907), 1, - sym_where_clause, + anon_sym_DASH_GT, STATE(2385), 2, sym_line_comment, sym_block_comment, - [74092] = 5, + ACTIONS(3682), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [73962] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_DOT_DOT, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(5094), 1, + anon_sym_for, STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74113] = 9, + ACTIONS(3512), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73985] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(651), 1, - sym_field_declaration_list, - STATE(2694), 1, - sym_type_parameters, - STATE(3346), 1, + ACTIONS(5406), 1, + anon_sym_SEMI, + STATE(1318), 1, + sym_declaration_list, + STATE(2958), 1, sym_where_clause, STATE(2387), 2, sym_line_comment, sym_block_comment, - [74142] = 6, + [74014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5068), 1, - anon_sym_for, + ACTIONS(5001), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3692), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - [74165] = 7, + anon_sym_COMMA, + anon_sym_DASH_GT, + [74035] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5033), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5408), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2389), 2, sym_line_comment, sym_block_comment, - [74190] = 5, + [74058] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_DASH_GT, + ACTIONS(5154), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_DOT_DOT, + ACTIONS(5162), 1, + anon_sym_ref, + ACTIONS(5164), 1, + sym_mutable_specifier, STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74211] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + STATE(3449), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74085] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - sym_identifier, - ACTIONS(5410), 1, - anon_sym_ref, - ACTIONS(5412), 1, - sym_mutable_specifier, - ACTIONS(5414), 1, - anon_sym_move, - STATE(238), 1, - sym_closure_parameters, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, + anon_sym_where, + STATE(663), 1, + sym_field_declaration_list, + STATE(2661), 1, + sym_type_parameters, + STATE(3369), 1, + sym_where_clause, STATE(2391), 2, sym_line_comment, sym_block_comment, - [74240] = 9, + [74114] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5416), 1, - anon_sym_GT, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2898), 1, - sym_trait_bounds, - STATE(2899), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5411), 1, + anon_sym_SEMI, + STATE(724), 1, + sym_declaration_list, + STATE(2871), 1, + sym_where_clause, STATE(2392), 2, sym_line_comment, sym_block_comment, - [74269] = 6, + [74143] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5420), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4793), 1, + anon_sym_DOT_DOT, STATE(2393), 2, sym_line_comment, sym_block_comment, - [74292] = 6, + ACTIONS(4791), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74164] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4803), 2, + ACTIONS(5348), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(5324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2394), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74315] = 6, + [74189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5072), 1, - anon_sym_for, + ACTIONS(5413), 1, + anon_sym_DASH_GT, STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3696), 5, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_where, - [74338] = 9, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74210] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5423), 1, - anon_sym_SEMI, - STATE(717), 1, - sym_declaration_list, - STATE(3042), 1, - sym_where_clause, STATE(2396), 2, sym_line_comment, sym_block_comment, - [74367] = 5, + ACTIONS(5072), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [74229] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5425), 1, - anon_sym_DASH_GT, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5415), 1, + anon_sym_SEMI, + STATE(1168), 1, + sym_declaration_list, + STATE(2874), 1, + sym_where_clause, STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74388] = 8, + [74258] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5427), 1, - anon_sym_if, - STATE(3677), 1, - sym_label, - STATE(1471), 2, - sym_if_expression, - sym_block, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(5122), 1, + anon_sym_for, STATE(2398), 2, sym_line_comment, sym_block_comment, - [74415] = 9, + ACTIONS(3512), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74281] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5429), 1, - anon_sym_SEMI, - STATE(1371), 1, - sym_declaration_list, - STATE(2967), 1, - sym_where_clause, + ACTIONS(5419), 1, + anon_sym_COMMA, + STATE(2409), 1, + aux_sym_where_clause_repeat1, STATE(2399), 2, sym_line_comment, sym_block_comment, - [74444] = 6, + ACTIONS(5417), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [74304] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2405), 1, - aux_sym_where_clause_repeat1, + anon_sym_SLASH_STAR, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(5067), 1, + anon_sym_for, STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [74467] = 9, + anon_sym_PLUS, + anon_sym_where, + [74327] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5421), 1, anon_sym_SEMI, - STATE(758), 1, + STATE(1266), 1, sym_declaration_list, - STATE(3126), 1, + STATE(2943), 1, sym_where_clause, STATE(2401), 2, sym_line_comment, sym_block_comment, - [74496] = 9, + [74356] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5423), 1, anon_sym_LBRACE, - ACTIONS(5437), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, - STATE(3127), 1, + STATE(1139), 1, + sym_enum_variant_list, + STATE(2733), 1, + sym_type_parameters, + STATE(3365), 1, sym_where_clause, STATE(2402), 2, sym_line_comment, sym_block_comment, - [74525] = 6, + [74385] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, - anon_sym_COLON, - ACTIONS(5439), 1, - anon_sym_EQ, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_SEMI, + STATE(1142), 1, + sym_declaration_list, + STATE(3098), 1, + sym_where_clause, STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74548] = 7, + [74414] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5140), 1, + anon_sym_for, STATE(2404), 2, sym_line_comment, sym_block_comment, - [74573] = 6, + ACTIONS(3512), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5443), 1, + ACTIONS(5429), 1, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_where_clause_repeat1, - STATE(2405), 2, + STATE(2405), 3, sym_line_comment, sym_block_comment, - ACTIONS(3481), 4, + aux_sym_where_clause_repeat1, + ACTIONS(5427), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [74596] = 9, + [74458] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5445), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_SEMI, - STATE(760), 1, + STATE(512), 1, sym_declaration_list, - STATE(3131), 1, + STATE(3055), 1, sym_where_clause, STATE(2406), 2, sym_line_comment, sym_block_comment, - [74625] = 9, + [74487] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_SEMI, - STATE(1373), 1, - sym_declaration_list, - STATE(2968), 1, - sym_where_clause, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5434), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2407), 2, sym_line_comment, sym_block_comment, - [74654] = 8, + [74512] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5436), 1, + anon_sym_GT, + ACTIONS(5438), 1, + anon_sym_COMMA, + STATE(3002), 1, + sym_trait_bounds, + STATE(3003), 1, + aux_sym_type_arguments_repeat1, STATE(2408), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74681] = 9, + [74541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_SEMI, - STATE(766), 1, - sym_declaration_list, - STATE(3141), 1, - sym_where_clause, + ACTIONS(5440), 1, + anon_sym_COMMA, + STATE(2405), 1, + aux_sym_where_clause_repeat1, STATE(2409), 2, sym_line_comment, sym_block_comment, - [74710] = 9, + ACTIONS(3524), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [74564] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5451), 1, - anon_sym_SEMI, - STATE(1254), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(667), 1, sym_declaration_list, - STATE(2939), 1, + STATE(2645), 1, + sym_trait_bounds, + STATE(3257), 1, sym_where_clause, STATE(2410), 2, sym_line_comment, sym_block_comment, - [74739] = 9, + [74593] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5453), 1, - anon_sym_SEMI, - STATE(1256), 1, - sym_declaration_list, - STATE(2940), 1, - sym_where_clause, + ACTIONS(5033), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2411), 2, sym_line_comment, sym_block_comment, - [74768] = 9, + ACTIONS(3666), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [74614] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5057), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - STATE(1188), 1, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1150), 1, sym_field_declaration_list, - STATE(2661), 1, + STATE(2595), 1, sym_type_parameters, - STATE(3255), 1, + STATE(3382), 1, sym_where_clause, STATE(2412), 2, sym_line_comment, sym_block_comment, - [74797] = 9, + [74643] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5455), 1, - anon_sym_SEMI, - STATE(608), 1, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(1178), 1, sym_declaration_list, - STATE(2970), 1, + STATE(2615), 1, + sym_trait_bounds, + STATE(3206), 1, sym_where_clause, STATE(2413), 2, sym_line_comment, sym_block_comment, - [74826] = 9, + [74672] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5457), 1, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5442), 1, anon_sym_SEMI, - STATE(611), 1, - sym_declaration_list, - STATE(3104), 1, + ACTIONS(5444), 1, + anon_sym_EQ, + STATE(2881), 1, + sym_trait_bounds, + STATE(3220), 1, sym_where_clause, STATE(2414), 2, sym_line_comment, sym_block_comment, - [74855] = 5, + [74701] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_DOT_DOT, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5446), 1, + anon_sym_SEMI, + STATE(1185), 1, + sym_declaration_list, + STATE(2883), 1, + sym_where_clause, STATE(2415), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74876] = 9, + [74730] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5459), 1, - anon_sym_SEMI, - STATE(1260), 1, - sym_declaration_list, - STATE(2942), 1, - sym_where_clause, + ACTIONS(3640), 1, + anon_sym_COLON, + ACTIONS(5448), 1, + anon_sym_EQ, STATE(2416), 2, sym_line_comment, sym_block_comment, - [74905] = 9, + ACTIONS(3638), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [74753] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5461), 1, - anon_sym_SEMI, - STATE(1262), 1, - sym_declaration_list, - STATE(2943), 1, - sym_where_clause, + ACTIONS(5450), 1, + sym_identifier, + ACTIONS(5452), 1, + anon_sym_ref, + ACTIONS(5454), 1, + sym_mutable_specifier, + ACTIONS(5456), 1, + anon_sym_move, + STATE(232), 1, + sym_closure_parameters, STATE(2417), 2, sym_line_comment, sym_block_comment, - [74934] = 6, + [74782] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, - anon_sym_RBRACK, - ACTIONS(5005), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5458), 1, + anon_sym_SEMI, + STATE(1332), 1, + sym_declaration_list, + STATE(2961), 1, + sym_where_clause, STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [74957] = 9, + [74811] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5423), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, - anon_sym_SEMI, - STATE(1205), 1, - sym_declaration_list, - STATE(2915), 1, + STATE(1189), 1, + sym_enum_variant_list, + STATE(2619), 1, + sym_type_parameters, + STATE(3279), 1, sym_where_clause, STATE(2419), 2, sym_line_comment, sym_block_comment, - [74986] = 9, + [74840] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5465), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5460), 1, anon_sym_SEMI, - STATE(1209), 1, + STATE(759), 1, sym_declaration_list, - STATE(2916), 1, + STATE(3024), 1, sym_where_clause, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75015] = 9, + [74869] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5467), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5462), 1, anon_sym_SEMI, - STATE(719), 1, + STATE(761), 1, sym_declaration_list, - STATE(3044), 1, + STATE(2891), 1, sym_where_clause, STATE(2421), 2, sym_line_comment, sym_block_comment, - [75044] = 9, + [74898] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, + ACTIONS(5464), 1, anon_sym_SEMI, - STATE(1226), 1, + STATE(1334), 1, sym_declaration_list, - STATE(2922), 1, + STATE(2962), 1, sym_where_clause, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75073] = 9, + [74927] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1294), 1, - sym_declaration_list, - STATE(2689), 1, - sym_trait_bounds, - STATE(3328), 1, + STATE(1194), 1, + sym_field_declaration_list, + STATE(2620), 1, + sym_type_parameters, + STATE(3306), 1, sym_where_clause, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75102] = 9, + [74956] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1231), 1, + ACTIONS(5466), 1, + anon_sym_SEMI, + STATE(1336), 1, sym_declaration_list, - STATE(2674), 1, - sym_trait_bounds, - STATE(3203), 1, + STATE(2964), 1, sym_where_clause, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75131] = 6, + [74985] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2425), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3164), 1, anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - [75154] = 8, - ACTIONS(19), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, + ACTIONS(5468), 1, + anon_sym_SEMI, + STATE(1338), 1, + sym_declaration_list, + STATE(2965), 1, + sym_where_clause, + STATE(2425), 2, + sym_line_comment, + sym_block_comment, + [75014] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5471), 1, - anon_sym_if, - STATE(3532), 1, - sym_label, - STATE(406), 2, - sym_if_expression, - sym_block, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5470), 1, + anon_sym_GT, + ACTIONS(5472), 1, + anon_sym_COMMA, + STATE(3047), 1, + sym_trait_bounds, + STATE(3048), 1, + aux_sym_type_arguments_repeat1, STATE(2426), 2, sym_line_comment, sym_block_comment, - [75181] = 9, + [75043] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5473), 1, + ACTIONS(5474), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(1262), 1, sym_declaration_list, - STATE(2962), 1, + STATE(2940), 1, sym_where_clause, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75210] = 9, + [75072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(1029), 1, + anon_sym_DOT_DOT, + STATE(2428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1031), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75093] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5475), 1, + ACTIONS(5476), 1, anon_sym_SEMI, - STATE(626), 1, + STATE(1316), 1, sym_declaration_list, - STATE(3137), 1, + STATE(2957), 1, sym_where_clause, - STATE(2428), 2, + STATE(2429), 2, sym_line_comment, sym_block_comment, - [75239] = 7, + [75122] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(5282), 1, + ACTIONS(5288), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, + ACTIONS(5324), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2429), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - [75264] = 5, + [75147] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, - STATE(2430), 2, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5478), 1, + anon_sym_SEMI, + STATE(685), 1, + sym_declaration_list, + STATE(3116), 1, + sym_where_clause, + STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75285] = 9, + [75176] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, + ACTIONS(5480), 1, + anon_sym_GT, + ACTIONS(5482), 1, + anon_sym_COMMA, + STATE(3107), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3512), 2, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + anon_sym_as, + STATE(2432), 2, + sym_line_comment, + sym_block_comment, + [75203] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5484), 1, anon_sym_SEMI, - STATE(609), 1, + STATE(618), 1, sym_declaration_list, - STATE(3018), 1, + STATE(2928), 1, sym_where_clause, - STATE(2431), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - [75314] = 9, + [75232] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5479), 1, - anon_sym_SEMI, - STATE(615), 1, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(1298), 1, sym_declaration_list, - STATE(2903), 1, + STATE(2659), 1, + sym_trait_bounds, + STATE(3356), 1, sym_where_clause, - STATE(2432), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [75343] = 5, + [75261] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2433), 2, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5486), 1, + anon_sym_SEMI, + STATE(765), 1, + sym_declaration_list, + STATE(3012), 1, + sym_where_clause, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 4, - anon_sym_RPAREN, + [75290] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3160), 1, anon_sym_PLUS, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5488), 1, + anon_sym_GT, + ACTIONS(5490), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [75364] = 9, + STATE(3028), 1, + sym_trait_bounds, + STATE(3029), 1, + aux_sym_type_arguments_repeat1, + STATE(2436), 2, + sym_line_comment, + sym_block_comment, + [75319] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5481), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5492), 1, anon_sym_SEMI, - STATE(521), 1, + STATE(695), 1, sym_declaration_list, - STATE(3088), 1, + STATE(3128), 1, sym_where_clause, - STATE(2434), 2, + STATE(2437), 2, + sym_line_comment, + sym_block_comment, + [75348] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(729), 1, + sym_declaration_list, + STATE(2684), 1, + sym_trait_bounds, + STATE(3459), 1, + sym_where_clause, + STATE(2438), 2, + sym_line_comment, + sym_block_comment, + [75377] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5288), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5434), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2439), 2, sym_line_comment, sym_block_comment, - [75393] = 6, + [75402] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5483), 1, + ACTIONS(5494), 1, anon_sym_RBRACK, - ACTIONS(4973), 2, + ACTIONS(5001), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2435), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 3, + ACTIONS(3692), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [75416] = 9, + [75425] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5486), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5497), 1, anon_sym_SEMI, - STATE(523), 1, + STATE(767), 1, sym_declaration_list, - STATE(3106), 1, + STATE(3022), 1, sym_where_clause, - STATE(2436), 2, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [75445] = 9, + [75454] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_SEMI, - STATE(618), 1, - sym_declaration_list, - STATE(2964), 1, - sym_where_clause, - STATE(2437), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - [75474] = 9, + ACTIONS(3574), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75473] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(5204), 1, anon_sym_COLON, - STATE(681), 1, - sym_declaration_list, - STATE(2665), 1, + ACTIONS(5499), 1, + anon_sym_GT, + ACTIONS(5501), 1, + anon_sym_COMMA, + STATE(2896), 1, sym_trait_bounds, - STATE(3385), 1, - sym_where_clause, - STATE(2438), 2, + STATE(2897), 1, + aux_sym_type_arguments_repeat1, + STATE(2443), 2, sym_line_comment, sym_block_comment, - [75503] = 6, + [75502] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, - ACTIONS(5112), 1, + ACTIONS(5132), 1, anon_sym_for, - STATE(2439), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75526] = 8, + [75525] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(5490), 1, - anon_sym_GT, - ACTIONS(5492), 1, - anon_sym_COMMA, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2440), 2, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5503), 1, + anon_sym_if, + STATE(3747), 1, + sym_label, + STATE(1814), 2, + sym_if_expression, + sym_block, + STATE(2445), 2, sym_line_comment, sym_block_comment, - [75553] = 5, + [75552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5494), 1, + ACTIONS(5505), 1, anon_sym_DASH_GT, - STATE(2441), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 5, + ACTIONS(3652), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [75574] = 9, + [75573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1172), 1, - sym_declaration_list, - STATE(2655), 1, - sym_trait_bounds, - STATE(3159), 1, - sym_where_clause, - STATE(2442), 2, + ACTIONS(4761), 1, + anon_sym_DOT_DOT, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [75603] = 9, + ACTIONS(4759), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75594] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5496), 1, + ACTIONS(5507), 1, anon_sym_SEMI, - ACTIONS(5498), 1, - anon_sym_EQ, - STATE(2881), 1, - sym_trait_bounds, - STATE(3179), 1, + STATE(701), 1, + sym_declaration_list, + STATE(3157), 1, sym_where_clause, - STATE(2443), 2, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [75632] = 9, + [75623] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, anon_sym_LBRACE, - STATE(1133), 1, - sym_enum_variant_list, - STATE(2635), 1, - sym_type_parameters, - STATE(3310), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5509), 1, + anon_sym_SEMI, + STATE(510), 1, + sym_declaration_list, + STATE(3052), 1, sym_where_clause, - STATE(2444), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [75661] = 9, + [75652] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(5500), 1, - anon_sym_SEMI, - STATE(1136), 1, - sym_declaration_list, - STATE(3080), 1, - sym_where_clause, - STATE(2445), 2, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5511), 1, + anon_sym_if, + STATE(3682), 1, + sym_label, + STATE(1469), 2, + sym_if_expression, + sym_block, + STATE(2450), 2, sym_line_comment, sym_block_comment, - [75690] = 5, + [75679] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COMMA, - STATE(2446), 3, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5513), 1, + anon_sym_SEMI, + STATE(534), 1, + sym_declaration_list, + STATE(3148), 1, + sym_where_clause, + STATE(2451), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5502), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75711] = 6, + [75708] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, - ACTIONS(5116), 1, + ACTIONS(5134), 1, anon_sym_for, - STATE(2447), 2, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75734] = 6, + [75731] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5078), 1, - anon_sym_for, - STATE(2448), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, + ACTIONS(5055), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, anon_sym_where, - [75757] = 5, + STATE(746), 1, + sym_field_declaration_list, + STATE(2689), 1, + sym_type_parameters, + STATE(3169), 1, + sym_where_clause, + STATE(2453), 2, + sym_line_comment, + sym_block_comment, + [75760] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5507), 1, - anon_sym_DASH_GT, - STATE(2449), 2, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5515), 1, + anon_sym_SEMI, + STATE(1211), 1, + sym_declaration_list, + STATE(2912), 1, + sym_where_clause, + STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [75778] = 6, + [75789] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, - ACTIONS(5118), 1, + ACTIONS(5136), 1, anon_sym_for, - STATE(2450), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75801] = 9, + [75812] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5509), 1, - anon_sym_GT, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(3002), 1, - sym_trait_bounds, - STATE(3003), 1, - aux_sym_type_arguments_repeat1, - STATE(2451), 2, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5517), 1, + anon_sym_SEMI, + STATE(1260), 1, + sym_declaration_list, + STATE(2939), 1, + sym_where_clause, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [75830] = 6, + [75841] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 2, + ACTIONS(3164), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5483), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2452), 2, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5519), 1, + anon_sym_SEMI, + STATE(1215), 1, + sym_declaration_list, + STATE(2913), 1, + sym_where_clause, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [75853] = 9, + [75870] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5513), 1, + ACTIONS(5521), 1, anon_sym_SEMI, - STATE(1179), 1, + STATE(1264), 1, sym_declaration_list, - STATE(2882), 1, + STATE(2942), 1, sym_where_clause, - STATE(2453), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [75882] = 9, + [75899] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5400), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(588), 1, - sym_enum_variant_list, - STATE(2650), 1, - sym_type_parameters, - STATE(3347), 1, + ACTIONS(5523), 1, + anon_sym_SEMI, + STATE(1232), 1, + sym_declaration_list, + STATE(2921), 1, sym_where_clause, - STATE(2454), 2, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [75911] = 9, + [75928] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - STATE(1144), 1, - sym_field_declaration_list, - STATE(2639), 1, - sym_type_parameters, - STATE(3352), 1, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(1237), 1, + sym_declaration_list, + STATE(2638), 1, + sym_trait_bounds, + STATE(3225), 1, sym_where_clause, - STATE(2455), 2, + STATE(2460), 2, sym_line_comment, sym_block_comment, - [75940] = 6, + [75957] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, - ACTIONS(5122), 1, + ACTIONS(5138), 1, anon_sym_for, - STATE(2456), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3512), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75963] = 9, + [75980] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(777), 1, - sym_field_declaration_list, - STATE(2691), 1, - sym_type_parameters, - STATE(3340), 1, + ACTIONS(5525), 1, + anon_sym_SEMI, + STATE(1375), 1, + sym_declaration_list, + STATE(2972), 1, sym_where_clause, - STATE(2457), 2, + STATE(2462), 2, sym_line_comment, sym_block_comment, - [75992] = 9, + [76009] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5515), 1, + ACTIONS(5527), 1, anon_sym_SEMI, - ACTIONS(5517), 1, - anon_sym_EQ, - STATE(3016), 1, - sym_trait_bounds, - STATE(3212), 1, + STATE(528), 1, + sym_declaration_list, + STATE(3131), 1, sym_where_clause, - STATE(2458), 2, - sym_line_comment, - sym_block_comment, - [76021] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2459), 2, + STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76040] = 9, + [76038] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - ACTIONS(5519), 1, - anon_sym_SEMI, - STATE(563), 1, - sym_declaration_list, - STATE(3095), 1, + STATE(671), 1, + sym_enum_variant_list, + STATE(2632), 1, + sym_type_parameters, + STATE(3214), 1, sym_where_clause, - STATE(2460), 2, + STATE(2464), 2, sym_line_comment, sym_block_comment, - [76069] = 9, + [76067] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5521), 1, - anon_sym_SEMI, - STATE(1312), 1, - sym_declaration_list, - STATE(2956), 1, - sym_where_clause, - STATE(2461), 2, + ACTIONS(1017), 1, + anon_sym_DOT_DOT, + STATE(2465), 2, sym_line_comment, sym_block_comment, - [76098] = 5, + ACTIONS(1019), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5523), 1, + ACTIONS(5529), 1, anon_sym_DASH_GT, - STATE(2462), 2, + STATE(2466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 5, + ACTIONS(3670), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76119] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2463), 2, - sym_line_comment, - sym_block_comment, - [76144] = 8, + [76109] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5525), 1, - anon_sym_if, - STATE(3740), 1, - sym_label, - STATE(486), 2, - sym_if_expression, - sym_block, - STATE(2464), 2, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(530), 1, + sym_declaration_list, + STATE(3135), 1, + sym_where_clause, + STATE(2467), 2, sym_line_comment, sym_block_comment, - [76171] = 5, + [76138] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_DOT_DOT, - STATE(2465), 2, + ACTIONS(3692), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5001), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5494), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [76192] = 9, + [76161] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5527), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5533), 1, anon_sym_SEMI, - STATE(1314), 1, + STATE(532), 1, sym_declaration_list, - STATE(2957), 1, + STATE(3141), 1, sym_where_clause, - STATE(2466), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - [76221] = 9, + [76190] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5204), 1, anon_sym_COLON, - STATE(568), 1, - sym_declaration_list, - STATE(2692), 1, + ACTIONS(5535), 1, + anon_sym_SEMI, + ACTIONS(5537), 1, + anon_sym_EQ, + STATE(3061), 1, sym_trait_bounds, - STATE(3256), 1, + STATE(3275), 1, sym_where_clause, - STATE(2467), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [76250] = 5, + [76219] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, + ACTIONS(5408), 1, + anon_sym_RBRACK, + ACTIONS(5033), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3666), 3, + anon_sym_SEMI, + anon_sym_PLUS, anon_sym_DASH_GT, - STATE(2468), 2, + [76242] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5539), 1, + anon_sym_DASH_GT, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 5, + ACTIONS(3646), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76271] = 4, + [76263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2469), 2, + ACTIONS(1025), 1, + anon_sym_DOT_DOT, + STATE(2473), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [76290] = 5, + ACTIONS(1027), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76284] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, - anon_sym_DASH_GT, - STATE(2470), 2, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5541), 1, + anon_sym_SEMI, + STATE(570), 1, + sym_declaration_list, + STATE(3065), 1, + sym_where_clause, + STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76311] = 9, + [76313] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5533), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5543), 1, anon_sym_SEMI, - STATE(1328), 1, + STATE(642), 1, sym_declaration_list, - STATE(2959), 1, + STATE(3142), 1, sym_where_clause, - STATE(2471), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - [76340] = 9, + [76342] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5545), 1, anon_sym_SEMI, - STATE(599), 1, + STATE(572), 1, sym_declaration_list, - STATE(3130), 1, + STATE(3073), 1, sym_where_clause, - STATE(2472), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [76369] = 9, + [76371] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(5547), 1, anon_sym_SEMI, - STATE(1330), 1, + STATE(1377), 1, sym_declaration_list, - STATE(2960), 1, + STATE(2973), 1, sym_where_clause, - STATE(2473), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [76398] = 9, + [76400] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(2474), 2, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5549), 1, + anon_sym_if, + STATE(3721), 1, + sym_label, + STATE(423), 2, + sym_if_expression, + sym_block, + STATE(2478), 2, sym_line_comment, sym_block_comment, [76427] = 9, @@ -178769,215 +179358,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5204), 1, anon_sym_COLON, - STATE(731), 1, + STATE(631), 1, sym_declaration_list, - STATE(2604), 1, + STATE(2700), 1, sym_trait_bounds, - STATE(3343), 1, + STATE(3191), 1, sym_where_clause, - STATE(2475), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [76456] = 4, + [76456] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2476), 2, + ACTIONS(5551), 1, + anon_sym_RPAREN, + ACTIONS(5553), 1, + anon_sym_COLON, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(5557), 1, + anon_sym_COMMA, + STATE(3053), 1, + aux_sym_slice_pattern_repeat1, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(5543), 5, + [76482] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(5559), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76474] = 8, + STATE(693), 1, + sym_block, + STATE(3463), 1, + sym_label, + STATE(2481), 2, + sym_line_comment, + sym_block_comment, + [76508] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5545), 1, + ACTIONS(5561), 1, anon_sym_SEMI, - STATE(706), 1, + STATE(588), 1, sym_block, - STATE(3736), 1, + STATE(3463), 1, sym_label, - STATE(2477), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [76500] = 7, + [76534] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(5563), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_block, + STATE(3463), 1, + sym_label, + STATE(2483), 2, + sym_line_comment, + sym_block_comment, + [76560] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5565), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2478), 2, + anon_sym_where, + [76578] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5567), 1, + anon_sym_STAR_SLASH, + ACTIONS(5569), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5571), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5573), 1, + sym__block_comment_content, + STATE(3377), 1, + sym__block_doc_comment_marker, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [76524] = 6, + [76604] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3886), 1, + ACTIONS(3952), 1, anon_sym_PLUS, - ACTIONS(5015), 2, + ACTIONS(4993), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5551), 2, + ACTIONS(5575), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2479), 2, + STATE(2486), 2, + sym_line_comment, + sym_block_comment, + [76626] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5578), 1, + anon_sym_RPAREN, + ACTIONS(5580), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_parameters_repeat1, + ACTIONS(4634), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [76546] = 6, + [76650] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, + ACTIONS(5584), 1, anon_sym_COLON_COLON, - ACTIONS(5558), 1, + ACTIONS(5586), 1, anon_sym_as, - STATE(2480), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(5554), 3, + ACTIONS(5582), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [76568] = 7, + [76672] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(5562), 1, + ACTIONS(5590), 1, anon_sym_STAR, - STATE(3027), 1, + STATE(3046), 1, sym_use_list, - ACTIONS(5560), 2, + ACTIONS(5588), 2, sym_identifier, sym_super, - STATE(2481), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [76592] = 6, + [76696] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5328), 1, anon_sym_COLON_COLON, - ACTIONS(5568), 1, - anon_sym_as, - STATE(2482), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76614] = 4, + [76720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2483), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 5, + ACTIONS(3382), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76632] = 4, + [76738] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2484), 2, + ACTIONS(5594), 1, + anon_sym_COLON_COLON, + ACTIONS(5596), 1, + anon_sym_as, + STATE(2492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5592), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76760] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(5570), 5, + ACTIONS(5598), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76650] = 4, + [76778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2485), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(5572), 5, + ACTIONS(5600), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76668] = 4, + [76796] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2486), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(5574), 5, + ACTIONS(5602), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76686] = 8, + [76814] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1522), 1, + STATE(1525), 1, sym_block, - STATE(3677), 1, + STATE(3682), 1, sym_label, - STATE(2487), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [76712] = 4, + [76840] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2488), 2, + STATE(2497), 2, sym_line_comment, sym_block_comment, ACTIONS(3566), 5, @@ -178986,1412 +179664,1323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76730] = 8, + [76858] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3688), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [76876] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5604), 1, anon_sym_SEMI, - STATE(550), 1, + STATE(598), 1, sym_block, - STATE(3736), 1, + STATE(3463), 1, sym_label, - STATE(2489), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [76756] = 6, + [76902] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, + ACTIONS(5596), 1, anon_sym_as, - ACTIONS(5578), 1, + ACTIONS(5606), 1, anon_sym_COLON_COLON, - STATE(2490), 2, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, + ACTIONS(5592), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [76778] = 4, + [76924] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2491), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 5, + ACTIONS(3702), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [76796] = 4, + [76942] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2492), 2, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 5, + ACTIONS(3710), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [76814] = 4, + [76960] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 5, + ACTIONS(3718), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [76832] = 8, + [76978] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5580), 1, + ACTIONS(5608), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(603), 1, sym_block, - STATE(3736), 1, + STATE(3463), 1, sym_label, - STATE(2494), 2, - sym_line_comment, - sym_block_comment, - [76858] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2495), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3710), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76876] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2496), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76894] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2497), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5584), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76912] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5586), 1, - sym_identifier, - ACTIONS(5588), 1, - anon_sym_GT, - ACTIONS(5590), 1, - anon_sym_COMMA, - STATE(3051), 1, - sym_lifetime, - STATE(2498), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - [76938] = 8, + [77004] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1433), 1, + STATE(1493), 1, sym_block, - STATE(3677), 1, + STATE(3682), 1, sym_label, - STATE(2499), 2, + STATE(2505), 2, sym_line_comment, sym_block_comment, - [76964] = 4, + [77030] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2500), 2, + STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(5592), 5, + ACTIONS(5610), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76982] = 4, + [77048] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2501), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - ACTIONS(5594), 5, + ACTIONS(5612), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77000] = 6, + [77066] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, - anon_sym_as, ACTIONS(5596), 1, + anon_sym_as, + ACTIONS(5614), 1, anon_sym_COLON_COLON, - STATE(2502), 2, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, + ACTIONS(5592), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [77022] = 8, + [77088] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5598), 1, + ACTIONS(5616), 1, anon_sym_SEMI, - STATE(560), 1, + STATE(607), 1, sym_block, - STATE(3736), 1, + STATE(3463), 1, sym_label, - STATE(2503), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [77048] = 8, + [77114] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4969), 1, - anon_sym_RPAREN, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(5602), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, - STATE(2504), 2, + STATE(2510), 2, sym_line_comment, sym_block_comment, - [77074] = 7, + ACTIONS(5618), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77132] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, + ACTIONS(5031), 1, + anon_sym_RPAREN, + ACTIONS(5620), 1, anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, + ACTIONS(5622), 1, + anon_sym_PIPE, + ACTIONS(5624), 1, anon_sym_COMMA, - STATE(2505), 2, + STATE(2889), 1, + aux_sym_closure_parameters_repeat1, + STATE(2511), 2, sym_line_comment, sym_block_comment, - [77098] = 4, + [77158] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2506), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(5608), 5, + ACTIONS(5626), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77116] = 8, + [77176] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5610), 1, + ACTIONS(5628), 1, anon_sym_move, - STATE(481), 1, + STATE(489), 1, sym_block, - STATE(3740), 1, + STATE(3746), 1, sym_label, - STATE(2507), 2, + STATE(2513), 2, sym_line_comment, sym_block_comment, - [77142] = 4, + [77202] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2508), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 5, + ACTIONS(5630), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [77160] = 8, + [77220] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_SEMI, - ACTIONS(5614), 1, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(5204), 1, anon_sym_COLON, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5618), 1, - anon_sym_EQ, - ACTIONS(5620), 1, - anon_sym_else, - STATE(2509), 2, + STATE(3421), 1, + sym_trait_bounds, + ACTIONS(5632), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2515), 2, sym_line_comment, sym_block_comment, - [77186] = 5, + [77244] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, + ACTIONS(5555), 1, anon_sym_PIPE, - STATE(2510), 2, + ACTIONS(5634), 1, + anon_sym_SEMI, + ACTIONS(5636), 1, + anon_sym_COLON, + ACTIONS(5638), 1, + anon_sym_EQ, + ACTIONS(5640), 1, + anon_sym_else, + STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77206] = 7, + [77270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2511), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [77230] = 8, + ACTIONS(3570), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77288] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PIPE, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5624), 1, - anon_sym_COLON, - ACTIONS(5626), 1, - anon_sym_EQ, - ACTIONS(5628), 1, - anon_sym_else, - STATE(2512), 2, + STATE(2518), 2, sym_line_comment, sym_block_comment, - [77256] = 8, + ACTIONS(5642), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77306] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3064), 1, anon_sym_SQUOTE, - ACTIONS(5630), 1, + ACTIONS(5644), 1, sym_identifier, - ACTIONS(5632), 1, + ACTIONS(5646), 1, anon_sym_GT, - ACTIONS(5634), 1, + ACTIONS(5648), 1, anon_sym_COMMA, - STATE(2863), 1, + STATE(3051), 1, sym_lifetime, - STATE(2513), 2, + STATE(2519), 2, sym_line_comment, sym_block_comment, - [77282] = 8, + [77332] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3064), 1, anon_sym_SQUOTE, - STATE(1450), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2514), 2, + ACTIONS(5650), 1, + sym_identifier, + ACTIONS(5652), 1, + anon_sym_GT, + ACTIONS(5654), 1, + anon_sym_COMMA, + STATE(2863), 1, + sym_lifetime, + STATE(2520), 2, sym_line_comment, sym_block_comment, - [77308] = 8, + [77358] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3434), 1, anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4658), 1, anon_sym_COLON_COLON, - STATE(1154), 1, + STATE(1160), 1, sym_parameters, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2515), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - [77334] = 8, + [77384] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(5021), 1, + anon_sym_PIPE, + ACTIONS(5656), 1, + anon_sym_SEMI, + ACTIONS(5658), 1, anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(2516), 2, + ACTIONS(5660), 1, + anon_sym_EQ, + ACTIONS(5662), 1, + anon_sym_else, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [77360] = 8, + [77410] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, + ACTIONS(5021), 1, anon_sym_PIPE, - ACTIONS(5636), 1, + ACTIONS(5664), 1, anon_sym_SEMI, - ACTIONS(5638), 1, + ACTIONS(5666), 1, anon_sym_COLON, - ACTIONS(5640), 1, + ACTIONS(5668), 1, anon_sym_EQ, - ACTIONS(5642), 1, + ACTIONS(5670), 1, anon_sym_else, - STATE(2517), 2, + STATE(2523), 2, sym_line_comment, sym_block_comment, - [77386] = 8, + [77436] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5644), 1, - anon_sym_SEMI, - STATE(770), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2518), 2, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, + ACTIONS(5346), 1, + anon_sym_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2524), 2, sym_line_comment, sym_block_comment, - [77412] = 8, + [77460] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1914), 1, sym_block, - STATE(3741), 1, + STATE(3747), 1, sym_label, - STATE(2519), 2, + STATE(2525), 2, sym_line_comment, sym_block_comment, - [77438] = 8, + [77486] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(5204), 1, + anon_sym_COLON, + ACTIONS(5470), 1, + anon_sym_GT, + ACTIONS(5472), 1, + anon_sym_COMMA, + STATE(3047), 1, + sym_trait_bounds, + STATE(3048), 1, + aux_sym_type_arguments_repeat1, + STATE(2526), 2, + sym_line_comment, + sym_block_comment, + [77512] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5204), 1, anon_sym_COLON, - ACTIONS(5416), 1, + ACTIONS(5499), 1, anon_sym_GT, - ACTIONS(5418), 1, + ACTIONS(5501), 1, anon_sym_COMMA, - STATE(2898), 1, + STATE(2896), 1, sym_trait_bounds, - STATE(2899), 1, + STATE(2897), 1, aux_sym_type_arguments_repeat1, - STATE(2520), 2, + STATE(2527), 2, sym_line_comment, sym_block_comment, - [77464] = 7, + [77538] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, + ACTIONS(5672), 1, anon_sym_RPAREN, - ACTIONS(5648), 1, + ACTIONS(5674), 1, anon_sym_COMMA, - STATE(2906), 1, + STATE(2903), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2521), 2, + STATE(2528), 2, sym_line_comment, sym_block_comment, - [77488] = 8, + [77562] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5650), 1, + ACTIONS(5676), 1, anon_sym_SEMI, - STATE(1203), 1, + STATE(1209), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2522), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - [77514] = 8, + [77588] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1747), 1, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(5678), 1, + anon_sym_SEMI, + STATE(537), 1, sym_block, - STATE(3741), 1, + STATE(3463), 1, sym_label, - STATE(2523), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - [77540] = 7, + [77614] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2524), 2, - sym_line_comment, - sym_block_comment, - [77564] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2525), 2, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1776), 1, + sym_block, + STATE(3747), 1, + sym_label, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77582] = 7, + [77640] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, + ACTIONS(1367), 1, anon_sym_RPAREN, - ACTIONS(5654), 1, + ACTIONS(5680), 1, anon_sym_COMMA, - STATE(2935), 1, + STATE(2934), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2526), 2, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [77606] = 8, + [77664] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, + ACTIONS(5682), 1, anon_sym_SEMI, - STATE(1250), 1, + STATE(1256), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2527), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - [77632] = 8, + [77690] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5658), 1, + STATE(2534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3578), 5, anon_sym_SEMI, - STATE(498), 1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77708] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1892), 1, sym_block, - STATE(3736), 1, + STATE(3747), 1, sym_label, - STATE(2528), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - [77658] = 8, + [77734] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(3164), 1, + sym_trait_bounds, + ACTIONS(5684), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2536), 2, + sym_line_comment, + sym_block_comment, + [77758] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1886), 1, + ACTIONS(5150), 1, + anon_sym_LBRACE, + ACTIONS(5686), 1, + anon_sym_SEMI, + STATE(1288), 1, sym_block, - STATE(3741), 1, + STATE(3745), 1, sym_label, - STATE(2529), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [77684] = 8, + [77784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2468), 1, - sym_parameters, - STATE(2530), 2, + ACTIONS(4634), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [77710] = 8, + ACTIONS(3512), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [77804] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5660), 1, + ACTIONS(5688), 1, anon_sym_SEMI, - STATE(1284), 1, + STATE(551), 1, sym_block, - STATE(3739), 1, + STATE(3463), 1, sym_label, - STATE(2531), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [77736] = 8, + [77830] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5662), 1, + ACTIONS(5690), 1, anon_sym_SEMI, - STATE(540), 1, + STATE(1310), 1, sym_block, - STATE(3736), 1, + STATE(3745), 1, sym_label, - STATE(2532), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - [77762] = 8, + [77856] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5664), 1, + ACTIONS(5692), 1, anon_sym_SEMI, - STATE(1337), 1, + STATE(1341), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2533), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [77788] = 8, + [77882] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5666), 1, + ACTIONS(5694), 1, anon_sym_SEMI, - STATE(1351), 1, + STATE(1355), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2534), 2, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [77814] = 8, + [77908] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5668), 1, + ACTIONS(5696), 1, anon_sym_SEMI, - STATE(1356), 1, + STATE(1360), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2535), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [77840] = 8, + [77934] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5670), 1, + ACTIONS(5698), 1, anon_sym_SEMI, - STATE(1381), 1, + STATE(1385), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2536), 2, + STATE(2544), 2, sym_line_comment, sym_block_comment, - [77866] = 8, + [77960] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5672), 1, + ACTIONS(5700), 1, anon_sym_SEMI, - STATE(1389), 1, + STATE(1393), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2537), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [77892] = 8, + [77986] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5674), 1, + ACTIONS(5702), 1, anon_sym_SEMI, - STATE(1399), 1, + STATE(1403), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2538), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [77918] = 8, + [78012] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5676), 1, + ACTIONS(5704), 1, anon_sym_SEMI, - STATE(1404), 1, + STATE(1408), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2539), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [77944] = 8, + [78038] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(5678), 1, + ACTIONS(5706), 1, anon_sym_SEMI, - STATE(1408), 1, + STATE(1412), 1, sym_block, - STATE(3739), 1, + STATE(3745), 1, sym_label, - STATE(2540), 2, + STATE(2548), 2, sym_line_comment, sym_block_comment, - [77970] = 8, + [78064] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5680), 1, + ACTIONS(5708), 1, anon_sym_move, STATE(1778), 1, sym_block, - STATE(3741), 1, + STATE(3747), 1, sym_label, - STATE(2541), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - [77996] = 8, + [78090] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3064), 1, anon_sym_SQUOTE, - ACTIONS(5682), 1, + ACTIONS(5710), 1, sym_identifier, - ACTIONS(5684), 1, + ACTIONS(5712), 1, anon_sym_GT, - ACTIONS(5686), 1, + ACTIONS(5714), 1, anon_sym_COMMA, STATE(2997), 1, sym_lifetime, - STATE(2542), 2, + STATE(2550), 2, sym_line_comment, sym_block_comment, - [78022] = 8, + [78116] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, + ACTIONS(4163), 1, anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4658), 1, anon_sym_COLON_COLON, - STATE(1697), 1, + STATE(1688), 1, sym_parameters, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2543), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [78048] = 8, + [78142] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + STATE(2015), 1, + sym_type_arguments, + STATE(2384), 1, + sym_parameters, + STATE(2552), 2, + sym_line_comment, + sym_block_comment, + [78168] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5204), 1, anon_sym_COLON, - ACTIONS(5509), 1, + ACTIONS(5436), 1, anon_sym_GT, - ACTIONS(5511), 1, + ACTIONS(5438), 1, anon_sym_COMMA, STATE(3002), 1, sym_trait_bounds, STATE(3003), 1, aux_sym_type_arguments_repeat1, - STATE(2544), 2, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [78074] = 7, + [78194] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, + ACTIONS(5716), 1, anon_sym_RPAREN, - ACTIONS(5690), 1, + ACTIONS(5718), 1, anon_sym_COMMA, - STATE(3005), 1, + STATE(3004), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2545), 2, - sym_line_comment, - sym_block_comment, - [78098] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5692), 1, - anon_sym_STAR_SLASH, - ACTIONS(5694), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5696), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5698), 1, - sym__block_comment_content, - STATE(3369), 1, - sym__block_doc_comment_marker, - STATE(2546), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - [78124] = 7, + [78218] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + ACTIONS(1363), 1, anon_sym_RPAREN, - ACTIONS(5700), 1, + ACTIONS(5720), 1, anon_sym_COMMA, - STATE(2846), 1, + STATE(3011), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2547), 2, - sym_line_comment, - sym_block_comment, - [78148] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5704), 1, - anon_sym_COLON, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, - STATE(2548), 2, + STATE(2555), 2, sym_line_comment, sym_block_comment, - [78174] = 8, + [78242] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(5204), 1, anon_sym_COLON, - ACTIONS(5396), 1, + ACTIONS(5488), 1, anon_sym_GT, - ACTIONS(5398), 1, + ACTIONS(5490), 1, anon_sym_COMMA, - STATE(3024), 1, + STATE(3028), 1, sym_trait_bounds, - STATE(3025), 1, + STATE(3029), 1, aux_sym_type_arguments_repeat1, - STATE(2549), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [78200] = 8, + [78268] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5708), 1, + ACTIONS(5722), 1, anon_sym_SEMI, - STATE(504), 1, + STATE(554), 1, sym_block, - STATE(3736), 1, + STATE(3463), 1, sym_label, - STATE(2550), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [78226] = 7, + [78294] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(5712), 1, + ACTIONS(5726), 1, anon_sym_STAR, - STATE(2854), 1, + STATE(2859), 1, sym_use_list, - ACTIONS(5710), 2, + ACTIONS(5724), 2, sym_identifier, sym_super, - STATE(2551), 2, + STATE(2558), 2, sym_line_comment, sym_block_comment, - [78250] = 7, + [78318] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(4272), 1, anon_sym_LBRACE, - ACTIONS(5314), 1, + ACTIONS(5296), 1, anon_sym_STAR, - STATE(2861), 1, + STATE(2866), 1, sym_use_list, - ACTIONS(5312), 2, + ACTIONS(5294), 2, sym_identifier, sym_super, - STATE(2552), 2, + STATE(2559), 2, sym_line_comment, sym_block_comment, - [78274] = 4, + [78342] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2553), 2, + ACTIONS(4993), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(5714), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3952), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_where, - [78292] = 8, + [78362] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3062), 1, anon_sym_POUND, - ACTIONS(5716), 1, + ACTIONS(5728), 1, sym_identifier, - ACTIONS(5718), 1, + ACTIONS(5730), 1, sym_integer_literal, - STATE(1079), 1, + STATE(1082), 1, aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1121), 1, sym_attribute_item, - STATE(2554), 2, + STATE(2561), 2, sym_line_comment, sym_block_comment, - [78318] = 5, + [78388] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2555), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3886), 3, + ACTIONS(1365), 1, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78338] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2556), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5720), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5732), 1, anon_sym_COMMA, - anon_sym_where, - [78356] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2557), 2, + STATE(3034), 1, + aux_sym_parameters_repeat1, + ACTIONS(4634), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(5722), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78374] = 7, + [78412] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(5204), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2558), 2, + STATE(3085), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3421), 1, + sym_trait_bounds, + ACTIONS(5632), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [78398] = 8, + [78436] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5555), 1, anon_sym_PIPE, - ACTIONS(5726), 1, + ACTIONS(5734), 1, anon_sym_SEMI, - ACTIONS(5728), 1, + ACTIONS(5736), 1, anon_sym_COLON, - ACTIONS(5730), 1, + ACTIONS(5738), 1, anon_sym_EQ, - ACTIONS(5732), 1, + ACTIONS(5740), 1, anon_sym_else, - STATE(2559), 2, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [78424] = 7, + [78462] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2560), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [78448] = 5, + ACTIONS(5742), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78480] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, + ACTIONS(3950), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2561), 2, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, + ACTIONS(4833), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [78468] = 4, + [78500] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2562), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(5734), 5, + ACTIONS(5744), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78486] = 5, + [78518] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2563), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78506] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(5746), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3099), 1, - sym_trait_bounds, - ACTIONS(4778), 2, - anon_sym_GT, anon_sym_COMMA, - STATE(2564), 2, - sym_line_comment, - sym_block_comment, - [78530] = 4, + anon_sym_SQUOTE, + [78536] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2565), 2, + STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(5736), 5, + ACTIONS(5748), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - [78548] = 4, + [78554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2566), 2, + ACTIONS(3806), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2570), 2, sym_line_comment, sym_block_comment, - ACTIONS(5738), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78566] = 4, + ACTIONS(4833), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78574] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5740), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4797), 1, anon_sym_EQ, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(3089), 1, + sym_trait_bounds, + ACTIONS(4799), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - [78584] = 8, + STATE(2571), 2, + sym_line_comment, + sym_block_comment, + [78598] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5750), 1, anon_sym_SEMI, - STATE(603), 1, + STATE(755), 1, sym_block, - STATE(3736), 1, + STATE(3463), 1, sym_label, - STATE(2568), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - [78610] = 8, + [78624] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5744), 1, + STATE(2573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5752), 5, anon_sym_SEMI, - STATE(659), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2569), 2, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78642] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2574), 2, sym_line_comment, sym_block_comment, - [78636] = 7, + ACTIONS(5754), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78660] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, + ACTIONS(5756), 1, anon_sym_RPAREN, - ACTIONS(5749), 1, + ACTIONS(5759), 1, anon_sym_COMMA, - STATE(3079), 1, + STATE(3075), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2570), 2, + STATE(2575), 2, sym_line_comment, sym_block_comment, - [78660] = 6, + [78684] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, + ACTIONS(3512), 1, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5752), 2, + ACTIONS(5762), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2571), 2, - sym_line_comment, - sym_block_comment, - [78682] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2572), 2, + STATE(2576), 2, sym_line_comment, sym_block_comment, [78706] = 8, @@ -180399,2904 +180988,2831 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1466), 1, + sym_block, + STATE(3682), 1, + sym_label, + STATE(2577), 2, + sym_line_comment, + sym_block_comment, + [78732] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4658), 1, anon_sym_COLON_COLON, - ACTIONS(4774), 1, + ACTIONS(4795), 1, anon_sym_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, - STATE(2567), 1, + STATE(2569), 1, sym_trait_bounds, - STATE(2573), 2, + STATE(2578), 2, sym_line_comment, sym_block_comment, - [78732] = 8, + [78758] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5755), 1, - anon_sym_move, - STATE(1452), 1, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(5765), 1, + anon_sym_SEMI, + STATE(651), 1, sym_block, - STATE(3677), 1, + STATE(3463), 1, sym_label, - STATE(2574), 2, + STATE(2579), 2, sym_line_comment, sym_block_comment, - [78758] = 6, + [78784] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, + ACTIONS(5762), 1, anon_sym_RBRACK, - ACTIONS(3518), 2, + ACTIONS(3512), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2575), 2, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [78780] = 4, + [78806] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2576), 2, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 5, + ACTIONS(3562), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [78798] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5502), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78816] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5757), 1, - anon_sym_SEMI, - STATE(531), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2578), 2, - sym_line_comment, - sym_block_comment, - [78842] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5759), 1, - anon_sym_EQ, - STATE(3150), 1, - sym_type_parameters, - STATE(3718), 1, - sym_where_clause, - STATE(2579), 2, - sym_line_comment, - sym_block_comment, - [78868] = 8, + [78824] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5057), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5761), 1, + ACTIONS(5767), 1, anon_sym_EQ, - STATE(2934), 1, + STATE(3147), 1, sym_type_parameters, - STATE(3526), 1, + STATE(3723), 1, sym_where_clause, - STATE(2580), 2, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [78894] = 6, + [78850] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, + ACTIONS(5575), 1, anon_sym_RBRACK, - ACTIONS(3886), 2, + ACTIONS(3952), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(5015), 2, + ACTIONS(4993), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2581), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [78916] = 8, + [78872] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(5763), 1, - anon_sym_SEMI, - STATE(596), 1, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5769), 1, + anon_sym_move, + STATE(1543), 1, sym_block, - STATE(3736), 1, + STATE(3682), 1, sym_label, - STATE(2582), 2, - sym_line_comment, - sym_block_comment, - [78942] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2081), 1, - sym_parameters, - STATE(2583), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [78968] = 8, + [78898] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5765), 1, + ACTIONS(5771), 1, anon_sym_SEMI, - STATE(1306), 1, + STATE(580), 1, sym_block, - STATE(3739), 1, - sym_label, - STATE(2584), 2, - sym_line_comment, - sym_block_comment, - [78994] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, + STATE(3463), 1, sym_label, - STATE(3717), 1, - sym_block, STATE(2585), 2, sym_line_comment, sym_block_comment, - [79017] = 7, + [78924] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(4869), 1, - anon_sym_for, - ACTIONS(5767), 1, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4658), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, + STATE(2085), 1, + sym_parameters, STATE(2586), 2, sym_line_comment, sym_block_comment, - [79040] = 4, + [78950] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5057), 1, + anon_sym_LT, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5773), 1, + anon_sym_EQ, + STATE(2954), 1, + sym_type_parameters, + STATE(3549), 1, + sym_where_clause, STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4414), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [79057] = 5, - ACTIONS(3), 1, + [78976] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5769), 1, - aux_sym_token_repetition_pattern_token1, STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(5771), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79076] = 7, + ACTIONS(5427), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78994] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5773), 1, - sym_identifier, ACTIONS(5775), 1, + sym_identifier, + ACTIONS(5777), 1, sym_super, - STATE(2099), 1, + STATE(2110), 1, sym_type_arguments, STATE(2589), 2, sym_line_comment, sym_block_comment, - [79099] = 5, + [79017] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, - anon_sym_COMMA, - ACTIONS(4308), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2590), 3, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(3740), 1, + sym_type_arguments, + ACTIONS(5777), 2, + sym_identifier, + sym_super, + STATE(2590), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79118] = 7, + [79038] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5780), 1, - anon_sym_RPAREN, - ACTIONS(5782), 1, - anon_sym_COMMA, - STATE(2971), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3682), 1, + sym_label, + STATE(3764), 1, + sym_block, STATE(2591), 2, sym_line_comment, sym_block_comment, - [79141] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(400), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(3472), 1, + sym_type_arguments, + ACTIONS(5777), 2, + sym_identifier, + sym_super, STATE(2592), 2, sym_line_comment, sym_block_comment, - [79164] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79082] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(399), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_declaration_list, + STATE(3205), 1, + sym_where_clause, STATE(2593), 2, sym_line_comment, sym_block_comment, - [79187] = 5, - ACTIONS(3), 1, + [79105] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5784), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + ACTIONS(5781), 1, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(5786), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79206] = 7, + [79128] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1183), 1, + sym_field_declaration_list, + STATE(3236), 1, + sym_where_clause, STATE(2595), 2, sym_line_comment, sym_block_comment, - [79229] = 7, + [79151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5788), 1, - anon_sym_RPAREN, - ACTIONS(5790), 1, - anon_sym_COMMA, - STATE(3114), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5783), 1, + anon_sym_COLON, STATE(2596), 2, sym_line_comment, sym_block_comment, - [79252] = 6, + ACTIONS(5021), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [79170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5792), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5785), 1, + sym_identifier, STATE(2597), 2, sym_line_comment, sym_block_comment, - [79273] = 7, + ACTIONS(5787), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [79189] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1457), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2598), 2, sym_line_comment, sym_block_comment, - [79296] = 7, - ACTIONS(103), 1, + [79210] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1464), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5789), 1, + aux_sym_token_repetition_pattern_token1, STATE(2599), 2, sym_line_comment, sym_block_comment, - [79319] = 6, + ACTIONS(5791), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79229] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5796), 1, - anon_sym_DQUOTE, - STATE(2619), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1443), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2600), 2, sym_line_comment, sym_block_comment, - [79340] = 7, + [79252] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, + ACTIONS(5059), 1, + anon_sym_where, + STATE(728), 1, + sym_declaration_list, + STATE(3309), 1, + sym_where_clause, STATE(2601), 2, sym_line_comment, sym_block_comment, - [79363] = 7, + [79275] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(476), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5793), 1, + anon_sym_EQ, + ACTIONS(5795), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2602), 2, sym_line_comment, sym_block_comment, - [79386] = 7, + [79296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1453), 1, + STATE(3500), 1, sym_block, - STATE(3677), 1, + STATE(3682), 1, sym_label, STATE(2603), 2, sym_line_comment, sym_block_comment, - [79409] = 7, + [79319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(500), 1, - sym_declaration_list, - STATE(3456), 1, - sym_where_clause, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(3740), 1, + sym_type_arguments, + ACTIONS(5797), 2, + sym_identifier, + sym_super, STATE(2604), 2, sym_line_comment, sym_block_comment, - [79432] = 6, + [79340] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(5798), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(3472), 1, + sym_type_arguments, + ACTIONS(5797), 2, + sym_identifier, + sym_super, STATE(2605), 2, sym_line_comment, sym_block_comment, - [79453] = 7, + [79361] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_SEMI, - STATE(3603), 1, - sym_where_clause, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + STATE(2293), 1, + sym_parameters, + STATE(3237), 1, + sym_type_parameters, STATE(2606), 2, sym_line_comment, sym_block_comment, - [79476] = 7, + [79384] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_delim_token_tree, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(5799), 1, + anon_sym_RPAREN, + ACTIONS(5801), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_slice_pattern_repeat1, STATE(2607), 2, sym_line_comment, sym_block_comment, - [79499] = 7, + [79407] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, - STATE(1488), 1, - sym_type_arguments, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(5803), 1, + anon_sym_RPAREN, + ACTIONS(5805), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_slice_pattern_repeat1, STATE(2608), 2, sym_line_comment, sym_block_comment, - [79522] = 7, + [79430] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(5013), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5807), 1, + anon_sym_SEMI, + STATE(3536), 1, + sym_where_clause, STATE(2609), 2, sym_line_comment, sym_block_comment, - [79545] = 6, + [79453] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5672), 1, + anon_sym_RPAREN, + ACTIONS(5674), 1, + anon_sym_COMMA, + STATE(2903), 1, + aux_sym_parameters_repeat1, STATE(2610), 2, sym_line_comment, sym_block_comment, - [79566] = 7, + [79476] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1486), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4859), 1, + anon_sym_for, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + STATE(2015), 1, + sym_type_arguments, STATE(2611), 2, sym_line_comment, sym_block_comment, - [79589] = 7, + [79499] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - STATE(1487), 1, - sym_delim_token_tree, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + ACTIONS(5809), 1, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, STATE(2612), 2, sym_line_comment, sym_block_comment, - [79612] = 7, + [79522] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1489), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5811), 1, + anon_sym_SEMI, + ACTIONS(5813), 1, + anon_sym_EQ, + ACTIONS(5815), 1, + anon_sym_else, STATE(2613), 2, sym_line_comment, sym_block_comment, - [79635] = 7, + [79545] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1134), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5817), 1, + anon_sym_SEMI, + STATE(3765), 1, + sym_where_clause, STATE(2614), 2, sym_line_comment, sym_block_comment, - [79658] = 7, + [79568] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5810), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1225), 1, + sym_declaration_list, + STATE(3209), 1, + sym_where_clause, STATE(2615), 2, sym_line_comment, sym_block_comment, - [79681] = 6, + [79591] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5819), 1, + anon_sym_SEMI, + STATE(3480), 1, + sym_where_clause, STATE(2616), 2, sym_line_comment, sym_block_comment, - [79702] = 4, + [79614] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1236), 1, + sym_declaration_list, + STATE(3221), 1, + sym_where_clause, STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(5812), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [79719] = 7, + [79637] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1496), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5551), 1, + anon_sym_RPAREN, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(5557), 1, + anon_sym_COMMA, + STATE(3053), 1, + aux_sym_slice_pattern_repeat1, STATE(2618), 2, sym_line_comment, sym_block_comment, - [79742] = 6, + [79660] = 7, ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5814), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5423), 1, + anon_sym_LBRACE, + STATE(1241), 1, + sym_enum_variant_list, + STATE(3242), 1, + sym_where_clause, STATE(2619), 2, sym_line_comment, sym_block_comment, - [79763] = 7, + [79683] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(1497), 1, - sym_delim_token_tree, + STATE(1247), 1, + sym_field_declaration_list, + STATE(3250), 1, + sym_where_clause, STATE(2620), 2, sym_line_comment, sym_block_comment, - [79786] = 7, + [79706] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, - STATE(1616), 1, - sym_type_arguments, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1540), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2621), 2, sym_line_comment, sym_block_comment, - [79809] = 7, + [79729] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5818), 1, - anon_sym_SEMI, - STATE(3606), 1, - sym_where_clause, + ACTIONS(5620), 1, + anon_sym_COLON, + ACTIONS(5622), 1, + anon_sym_PIPE, + ACTIONS(5624), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_closure_parameters_repeat1, STATE(2622), 2, sym_line_comment, sym_block_comment, - [79832] = 7, + [79752] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5312), 1, + ACTIONS(5777), 1, sym_super, - ACTIONS(5816), 1, + ACTIONS(5821), 1, sym_identifier, - STATE(1609), 1, + STATE(3740), 1, sym_type_arguments, STATE(2623), 2, sym_line_comment, sym_block_comment, - [79855] = 7, + [79775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5820), 1, - anon_sym_RPAREN, - ACTIONS(5822), 1, - anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3160), 1, + anon_sym_PLUS, STATE(2624), 2, sym_line_comment, sym_block_comment, - [79878] = 7, + ACTIONS(5823), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [79794] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5824), 1, - anon_sym_RBRACK, - ACTIONS(5826), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5825), 1, + anon_sym_SEMI, + STATE(3777), 1, + sym_where_clause, STATE(2625), 2, sym_line_comment, sym_block_comment, - [79901] = 7, + [79817] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5827), 1, + anon_sym_SEMI, + STATE(3585), 1, + sym_where_clause, STATE(2626), 2, sym_line_comment, sym_block_comment, - [79924] = 7, + [79840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2627), 2, + ACTIONS(5829), 1, + anon_sym_COMMA, + ACTIONS(4330), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2627), 3, sym_line_comment, sym_block_comment, - [79947] = 7, + aux_sym_arguments_repeat1, + [79859] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5830), 1, + ACTIONS(1367), 1, anon_sym_RPAREN, - ACTIONS(5832), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5680), 1, anon_sym_COMMA, - STATE(2855), 1, - aux_sym_tuple_type_repeat1, + STATE(2934), 1, + aux_sym_parameters_repeat1, STATE(2628), 2, sym_line_comment, sym_block_comment, - [79970] = 7, + [79882] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, ACTIONS(5834), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2629), 2, sym_line_comment, sym_block_comment, - [79993] = 6, + [79905] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5836), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2630), 2, sym_line_comment, sym_block_comment, - [80014] = 7, - ACTIONS(103), 1, + [79928] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(5838), 1, + aux_sym_token_repetition_pattern_token1, STATE(2631), 2, sym_line_comment, sym_block_comment, - [80037] = 7, + ACTIONS(5840), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79947] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1155), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(613), 1, + sym_enum_variant_list, + STATE(3427), 1, + sym_where_clause, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80060] = 7, + [79970] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(5842), 1, + anon_sym_RPAREN, + ACTIONS(5844), 1, + anon_sym_COMMA, + STATE(2969), 1, + aux_sym_tuple_pattern_repeat1, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80083] = 7, + [79993] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3609), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5846), 1, + anon_sym_SEMI, + ACTIONS(5848), 1, + anon_sym_EQ, + ACTIONS(5850), 1, + anon_sym_else, STATE(2634), 2, sym_line_comment, sym_block_comment, - [80106] = 7, + [80016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1158), 1, - sym_enum_variant_list, - STATE(3214), 1, - sym_where_clause, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5852), 1, + anon_sym_RPAREN, + ACTIONS(5854), 1, + anon_sym_COMMA, + STATE(3081), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2635), 2, sym_line_comment, sym_block_comment, - [80129] = 7, + [80039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5856), 1, + anon_sym_SEMI, + STATE(3495), 1, + sym_where_clause, STATE(2636), 2, sym_line_comment, sym_block_comment, - [80152] = 7, + [80062] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1171), 1, - sym_declaration_list, - STATE(3457), 1, + ACTIONS(5858), 1, + anon_sym_SEMI, + STATE(3496), 1, sym_where_clause, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80175] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(398), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1283), 1, + sym_declaration_list, + STATE(3345), 1, + sym_where_clause, STATE(2638), 2, sym_line_comment, sym_block_comment, - [80198] = 7, + [80108] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1177), 1, - sym_field_declaration_list, - STATE(3186), 1, - sym_where_clause, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(405), 1, + sym_block, + STATE(3721), 1, + sym_label, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80221] = 7, + [80131] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(3164), 1, + sym_trait_bounds, + ACTIONS(5684), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80244] = 7, + [80152] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1451), 1, - sym_block, - STATE(3677), 1, - sym_label, STATE(2641), 2, sym_line_comment, sym_block_comment, - [80267] = 7, + ACTIONS(977), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [80169] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5860), 1, + anon_sym_SEMI, + STATE(3523), 1, + sym_where_clause, STATE(2642), 2, sym_line_comment, sym_block_comment, - [80290] = 7, + [80192] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(567), 1, + STATE(1297), 1, sym_declaration_list, - STATE(3166), 1, + STATE(3352), 1, sym_where_clause, STATE(2643), 2, sym_line_comment, sym_block_comment, - [80313] = 7, + [80215] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5773), 1, - sym_identifier, - ACTIONS(5775), 1, - sym_super, - STATE(2102), 1, - sym_type_arguments, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_enum_variant_list, + STATE(3446), 1, + sym_where_clause, STATE(2644), 2, sym_line_comment, sym_block_comment, - [80336] = 6, + [80238] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, - sym_super, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + STATE(546), 1, + sym_declaration_list, + STATE(3178), 1, + sym_where_clause, STATE(2645), 2, sym_line_comment, sym_block_comment, - [80357] = 6, - ACTIONS(103), 1, + [80261] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, - sym_super, + ACTIONS(5862), 1, + aux_sym_token_repetition_pattern_token1, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80378] = 7, + ACTIONS(5864), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80280] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(5602), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5866), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, + anon_sym_LBRACK, + ACTIONS(5870), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_delim_token_tree, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80401] = 7, + [80303] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_RPAREN, - ACTIONS(5844), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5872), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80424] = 7, + [80326] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_RPAREN, - ACTIONS(5848), 1, - anon_sym_COMMA, - STATE(2902), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5874), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2649), 2, sym_line_comment, sym_block_comment, - [80447] = 7, + [80349] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(701), 1, - sym_enum_variant_list, - STATE(3426), 1, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(3541), 1, sym_where_clause, STATE(2650), 2, sym_line_comment, sym_block_comment, - [80470] = 7, - ACTIONS(103), 1, + [80372] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, + ACTIONS(5878), 1, + aux_sym_token_repetition_pattern_token1, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80493] = 5, + ACTIONS(5880), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3164), 1, anon_sym_PLUS, STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(5850), 3, - anon_sym_COLON, - anon_sym_GT, + ACTIONS(5882), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - [80512] = 7, + [80410] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5852), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5884), 1, anon_sym_SEMI, - ACTIONS(5854), 1, - anon_sym_EQ, - ACTIONS(5856), 1, - anon_sym_else, + STATE(3584), 1, + sym_where_clause, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80535] = 7, + [80433] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3519), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5059), 1, + anon_sym_where, + STATE(630), 1, + sym_declaration_list, + STATE(3184), 1, + sym_where_clause, STATE(2654), 2, sym_line_comment, sym_block_comment, - [80558] = 7, + [80456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1219), 1, - sym_declaration_list, - STATE(3197), 1, - sym_where_clause, STATE(2655), 2, sym_line_comment, sym_block_comment, - [80581] = 7, + ACTIONS(973), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [80473] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5858), 1, - anon_sym_SEMI, - STATE(3699), 1, - sym_where_clause, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(410), 1, + sym_block, + STATE(3721), 1, + sym_label, STATE(2656), 2, sym_line_comment, sym_block_comment, - [80604] = 7, + [80496] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1230), 1, - sym_declaration_list, - STATE(3202), 1, + ACTIONS(5886), 1, + anon_sym_SEMI, + STATE(3625), 1, sym_where_clause, STATE(2657), 2, sym_line_comment, sym_block_comment, - [80627] = 6, + [80519] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5888), 1, + anon_sym_SEMI, + STATE(3628), 1, + sym_where_clause, STATE(2658), 2, sym_line_comment, sym_block_comment, - [80648] = 7, + [80542] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(1235), 1, - sym_enum_variant_list, - STATE(3218), 1, + STATE(1350), 1, + sym_declaration_list, + STATE(3393), 1, sym_where_clause, STATE(2659), 2, sym_line_comment, sym_block_comment, - [80671] = 7, + [80565] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5860), 1, - anon_sym_SEMI, - STATE(3745), 1, - sym_where_clause, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1492), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2660), 2, sym_line_comment, sym_block_comment, - [80694] = 7, + [80588] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - STATE(1241), 1, + STATE(740), 1, sym_field_declaration_list, - STATE(3229), 1, + STATE(3243), 1, sym_where_clause, STATE(2661), 2, sym_line_comment, sym_block_comment, - [80717] = 7, + [80611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5862), 1, - anon_sym_SEMI, - STATE(3747), 1, - sym_where_clause, + ACTIONS(5890), 1, + anon_sym_COLON_COLON, STATE(2662), 2, sym_line_comment, sym_block_comment, - [80740] = 7, + ACTIONS(4861), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80630] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1499), 1, + STATE(1496), 1, sym_block, - STATE(3677), 1, + STATE(3682), 1, sym_label, STATE(2663), 2, sym_line_comment, sym_block_comment, - [80763] = 7, + [80653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_enum_variant_list, - STATE(3399), 1, - sym_where_clause, + anon_sym_SLASH_STAR, + ACTIONS(5892), 1, + anon_sym_COLON_COLON, STATE(2664), 2, sym_line_comment, sym_block_comment, - [80786] = 7, + ACTIONS(4867), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80672] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_declaration_list, - STATE(3449), 1, - sym_where_clause, + ACTIONS(5894), 1, + anon_sym_COLON_COLON, STATE(2665), 2, sym_line_comment, sym_block_comment, - [80809] = 7, + ACTIONS(4867), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80691] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, + ACTIONS(5896), 1, + anon_sym_COLON_COLON, STATE(2666), 2, sym_line_comment, sym_block_comment, - [80832] = 7, + ACTIONS(4867), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80710] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5866), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(5898), 1, + anon_sym_DQUOTE, + STATE(2803), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2667), 2, sym_line_comment, sym_block_comment, - [80855] = 7, + [80731] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5868), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5902), 1, + anon_sym_SEMI, + STATE(3687), 1, + sym_where_clause, STATE(2668), 2, sym_line_comment, sym_block_comment, - [80878] = 5, + [80754] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(417), 1, + sym_block, + STATE(3721), 1, + sym_label, STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(5870), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80897] = 7, + [80777] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5872), 1, - anon_sym_SEMI, - ACTIONS(5874), 1, - anon_sym_EQ, - ACTIONS(5876), 1, - anon_sym_else, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(2110), 1, + sym_type_arguments, STATE(2670), 2, sym_line_comment, sym_block_comment, - [80920] = 7, + [80800] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5878), 1, - anon_sym_SEMI, - STATE(3724), 1, - sym_where_clause, + ACTIONS(1607), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(2183), 1, + sym_block, + STATE(3738), 1, + sym_label, STATE(2671), 2, sym_line_comment, sym_block_comment, - [80943] = 7, + [80823] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5880), 1, - anon_sym_SEMI, - STATE(3752), 1, - sym_where_clause, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(488), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2672), 2, sym_line_comment, sym_block_comment, - [80966] = 7, + [80846] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(5882), 1, + ACTIONS(5906), 1, anon_sym_SEMI, - STATE(3761), 1, + STATE(3601), 1, sym_where_clause, STATE(2673), 2, sym_line_comment, sym_block_comment, - [80989] = 7, + [80869] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1279), 1, - sym_declaration_list, - STATE(3314), 1, - sym_where_clause, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + STATE(2267), 1, + sym_parameters, + STATE(3232), 1, + sym_type_parameters, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81012] = 7, + [80892] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5884), 1, - anon_sym_SEMI, - STATE(3487), 1, - sym_where_clause, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(491), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2675), 2, sym_line_comment, sym_block_comment, - [81035] = 7, + [80915] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(1293), 1, - sym_declaration_list, - STATE(3327), 1, - sym_where_clause, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(494), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81058] = 5, - ACTIONS(3), 1, + [80938] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5886), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5908), 1, + anon_sym_DQUOTE, + STATE(2690), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(5888), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81077] = 7, + [80959] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_declaration_list, - STATE(3313), 1, - sym_where_clause, + ACTIONS(5910), 1, + anon_sym_DQUOTE, + STATE(2767), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81100] = 4, + [80980] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + ACTIONS(5150), 1, + anon_sym_LBRACE, + STATE(2910), 1, + sym_block, + STATE(3745), 1, + sym_label, STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81117] = 7, + [81003] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5890), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(1781), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81140] = 7, + [81026] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5892), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(4169), 1, + anon_sym_LT2, + ACTIONS(4332), 1, + anon_sym_COLON_COLON, + ACTIONS(4995), 1, + anon_sym_BANG, + STATE(1690), 1, + sym_type_arguments, STATE(2681), 2, sym_line_comment, sym_block_comment, - [81163] = 5, + [81049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, + ACTIONS(3160), 1, + anon_sym_PLUS, STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81182] = 7, + ACTIONS(5912), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [81068] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5896), 1, - anon_sym_SEMI, - STATE(3545), 1, - sym_where_clause, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(473), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81205] = 5, + [81091] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + STATE(634), 1, + sym_declaration_list, + STATE(3409), 1, + sym_where_clause, STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81224] = 5, + [81114] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(5914), 1, + anon_sym_LPAREN, + ACTIONS(5916), 1, + anon_sym_LBRACK, + ACTIONS(5918), 1, + anon_sym_LBRACE, + STATE(2027), 1, + sym_delim_token_tree, STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81243] = 5, + [81137] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(474), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81262] = 7, + [81160] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5904), 1, - anon_sym_SEMI, - STATE(3571), 1, - sym_where_clause, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(459), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81285] = 7, + [81183] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5906), 1, - anon_sym_SEMI, - STATE(3572), 1, - sym_where_clause, + ACTIONS(1373), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(477), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81308] = 7, + [81206] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5055), 1, anon_sym_LBRACE, - STATE(1346), 1, - sym_declaration_list, - STATE(3371), 1, + ACTIONS(5059), 1, + anon_sym_where, + STATE(640), 1, + sym_field_declaration_list, + STATE(3337), 1, sym_where_clause, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81331] = 7, + [81229] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3770), 1, - sym_block, + ACTIONS(5920), 1, + anon_sym_DQUOTE, + STATE(2767), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2690), 2, sym_line_comment, sym_block_comment, - [81354] = 7, + [81250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5914), 1, + anon_sym_LPAREN, + ACTIONS(5916), 1, + anon_sym_LBRACK, + ACTIONS(5918), 1, anon_sym_LBRACE, - STATE(580), 1, - sym_field_declaration_list, - STATE(3279), 1, - sym_where_clause, + STATE(2028), 1, + sym_delim_token_tree, STATE(2691), 2, sym_line_comment, sym_block_comment, - [81377] = 7, + [81273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(654), 1, - sym_declaration_list, - STATE(3324), 1, - sym_where_clause, + ACTIONS(4169), 1, + anon_sym_LT2, + ACTIONS(5922), 1, + sym_identifier, + ACTIONS(5924), 1, + sym_super, + STATE(1609), 1, + sym_type_arguments, STATE(2692), 2, sym_line_comment, sym_block_comment, - [81400] = 7, + [81296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5908), 1, - anon_sym_SEMI, - ACTIONS(5910), 1, - anon_sym_EQ, - ACTIONS(5912), 1, - anon_sym_else, + ACTIONS(4169), 1, + anon_sym_LT2, + ACTIONS(5922), 1, + sym_identifier, + ACTIONS(5924), 1, + sym_super, + STATE(1637), 1, + sym_type_arguments, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81423] = 7, + [81319] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(736), 1, - sym_field_declaration_list, - STATE(3248), 1, - sym_where_clause, + ACTIONS(5797), 1, + sym_super, + ACTIONS(5926), 1, + sym_identifier, + ACTIONS(5928), 1, + anon_sym_LT2, + STATE(2566), 1, + sym_type_arguments, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81446] = 5, + [81342] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, + ACTIONS(5797), 1, + sym_super, + ACTIONS(5926), 1, + sym_identifier, + ACTIONS(5928), 1, + anon_sym_LT2, + STATE(2570), 1, + sym_type_arguments, STATE(2695), 2, sym_line_comment, sym_block_comment, - ACTIONS(5914), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81465] = 7, + [81365] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5916), 1, - anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, + ACTIONS(5930), 1, + anon_sym_RPAREN, + ACTIONS(5932), 1, + anon_sym_COMMA, + STATE(2994), 1, + aux_sym_tuple_type_repeat1, STATE(2696), 2, sym_line_comment, sym_block_comment, - [81488] = 7, + [81388] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5918), 1, - anon_sym_RPAREN, - ACTIONS(5920), 1, - anon_sym_COMMA, - STATE(3067), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4809), 1, + anon_sym_DOT_DOT, + ACTIONS(5934), 1, + anon_sym_COLON_COLON, + ACTIONS(4811), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2697), 2, sym_line_comment, sym_block_comment, - [81511] = 7, + [81409] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2470), 1, - sym_parameters, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(5936), 1, + anon_sym_RPAREN, + ACTIONS(5938), 1, + anon_sym_COMMA, + STATE(3066), 1, + aux_sym_slice_pattern_repeat1, STATE(2698), 2, sym_line_comment, sym_block_comment, - [81534] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2283), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, - STATE(2699), 2, - sym_line_comment, - sym_block_comment, - [81557] = 7, + [81432] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5294), 1, sym_super, - ACTIONS(5836), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(3759), 1, + STATE(3740), 1, sym_type_arguments, - STATE(2700), 2, + STATE(2699), 2, sym_line_comment, sym_block_comment, - [81580] = 7, + [81455] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(485), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2701), 2, + ACTIONS(5059), 1, + anon_sym_where, + STATE(717), 1, + sym_declaration_list, + STATE(3203), 1, + sym_where_clause, + STATE(2700), 2, sym_line_comment, sym_block_comment, - [81603] = 7, + [81478] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(490), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2702), 2, + ACTIONS(4163), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(1689), 1, + sym_parameters, + STATE(2007), 1, + sym_type_arguments, + STATE(2701), 2, sym_line_comment, sym_block_comment, - [81626] = 6, + [81501] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_DQUOTE, - STATE(2715), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2703), 2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(3472), 1, + sym_type_arguments, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [81647] = 7, + [81524] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2275), 1, - sym_parameters, - STATE(3200), 1, - sym_type_parameters, - STATE(2704), 2, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3682), 1, + sym_label, + STATE(3734), 1, + sym_block, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [81670] = 7, + [81547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(3035), 1, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(480), 1, sym_block, - STATE(3739), 1, + STATE(3746), 1, sym_label, - STATE(2705), 2, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [81693] = 7, + [81570] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1781), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2706), 2, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5940), 1, + anon_sym_SEMI, + STATE(3559), 1, + sym_where_clause, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [81716] = 7, + [81593] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(3442), 1, anon_sym_LT2, - ACTIONS(4290), 1, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(4955), 1, + ACTIONS(4931), 1, anon_sym_BANG, - STATE(1643), 1, + STATE(1129), 1, sym_type_arguments, - STATE(2707), 2, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [81739] = 7, + [81616] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(3133), 1, - aux_sym_slice_pattern_repeat1, - STATE(2708), 2, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(409), 1, + sym_block, + STATE(3721), 1, + sym_label, + STATE(2707), 2, sym_line_comment, sym_block_comment, - [81762] = 7, + [81639] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(5866), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, + anon_sym_LBRACK, + ACTIONS(5870), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3740), 1, - sym_label, + STATE(416), 1, + sym_delim_token_tree, + STATE(2708), 2, + sym_line_comment, + sym_block_comment, + [81662] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5716), 1, + anon_sym_RPAREN, + ACTIONS(5718), 1, + anon_sym_COMMA, + STATE(3004), 1, + aux_sym_parameters_repeat1, STATE(2709), 2, sym_line_comment, sym_block_comment, - [81785] = 5, + [81685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, + ACTIONS(4634), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5928), 2, + ACTIONS(5942), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2710), 2, sym_line_comment, sym_block_comment, - [81804] = 7, + [81704] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - anon_sym_LPAREN, - ACTIONS(5932), 1, - anon_sym_LBRACK, - ACTIONS(5934), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(2020), 1, - sym_delim_token_tree, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(484), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2711), 2, sym_line_comment, sym_block_comment, - [81827] = 7, + [81727] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5944), 1, + anon_sym_RPAREN, + ACTIONS(5946), 1, + anon_sym_COMMA, + STATE(3117), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2712), 2, sym_line_comment, sym_block_comment, - [81850] = 7, + [81750] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(459), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5720), 1, + anon_sym_COMMA, + STATE(3011), 1, + aux_sym_parameters_repeat1, STATE(2713), 2, sym_line_comment, sym_block_comment, - [81873] = 7, + [81773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3064), 1, anon_sym_SQUOTE, - STATE(478), 1, - sym_block, - STATE(3740), 1, - sym_label, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5948), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2714), 2, sym_line_comment, sym_block_comment, - [81896] = 6, + [81796] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5936), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5950), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2715), 2, sym_line_comment, sym_block_comment, - [81917] = 7, + [81819] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - anon_sym_LPAREN, - ACTIONS(5932), 1, - anon_sym_LBRACK, - ACTIONS(5934), 1, - anon_sym_LBRACE, - STATE(2022), 1, - sym_delim_token_tree, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5952), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2716), 2, sym_line_comment, sym_block_comment, - [81940] = 7, + [81842] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5938), 1, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, sym_identifier, - ACTIONS(5940), 1, - sym_super, - STATE(1633), 1, - sym_type_arguments, + ACTIONS(5954), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2717), 2, sym_line_comment, sym_block_comment, - [81963] = 7, + [81865] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, - sym_super, - STATE(1636), 1, - sym_type_arguments, + ACTIONS(5956), 1, + anon_sym_LPAREN, + ACTIONS(5958), 1, + anon_sym_LBRACK, + ACTIONS(5960), 1, + anon_sym_LBRACE, + STATE(2732), 1, + sym_token_tree, STATE(2718), 2, sym_line_comment, sym_block_comment, - [81986] = 5, + [81888] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym_type_arguments, + STATE(2385), 1, + sym_parameters, STATE(2719), 2, sym_line_comment, sym_block_comment, - [82005] = 7, + [81911] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, - sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2561), 1, - sym_type_arguments, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1780), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82028] = 7, + [81934] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, - sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2563), 1, - sym_type_arguments, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1782), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82051] = 7, + [81957] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5948), 1, - anon_sym_RPAREN, - ACTIONS(5950), 1, - anon_sym_COMMA, - STATE(2993), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5962), 1, + anon_sym_DQUOTE, + STATE(2729), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82074] = 7, + [81978] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, - STATE(3359), 1, - sym_where_clause, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(487), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82097] = 7, + [82001] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1786), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82120] = 7, + [82024] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, + ACTIONS(5964), 1, anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1698), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5966), 1, + anon_sym_LBRACK, + ACTIONS(5968), 1, + anon_sym_LBRACE, + STATE(1072), 1, + sym_delim_token_tree, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82143] = 7, + [82047] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1788), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2726), 2, sym_line_comment, sym_block_comment, - [82166] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82070] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(403), 1, + STATE(1617), 1, sym_block, - STATE(3532), 1, + STATE(3747), 1, sym_label, STATE(2727), 2, sym_line_comment, sym_block_comment, - [82189] = 7, + [82093] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(470), 1, + STATE(1791), 1, sym_block, - STATE(3740), 1, + STATE(3747), 1, sym_label, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82212] = 7, + [82116] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3701), 1, - sym_block, + ACTIONS(5970), 1, + anon_sym_DQUOTE, + STATE(2767), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82235] = 7, + [82137] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(5966), 1, + anon_sym_LBRACK, + ACTIONS(5968), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_delim_token_tree, STATE(2730), 2, sym_line_comment, sym_block_comment, - [82258] = 6, + [82160] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5952), 1, - anon_sym_DQUOTE, - STATE(2597), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_identifier, + ACTIONS(5777), 1, + sym_super, + STATE(2109), 1, + sym_type_arguments, STATE(2731), 2, sym_line_comment, sym_block_comment, - [82279] = 5, + [82183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, - sym_identifier, STATE(2732), 2, sym_line_comment, sym_block_comment, - ACTIONS(5956), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82298] = 7, + ACTIONS(5972), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [82200] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(5423), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(489), 1, - sym_block, - STATE(3740), 1, - sym_label, + STATE(1164), 1, + sym_enum_variant_list, + STATE(3315), 1, + sym_where_clause, STATE(2733), 2, sym_line_comment, sym_block_comment, - [82321] = 5, - ACTIONS(3), 1, + [82223] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5958), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5974), 1, + sym_identifier, + STATE(3472), 1, + sym_type_arguments, STATE(2734), 2, sym_line_comment, sym_block_comment, - ACTIONS(5960), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82340] = 7, + [82246] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1810), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2735), 2, sym_line_comment, sym_block_comment, - [82363] = 7, + [82269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5962), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(4634), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5976), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82386] = 7, + [82288] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5964), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(1426), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82409] = 7, + [82311] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_LPAREN, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LBRACE, - STATE(2617), 1, - sym_token_tree, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5821), 1, + sym_identifier, + STATE(3472), 1, + sym_type_arguments, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82432] = 7, + [82334] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5972), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(1816), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82455] = 7, + [82357] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5974), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(5978), 1, + anon_sym_DQUOTE, + STATE(2743), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2740), 2, sym_line_comment, sym_block_comment, - [82478] = 7, + [82378] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1780), 1, + STATE(1920), 1, sym_block, - STATE(3741), 1, + STATE(3747), 1, sym_label, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82501] = 7, + [82401] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5980), 1, + anon_sym_LPAREN, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5984), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1782), 1, - sym_block, - STATE(3741), 1, - sym_label, + STATE(1825), 1, + sym_delim_token_tree, STATE(2742), 2, sym_line_comment, sym_block_comment, - [82524] = 6, + [82424] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5976), 1, + ACTIONS(5986), 1, anon_sym_DQUOTE, - STATE(2750), 1, + STATE(2767), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5900), 2, sym_string_content, sym_escape_sequence, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82545] = 7, + [82445] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(5980), 1, + anon_sym_LPAREN, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5984), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(488), 1, - sym_block, - STATE(3740), 1, - sym_label, + STATE(1828), 1, + sym_delim_token_tree, STATE(2744), 2, sym_line_comment, sym_block_comment, - [82568] = 7, + [82468] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1787), 1, - sym_block, - STATE(3741), 1, + STATE(3682), 1, sym_label, + STATE(3778), 1, + sym_block, STATE(2745), 2, sym_line_comment, sym_block_comment, - [82591] = 7, + [82491] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_delim_token_tree, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(2109), 1, + sym_type_arguments, STATE(2746), 2, sym_line_comment, sym_block_comment, - [82614] = 7, + [82514] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1789), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(2110), 1, + sym_type_arguments, STATE(2747), 2, sym_line_comment, sym_block_comment, - [82637] = 7, + [82537] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1615), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5974), 1, + sym_identifier, + STATE(3740), 1, + sym_type_arguments, STATE(2748), 2, sym_line_comment, sym_block_comment, - [82660] = 7, + [82560] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1793), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5974), 1, + sym_identifier, + STATE(3472), 1, + sym_type_arguments, STATE(2749), 2, sym_line_comment, sym_block_comment, - [82683] = 6, + [82583] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5984), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5300), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5306), 1, + anon_sym_LBRACE, + STATE(1429), 1, + sym_delim_token_tree, STATE(2750), 2, sym_line_comment, sym_block_comment, - [82704] = 7, + [82606] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_delim_token_tree, + ACTIONS(5990), 1, + anon_sym_DQUOTE, + STATE(2752), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2751), 2, sym_line_comment, sym_block_comment, - [82727] = 7, + [82627] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, + ACTIONS(5992), 1, + anon_sym_DQUOTE, + STATE(2767), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2752), 2, sym_line_comment, sym_block_comment, - [82750] = 7, + [82648] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5777), 1, sym_super, - ACTIONS(5986), 1, + ACTIONS(5994), 1, sym_identifier, - STATE(2102), 1, + STATE(3740), 1, sym_type_arguments, STATE(2753), 2, sym_line_comment, sym_block_comment, - [82773] = 7, + [82671] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5777), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(5994), 1, sym_identifier, - STATE(3605), 1, + STATE(3472), 1, sym_type_arguments, STATE(2754), 2, sym_line_comment, sym_block_comment, - [82796] = 7, + [82694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(5555), 1, + anon_sym_PIPE, STATE(2755), 2, sym_line_comment, sym_block_comment, - [82819] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1810), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2756), 2, + ACTIONS(5996), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [82713] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5998), 1, + anon_sym_COMMA, + ACTIONS(5996), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2756), 3, sym_line_comment, sym_block_comment, - [82842] = 4, + aux_sym_slice_pattern_repeat1, + [82732] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -183304,1530 +183820,1555 @@ static const uint16_t ts_small_parse_table[] = { STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82859] = 7, + ACTIONS(3382), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [82749] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1816), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6001), 1, + anon_sym_RBRACK, + ACTIONS(6003), 1, + anon_sym_COMMA, + STATE(2985), 1, + aux_sym_slice_pattern_repeat1, STATE(2758), 2, sym_line_comment, sym_block_comment, - [82882] = 6, + [82772] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5990), 1, - anon_sym_DQUOTE, - STATE(2763), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5994), 1, + sym_identifier, + STATE(3740), 1, + sym_type_arguments, STATE(2759), 2, sym_line_comment, sym_block_comment, - [82903] = 7, + [82795] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1821), 1, - sym_block, - STATE(3741), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5994), 1, + sym_identifier, + STATE(3472), 1, + sym_type_arguments, STATE(2760), 2, sym_line_comment, sym_block_comment, - [82926] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(421), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(3164), 1, + anon_sym_PLUS, STATE(2761), 2, sym_line_comment, sym_block_comment, - [82949] = 7, + ACTIONS(6005), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [82837] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - STATE(1826), 1, - sym_delim_token_tree, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1437), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2762), 2, sym_line_comment, sym_block_comment, - [82972] = 6, + [82860] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5998), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(6007), 1, + sym_identifier, + STATE(1441), 1, + sym_type_arguments, STATE(2763), 2, sym_line_comment, sym_block_comment, - [82993] = 7, + [82883] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym_delim_token_tree, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(398), 1, + sym_block, + STATE(3721), 1, + sym_label, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83016] = 7, + [82906] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5288), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2765), 2, sym_line_comment, sym_block_comment, - [83039] = 7, + [82927] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + STATE(2302), 1, + sym_parameters, + STATE(3329), 1, + sym_type_parameters, STATE(2766), 2, sym_line_comment, sym_block_comment, - [83062] = 7, + [82950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2767), 2, + ACTIONS(6009), 1, + anon_sym_DQUOTE, + ACTIONS(6011), 2, + sym_string_content, + sym_escape_sequence, + STATE(2767), 3, sym_line_comment, sym_block_comment, - [83085] = 7, + aux_sym_string_literal_repeat1, + [82969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(6014), 1, + anon_sym_in, STATE(2768), 2, sym_line_comment, sym_block_comment, - [83108] = 5, + ACTIONS(6016), 3, + sym_self, + sym_super, + sym_crate, + [82988] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3654), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2769), 2, sym_line_comment, sym_block_comment, - ACTIONS(6002), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [83127] = 6, + [83011] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - STATE(2771), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(6018), 1, + anon_sym_LBRACE, + ACTIONS(6020), 1, + anon_sym_for, + ACTIONS(6022), 1, + anon_sym_loop, + ACTIONS(6024), 1, + anon_sym_while, STATE(2770), 2, sym_line_comment, sym_block_comment, - [83148] = 6, + [83034] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1140), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2771), 2, sym_line_comment, sym_block_comment, - [83169] = 7, + [83057] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(365), 1, + sym_block, + STATE(3721), 1, + sym_label, STATE(2772), 2, sym_line_comment, sym_block_comment, - [83192] = 7, + [83080] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(6026), 1, + anon_sym_LBRACE, + ACTIONS(6028), 1, + anon_sym_for, + ACTIONS(6030), 1, + anon_sym_loop, + ACTIONS(6032), 1, + anon_sym_while, STATE(2773), 2, sym_line_comment, sym_block_comment, - [83215] = 5, + [83103] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6010), 1, - anon_sym_COMMA, - ACTIONS(6002), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2774), 3, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3682), 1, + sym_label, + STATE(3715), 1, + sym_block, + STATE(2774), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [83234] = 4, + [83126] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + STATE(2316), 1, + sym_parameters, + STATE(3358), 1, + sym_type_parameters, STATE(2775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [83251] = 7, + [83149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, - STATE(1430), 1, - sym_type_arguments, + ACTIONS(6034), 1, + anon_sym_COLON, STATE(2776), 2, sym_line_comment, sym_block_comment, - [83274] = 5, + ACTIONS(5021), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [83168] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, + ACTIONS(6036), 1, + anon_sym_RPAREN, + ACTIONS(6038), 1, + anon_sym_COMMA, + STATE(2935), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(6013), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83293] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83191] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3064), 1, anon_sym_SQUOTE, - STATE(405), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(6040), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2778), 2, sym_line_comment, sym_block_comment, - [83316] = 5, + [83214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6017), 2, - sym_string_content, - sym_escape_sequence, - STATE(2779), 3, + ACTIONS(5890), 1, + anon_sym_COLON_COLON, + STATE(2779), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [83335] = 7, + ACTIONS(4899), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83233] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3682), 1, + sym_label, + STATE(3757), 1, + sym_block, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83358] = 7, + [83256] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5732), 1, + anon_sym_COMMA, + STATE(3034), 1, + aux_sym_parameters_repeat1, STATE(2781), 2, sym_line_comment, sym_block_comment, - [83381] = 7, + [83279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6020), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(5892), 1, + anon_sym_COLON_COLON, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83404] = 7, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, + ACTIONS(5894), 1, anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, STATE(2783), 2, sym_line_comment, sym_block_comment, - [83427] = 7, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3493), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5896), 1, + anon_sym_COLON_COLON, STATE(2784), 2, sym_line_comment, sym_block_comment, - [83450] = 6, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83336] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4716), 1, + anon_sym_BANG, + ACTIONS(4732), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + STATE(2013), 1, + sym_type_arguments, STATE(2785), 2, sym_line_comment, sym_block_comment, - [83471] = 7, + [83359] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6022), 1, - anon_sym_RPAREN, - ACTIONS(6024), 1, - anon_sym_COMMA, - STATE(2998), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1424), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83494] = 7, + [83382] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2312), 1, - sym_parameters, - STATE(3321), 1, - sym_type_parameters, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6042), 1, + anon_sym_SEMI, + ACTIONS(6044), 1, + anon_sym_EQ, + ACTIONS(6046), 1, + anon_sym_else, STATE(2787), 2, sym_line_comment, sym_block_comment, - [83517] = 7, + [83405] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6026), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(3672), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83540] = 5, + [83428] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6028), 1, - anon_sym_in, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(6048), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(6030), 3, - sym_self, - sym_super, - sym_crate, - [83559] = 7, + [83451] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_RPAREN, - ACTIONS(6034), 1, - anon_sym_COMMA, - STATE(3011), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(3740), 1, + sym_type_arguments, + ACTIONS(5294), 2, + sym_identifier, + sym_super, STATE(2790), 2, sym_line_comment, sym_block_comment, - [83582] = 7, + [83472] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, - ACTIONS(6038), 1, - anon_sym_for, - ACTIONS(6040), 1, - anon_sym_loop, - ACTIONS(6042), 1, - anon_sym_while, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(6050), 1, + anon_sym_GT, + STATE(3332), 1, + sym_lifetime, STATE(2791), 2, sym_line_comment, sym_block_comment, - [83605] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [83495] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(319), 1, - sym_block, - STATE(3532), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(3472), 1, + sym_type_arguments, + ACTIONS(5294), 2, + sym_identifier, + sym_super, STATE(2792), 2, sym_line_comment, sym_block_comment, - [83628] = 7, + [83516] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LBRACE, - ACTIONS(6046), 1, - anon_sym_for, - ACTIONS(6048), 1, - anon_sym_loop, - ACTIONS(6050), 1, - anon_sym_while, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + STATE(2278), 1, + sym_parameters, + STATE(3371), 1, + sym_type_parameters, STATE(2793), 2, sym_line_comment, sym_block_comment, - [83651] = 5, + [83539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, + ACTIONS(5890), 1, anon_sym_COLON_COLON, STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 3, + ACTIONS(4913), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83670] = 7, + [83558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3510), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5892), 1, + anon_sym_COLON_COLON, STATE(2795), 2, sym_line_comment, sym_block_comment, - [83693] = 5, + ACTIONS(4845), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83577] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, + ACTIONS(5894), 1, anon_sym_COLON_COLON, STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, + ACTIONS(4845), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83712] = 5, + [83596] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3468), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83731] = 5, + [83619] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3476), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2798), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83750] = 7, + [83642] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2301), 1, - sym_parameters, - STATE(3353), 1, - sym_type_parameters, + ACTIONS(5896), 1, + anon_sym_COLON_COLON, STATE(2799), 2, sym_line_comment, sym_block_comment, - [83773] = 7, + ACTIONS(4845), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83661] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3665), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5059), 1, + anon_sym_where, + STATE(666), 1, + sym_declaration_list, + STATE(3252), 1, + sym_where_clause, STATE(2800), 2, sym_line_comment, sym_block_comment, - [83796] = 5, + [83684] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(1463), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83815] = 7, + [83707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, STATE(2802), 2, sym_line_comment, sym_block_comment, - [83838] = 6, + ACTIONS(4420), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [83724] = 6, ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6052), 1, + anon_sym_DQUOTE, + STATE(2767), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2803), 2, sym_line_comment, sym_block_comment, - [83859] = 6, + [83745] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3575), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2804), 2, sym_line_comment, sym_block_comment, - [83880] = 5, + [83768] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3577), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83899] = 7, + [83791] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6054), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + ACTIONS(5300), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5306), 1, + anon_sym_LBRACE, + STATE(1464), 1, + sym_delim_token_tree, STATE(2806), 2, sym_line_comment, sym_block_comment, - [83922] = 7, + [83814] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3550), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(6054), 1, + sym_identifier, + STATE(1640), 1, + sym_type_arguments, STATE(2807), 2, sym_line_comment, sym_block_comment, - [83945] = 7, + [83837] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6056), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, + STATE(1505), 1, + sym_type_arguments, STATE(2808), 2, sym_line_comment, sym_block_comment, - [83968] = 5, + [83860] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(6054), 1, + sym_identifier, + STATE(1629), 1, + sym_type_arguments, STATE(2809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83987] = 5, + [83883] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3642), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84006] = 5, + [83906] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(3421), 1, + sym_trait_bounds, + ACTIONS(5632), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84025] = 7, + [83927] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2296), 1, - sym_parameters, - STATE(3366), 1, - sym_type_parameters, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3682), 1, + sym_label, + STATE(3695), 1, + sym_block, STATE(2812), 2, sym_line_comment, sym_block_comment, - [84048] = 7, + [83950] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2286), 1, - sym_parameters, - STATE(3331), 1, - sym_type_parameters, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 1, + anon_sym_BANG, + STATE(1129), 1, + sym_type_arguments, STATE(2813), 2, sym_line_comment, sym_block_comment, - [84071] = 7, + [83973] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3703), 1, - sym_block, + ACTIONS(4169), 1, + anon_sym_LT2, + ACTIONS(4332), 1, + anon_sym_COLON_COLON, + ACTIONS(4716), 1, + anon_sym_BANG, + STATE(1690), 1, + sym_type_arguments, STATE(2814), 2, sym_line_comment, sym_block_comment, - [84094] = 7, + [83996] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(347), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(3677), 1, + STATE(3682), 1, sym_label, - STATE(3704), 1, + STATE(3719), 1, sym_block, STATE(2815), 2, sym_line_comment, sym_block_comment, - [84117] = 6, + [84019] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(6056), 1, anon_sym_GT, - anon_sym_COMMA, + STATE(3332), 1, + sym_lifetime, STATE(2816), 2, sym_line_comment, sym_block_comment, - [84138] = 7, + [84042] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3667), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2817), 2, sym_line_comment, sym_block_comment, - [84161] = 7, + [84063] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3530), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5904), 1, + sym_identifier, + STATE(2109), 1, + sym_type_arguments, STATE(2818), 2, sym_line_comment, sym_block_comment, - [84184] = 7, + [84086] = 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(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(3541), 1, + STATE(399), 1, sym_block, - STATE(3677), 1, + STATE(3721), 1, sym_label, STATE(2819), 2, sym_line_comment, sym_block_comment, - [84207] = 7, + [84109] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3597), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6058), 1, + anon_sym_RPAREN, + ACTIONS(6060), 1, + anon_sym_COMMA, + STATE(2852), 1, + aux_sym_tuple_pattern_repeat1, STATE(2820), 2, sym_line_comment, sym_block_comment, - [84230] = 7, + [84132] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6062), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3622), 1, - sym_block, - STATE(3677), 1, - sym_label, + ACTIONS(6064), 1, + anon_sym_for, + ACTIONS(6066), 1, + anon_sym_loop, + ACTIONS(6068), 1, + anon_sym_while, STATE(2821), 2, sym_line_comment, sym_block_comment, - [84253] = 7, + [84155] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6070), 1, + anon_sym_RBRACK, + ACTIONS(6072), 1, + anon_sym_COMMA, + STATE(2853), 1, + aux_sym_slice_pattern_repeat1, STATE(2822), 2, sym_line_comment, sym_block_comment, - [84276] = 7, + [84178] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_LT, + STATE(2272), 1, + sym_parameters, + STATE(3378), 1, + sym_type_parameters, STATE(2823), 2, sym_line_comment, sym_block_comment, - [84299] = 6, + [84201] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6058), 1, - anon_sym_EQ, - ACTIONS(6060), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5374), 1, + anon_sym_COLON_COLON, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2824), 2, sym_line_comment, sym_block_comment, - [84320] = 6, + [84222] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(6074), 1, + sym_identifier, + STATE(2109), 1, + sym_type_arguments, STATE(2825), 2, sym_line_comment, sym_block_comment, - [84341] = 7, + [84245] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, + ACTIONS(6076), 1, anon_sym_LBRACE, - ACTIONS(6064), 1, + ACTIONS(6078), 1, anon_sym_for, - ACTIONS(6066), 1, + ACTIONS(6080), 1, anon_sym_loop, - ACTIONS(6068), 1, + ACTIONS(6082), 1, anon_sym_while, STATE(2826), 2, sym_line_comment, sym_block_comment, - [84364] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [84268] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(409), 1, + STATE(1487), 1, sym_block, - STATE(3532), 1, + STATE(3682), 1, sym_label, STATE(2827), 2, sym_line_comment, sym_block_comment, - [84387] = 7, + [84291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_delim_token_tree, + ACTIONS(6084), 1, + sym_identifier, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84410] = 6, + ACTIONS(6086), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [84310] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5320), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(6074), 1, + sym_identifier, + STATE(2110), 1, + sym_type_arguments, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84431] = 7, + [84333] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, - anon_sym_for, - ACTIONS(6074), 1, - anon_sym_loop, - ACTIONS(6076), 1, - anon_sym_while, + ACTIONS(6088), 1, + anon_sym_DQUOTE, + STATE(2678), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5900), 2, + sym_string_content, + sym_escape_sequence, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84454] = 7, + [84354] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6078), 1, - anon_sym_SEMI, - STATE(3587), 1, - sym_where_clause, + ACTIONS(5578), 1, + anon_sym_RPAREN, + ACTIONS(5580), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_parameters_repeat1, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84477] = 5, + [84377] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - sym_identifier, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6090), 1, + anon_sym_RPAREN, + ACTIONS(6092), 1, + anon_sym_COMMA, + STATE(2857), 1, + aux_sym_tuple_type_repeat1, STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(6082), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84496] = 7, + [84400] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(2008), 1, + ACTIONS(4911), 1, + anon_sym_for, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + STATE(2015), 1, sym_type_arguments, - STATE(2565), 1, - sym_trait_bounds, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84519] = 7, + [84423] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4905), 1, - anon_sym_for, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6094), 1, + anon_sym_RPAREN, + ACTIONS(6096), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_tuple_type_repeat1, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84542] = 5, + [84446] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_in, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(2007), 1, + sym_type_arguments, + STATE(2568), 1, + sym_trait_bounds, STATE(2835), 2, sym_line_comment, sym_block_comment, - ACTIONS(6086), 3, - sym_self, - sym_super, - sym_crate, - [84561] = 7, + [84469] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5767), 1, + ACTIONS(5779), 1, anon_sym_COLON_COLON, - ACTIONS(6088), 1, + ACTIONS(6098), 1, anon_sym_for, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, STATE(2836), 2, sym_line_comment, sym_block_comment, - [84584] = 7, + [84492] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(6090), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, + ACTIONS(347), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_SQUOTE, + STATE(3563), 1, + sym_block, + STATE(3682), 1, + sym_label, STATE(2837), 2, sym_line_comment, sym_block_comment, - [84607] = 5, + [84515] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6092), 1, - anon_sym_COLON, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + ACTIONS(6100), 1, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, STATE(2838), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84626] = 7, + [84538] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5767), 1, + ACTIONS(5779), 1, anon_sym_COLON_COLON, - ACTIONS(6094), 1, + ACTIONS(6102), 1, anon_sym_for, - STATE(2006), 1, + STATE(2015), 1, sym_type_arguments, STATE(2839), 2, sym_line_comment, sym_block_comment, - [84649] = 7, + [84561] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6096), 1, - anon_sym_SEMI, - ACTIONS(6098), 1, - anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_else, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5821), 1, + sym_identifier, + STATE(3740), 1, + sym_type_arguments, STATE(2840), 2, sym_line_comment, sym_block_comment, - [84672] = 7, + [84584] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6102), 1, - anon_sym_SEMI, - STATE(3758), 1, - sym_where_clause, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5779), 1, + anon_sym_COLON_COLON, + ACTIONS(6104), 1, + anon_sym_for, + STATE(2015), 1, + sym_type_arguments, STATE(2841), 2, sym_line_comment, sym_block_comment, - [84695] = 7, + [84607] = 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(3420), 1, + ACTIONS(3428), 1, anon_sym_SQUOTE, - STATE(1460), 1, + STATE(406), 1, sym_block, - STATE(3677), 1, + STATE(3721), 1, sym_label, STATE(2842), 2, sym_line_comment, sym_block_comment, - [84718] = 7, + [84630] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(3434), 1, anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2076), 1, + ACTIONS(4652), 1, + anon_sym_LT2, + STATE(1161), 1, sym_parameters, + STATE(2007), 1, + sym_type_arguments, STATE(2843), 2, sym_line_comment, sym_block_comment, - [84741] = 7, + [84653] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3071), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5821), 1, + sym_identifier, + STATE(3472), 1, + sym_type_arguments, STATE(2844), 2, sym_line_comment, sym_block_comment, - [84764] = 7, + [84676] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6108), 1, - anon_sym_SEMI, - STATE(3577), 1, - sym_where_clause, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2007), 1, + sym_type_arguments, + STATE(2086), 1, + sym_parameters, STATE(2845), 2, sym_line_comment, sym_block_comment, - [84787] = 6, + [84699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + ACTIONS(6106), 1, + anon_sym_in, STATE(2846), 2, sym_line_comment, sym_block_comment, - [84807] = 6, + ACTIONS(6108), 3, + sym_self, + sym_super, + sym_crate, + [84718] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2572), 1, - anon_sym_RPAREN, - ACTIONS(6112), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6110), 1, + anon_sym_SEMI, + STATE(3660), 1, + sym_where_clause, STATE(2847), 2, sym_line_comment, sym_block_comment, - [84827] = 4, + [84741] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6112), 1, + anon_sym_SEMI, + ACTIONS(6114), 1, + anon_sym_EQ, + ACTIONS(6116), 1, + anon_sym_else, STATE(2848), 2, sym_line_comment, sym_block_comment, - ACTIONS(6114), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84843] = 6, + [84764] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3120), 1, - anon_sym_RBRACK, - ACTIONS(6116), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5974), 1, + sym_identifier, + STATE(3740), 1, + sym_type_arguments, STATE(2849), 2, sym_line_comment, sym_block_comment, - [84863] = 6, + [84787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(5106), 1, anon_sym_RBRACE, - ACTIONS(6120), 1, + ACTIONS(6118), 1, anon_sym_COMMA, - STATE(2868), 1, + STATE(3017), 1, aux_sym_field_declaration_list_repeat1, STATE(2850), 2, sym_line_comment, sym_block_comment, - [84883] = 6, + [84807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - ACTIONS(6124), 1, - anon_sym_COMMA, - STATE(2901), 1, - aux_sym_struct_pattern_repeat1, STATE(2851), 2, sym_line_comment, sym_block_comment, - [84903] = 4, + ACTIONS(6120), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84823] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2736), 1, + anon_sym_RPAREN, + ACTIONS(6122), 1, + anon_sym_COMMA, + STATE(3041), 1, + aux_sym_tuple_pattern_repeat1, STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84919] = 6, + [84843] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, - anon_sym_RBRACE, - ACTIONS(6128), 1, + ACTIONS(3130), 1, + anon_sym_RBRACK, + ACTIONS(6124), 1, anon_sym_COMMA, - STATE(2904), 1, - aux_sym_struct_pattern_repeat1, + STATE(2756), 1, + aux_sym_slice_pattern_repeat1, STATE(2853), 2, sym_line_comment, sym_block_comment, - [84939] = 4, + [84863] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6126), 1, + anon_sym_RBRACE, + ACTIONS(6128), 1, + anon_sym_COMMA, + STATE(2899), 1, + aux_sym_struct_pattern_repeat1, STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(6130), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84955] = 6, + [84883] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_RPAREN, + ACTIONS(6130), 1, + anon_sym_RBRACE, ACTIONS(6132), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + STATE(2902), 1, + aux_sym_struct_pattern_repeat1, STATE(2855), 2, sym_line_comment, sym_block_comment, - [84975] = 4, + [84903] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4454), 1, + anon_sym_RBRACE, + ACTIONS(6134), 1, + anon_sym_COMMA, + STATE(2998), 1, + aux_sym_use_list_repeat1, STATE(2856), 2, sym_line_comment, sym_block_comment, - ACTIONS(6134), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84991] = 4, + [84923] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3290), 1, + anon_sym_RPAREN, + ACTIONS(6136), 1, + anon_sym_COMMA, + STATE(3070), 1, + aux_sym_tuple_type_repeat1, STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(6136), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85007] = 4, + [84943] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -184835,37 +185376,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85023] = 6, + ACTIONS(6138), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, STATE(2859), 2, sym_line_comment, sym_block_comment, - [85043] = 4, + ACTIONS(6140), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84975] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5672), 1, + anon_sym_RPAREN, + ACTIONS(5674), 1, + anon_sym_COMMA, + STATE(2903), 1, + aux_sym_parameters_repeat1, STATE(2860), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85059] = 4, + [84995] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -184873,39 +185414,39 @@ static const uint16_t ts_small_parse_table[] = { STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(6138), 3, + ACTIONS(6142), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [85075] = 6, + [85011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6140), 1, + ACTIONS(6144), 1, anon_sym_GT, - ACTIONS(6142), 1, + ACTIONS(6146), 1, anon_sym_COMMA, - STATE(2910), 1, + STATE(2906), 1, aux_sym_use_bounds_repeat1, STATE(2862), 2, sym_line_comment, sym_block_comment, - [85095] = 6, + [85031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, + ACTIONS(6148), 1, anon_sym_GT, - ACTIONS(6146), 1, + ACTIONS(6150), 1, anon_sym_COMMA, - STATE(2911), 1, + STATE(2907), 1, aux_sym_use_bounds_repeat1, STATE(2863), 2, sym_line_comment, sym_block_comment, - [85115] = 4, + [85051] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -184913,79 +185454,77 @@ static const uint16_t ts_small_parse_table[] = { STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(6148), 3, + ACTIONS(6152), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [85131] = 6, + [85067] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(6150), 1, + ACTIONS(6154), 1, anon_sym_SEMI, - ACTIONS(6152), 1, + ACTIONS(6156), 1, anon_sym_EQ, STATE(2865), 2, sym_line_comment, sym_block_comment, - [85151] = 6, + [85087] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, - ACTIONS(6156), 1, - anon_sym_COMMA, - STATE(2912), 1, - aux_sym_enum_variant_list_repeat2, STATE(2866), 2, sym_line_comment, sym_block_comment, - [85171] = 6, + ACTIONS(6158), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85103] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6158), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, STATE(2867), 2, sym_line_comment, sym_block_comment, - [85191] = 6, + ACTIONS(6160), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85119] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, + ACTIONS(6162), 1, anon_sym_RBRACE, - ACTIONS(6160), 1, + ACTIONS(6164), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2908), 1, + aux_sym_enum_variant_list_repeat2, STATE(2868), 2, sym_line_comment, sym_block_comment, - [85211] = 4, + [85139] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6166), 1, + sym_mutable_specifier, + ACTIONS(6168), 1, + sym_self, STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85227] = 4, + [85159] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -184993,65 +185532,67 @@ static const uint16_t ts_small_parse_table[] = { STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, + ACTIONS(5015), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85243] = 6, + [85175] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_GT, - ACTIONS(6162), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6170), 1, + anon_sym_SEMI, + STATE(497), 1, + sym_declaration_list, STATE(2871), 2, sym_line_comment, sym_block_comment, - [85263] = 6, + [85195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, + ACTIONS(4819), 1, anon_sym_GT, - ACTIONS(6162), 1, + ACTIONS(6172), 1, anon_sym_COMMA, - STATE(2914), 1, + STATE(3122), 1, aux_sym_type_parameters_repeat1, STATE(2872), 2, sym_line_comment, sym_block_comment, - [85283] = 4, + [85215] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4819), 1, + anon_sym_GT, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_type_parameters_repeat1, STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85299] = 6, + [85235] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6164), 1, + ACTIONS(6174), 1, anon_sym_SEMI, - STATE(1207), 1, + STATE(1213), 1, sym_declaration_list, STATE(2874), 2, sym_line_comment, sym_block_comment, - [85319] = 4, + [85255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -185059,66 +185600,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85335] = 5, + ACTIONS(5592), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6166), 1, - anon_sym_RPAREN, - ACTIONS(6168), 1, - anon_sym_COMMA, - STATE(2876), 3, + STATE(2876), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85353] = 6, + ACTIONS(4975), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85287] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(6171), 1, + ACTIONS(6176), 1, anon_sym_SEMI, - ACTIONS(6173), 1, + ACTIONS(6178), 1, anon_sym_EQ, STATE(2877), 2, sym_line_comment, sym_block_comment, - [85373] = 6, + [85307] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, + ACTIONS(6180), 1, anon_sym_RBRACE, - ACTIONS(6177), 1, + ACTIONS(6182), 1, anon_sym_COMMA, - STATE(2919), 1, + STATE(2918), 1, aux_sym_field_declaration_list_repeat1, STATE(2878), 2, sym_line_comment, sym_block_comment, - [85393] = 6, + [85327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(6179), 1, + ACTIONS(6184), 1, anon_sym_SEMI, - STATE(3672), 1, + STATE(3742), 1, sym_where_clause, STATE(2879), 2, sym_line_comment, sym_block_comment, - [85413] = 4, + [85347] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -185126,897 +185666,902 @@ static const uint16_t ts_small_parse_table[] = { STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(6181), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [85429] = 6, + ACTIONS(5017), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5059), 1, anon_sym_where, - ACTIONS(6183), 1, + ACTIONS(6186), 1, anon_sym_SEMI, - STATE(3471), 1, + STATE(3540), 1, sym_where_clause, STATE(2881), 2, sym_line_comment, sym_block_comment, - [85449] = 6, + [85383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6185), 1, - anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, STATE(2882), 2, sym_line_comment, sym_block_comment, - [85469] = 4, + ACTIONS(4979), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85399] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6188), 1, + anon_sym_SEMI, + STATE(1234), 1, + sym_declaration_list, STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(6187), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [85485] = 6, + [85419] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_RBRACE, - ACTIONS(6189), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, STATE(2884), 2, sym_line_comment, sym_block_comment, - [85505] = 6, + ACTIONS(5007), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6191), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_where_clause, STATE(2885), 2, sym_line_comment, sym_block_comment, - [85525] = 4, + ACTIONS(5011), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85451] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_RBRACE, + ACTIONS(6190), 1, + anon_sym_COMMA, + STATE(3062), 1, + aux_sym_field_initializer_list_repeat1, STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [85541] = 5, + [85471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6193), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85559] = 6, + ACTIONS(6192), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85487] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6194), 1, + anon_sym_SEMI, + STATE(3710), 1, + sym_where_clause, STATE(2888), 2, sym_line_comment, sym_block_comment, - [85579] = 6, + [85507] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_GT, - ACTIONS(6195), 1, + ACTIONS(5624), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(6196), 1, + anon_sym_PIPE, + STATE(2980), 1, + aux_sym_closure_parameters_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - [85599] = 6, + [85527] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6197), 1, - anon_sym_SEMI, - STATE(3616), 1, - sym_where_clause, + ACTIONS(947), 1, + anon_sym_RPAREN, + ACTIONS(4314), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85619] = 6, + [85547] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6201), 1, - anon_sym_ref, - ACTIONS(6203), 1, - sym_mutable_specifier, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6198), 1, + anon_sym_SEMI, + STATE(508), 1, + sym_declaration_list, STATE(2891), 2, sym_line_comment, sym_block_comment, - [85639] = 6, + [85567] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, - anon_sym_RBRACE, - ACTIONS(6205), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(4937), 1, + anon_sym_LBRACE, + STATE(2007), 1, + sym_type_arguments, STATE(2892), 2, sym_line_comment, sym_block_comment, - [85659] = 5, + [85587] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6209), 1, - anon_sym_COLON, - ACTIONS(6207), 2, + ACTIONS(5003), 1, anon_sym_RBRACE, + ACTIONS(6200), 1, anon_sym_COMMA, + STATE(3062), 1, + aux_sym_field_initializer_list_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85677] = 5, + [85607] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_GT, - ACTIONS(6211), 1, + ACTIONS(951), 1, + anon_sym_RBRACK, + ACTIONS(6202), 1, anon_sym_COMMA, - STATE(2894), 3, + STATE(2627), 1, + aux_sym_arguments_repeat1, + STATE(2894), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [85695] = 5, + [85627] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, + ACTIONS(6206), 1, anon_sym_COLON, - ACTIONS(6214), 2, + ACTIONS(6204), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(2895), 2, sym_line_comment, sym_block_comment, - [85713] = 6, + [85645] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RBRACK, - ACTIONS(6218), 1, + ACTIONS(1655), 1, + anon_sym_GT, + ACTIONS(6208), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(2930), 1, + aux_sym_type_arguments_repeat1, STATE(2896), 2, sym_line_comment, sym_block_comment, - [85733] = 6, + [85665] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - anon_sym_RBRACE, - ACTIONS(6222), 1, + ACTIONS(1655), 1, + anon_sym_GT, + ACTIONS(6208), 1, anon_sym_COMMA, - STATE(3057), 1, - aux_sym_struct_pattern_repeat1, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(2897), 2, sym_line_comment, sym_block_comment, - [85753] = 6, + [85685] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6224), 1, + ACTIONS(3134), 1, + anon_sym_RPAREN, + ACTIONS(6210), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_type_arguments_repeat1, + STATE(2756), 1, + aux_sym_slice_pattern_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [85773] = 6, + [85705] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6224), 1, + ACTIONS(5312), 1, + anon_sym_RBRACE, + ACTIONS(6212), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + STATE(2982), 1, + aux_sym_struct_pattern_repeat1, STATE(2899), 2, sym_line_comment, sym_block_comment, - [85793] = 6, + [85725] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3128), 1, - anon_sym_RPAREN, - ACTIONS(6226), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(6214), 1, + sym_identifier, + ACTIONS(6216), 1, + anon_sym_ref, + ACTIONS(6218), 1, + sym_mutable_specifier, STATE(2900), 2, sym_line_comment, sym_block_comment, - [85813] = 6, + [85745] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RBRACE, - ACTIONS(6228), 1, + ACTIONS(3136), 1, + anon_sym_RPAREN, + ACTIONS(6220), 1, anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + STATE(2756), 1, + aux_sym_slice_pattern_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [85833] = 6, + [85765] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3106), 1, - anon_sym_RPAREN, - ACTIONS(6230), 1, + ACTIONS(5314), 1, + anon_sym_RBRACE, + ACTIONS(6222), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + STATE(2982), 1, + aux_sym_struct_pattern_repeat1, STATE(2902), 2, sym_line_comment, sym_block_comment, - [85853] = 6, + [85785] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6232), 1, - anon_sym_SEMI, - STATE(722), 1, - sym_declaration_list, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(5680), 1, + anon_sym_COMMA, + STATE(3027), 1, + aux_sym_parameters_repeat1, STATE(2903), 2, sym_line_comment, sym_block_comment, - [85873] = 6, + [85805] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6224), 1, + anon_sym_SEMI, + ACTIONS(6226), 1, + anon_sym_EQ, STATE(2904), 2, sym_line_comment, sym_block_comment, - [85893] = 6, + [85825] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6236), 1, - anon_sym_SEMI, - STATE(3497), 1, - sym_where_clause, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(5680), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_parameters_repeat1, STATE(2905), 2, sym_line_comment, sym_block_comment, - [85913] = 6, + [85845] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, + ACTIONS(5834), 1, + anon_sym_GT, + ACTIONS(6228), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + STATE(3105), 1, + aux_sym_use_bounds_repeat1, STATE(2906), 2, sym_line_comment, sym_block_comment, - [85933] = 6, + [85865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(622), 1, - sym_declaration_list, + ACTIONS(5836), 1, + anon_sym_GT, + ACTIONS(6230), 1, + anon_sym_COMMA, + STATE(3105), 1, + aux_sym_use_bounds_repeat1, STATE(2907), 2, sym_line_comment, sym_block_comment, - [85953] = 6, + [85885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, + ACTIONS(5037), 1, + anon_sym_RBRACE, + ACTIONS(6232), 1, anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, + STATE(3151), 1, + aux_sym_enum_variant_list_repeat2, STATE(2908), 2, sym_line_comment, sym_block_comment, - [85973] = 6, + [85905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6240), 1, - sym_mutable_specifier, - ACTIONS(6242), 1, - sym_self, + ACTIONS(5037), 1, + anon_sym_RBRACE, + ACTIONS(6232), 1, + anon_sym_COMMA, + STATE(2938), 1, + aux_sym_enum_variant_list_repeat2, STATE(2909), 2, sym_line_comment, sym_block_comment, - [85993] = 6, + [85925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_GT, - ACTIONS(6244), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, STATE(2910), 2, sym_line_comment, sym_block_comment, - [86013] = 6, + ACTIONS(1509), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, + ACTIONS(4825), 1, anon_sym_GT, - ACTIONS(6246), 1, + ACTIONS(6234), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, + STATE(3122), 1, + aux_sym_type_parameters_repeat1, STATE(2911), 2, sym_line_comment, sym_block_comment, - [86033] = 6, + [85961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5092), 1, - anon_sym_RBRACE, - ACTIONS(6248), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_LBRACE, + ACTIONS(6236), 1, + anon_sym_SEMI, + STATE(1108), 1, + sym_declaration_list, STATE(2912), 2, sym_line_comment, sym_block_comment, - [86053] = 6, + [85981] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5092), 1, - anon_sym_RBRACE, - ACTIONS(6248), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_LBRACE, + ACTIONS(6238), 1, + anon_sym_SEMI, + STATE(1268), 1, + sym_declaration_list, STATE(2913), 2, sym_line_comment, sym_block_comment, - [86073] = 6, + [86001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4827), 1, - anon_sym_GT, - ACTIONS(6250), 1, + ACTIONS(6242), 1, + anon_sym_COLON, + ACTIONS(6240), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, STATE(2914), 2, sym_line_comment, sym_block_comment, - [86093] = 6, + [86019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6252), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6244), 1, anon_sym_SEMI, - STATE(1258), 1, - sym_declaration_list, + ACTIONS(6246), 1, + anon_sym_EQ, STATE(2915), 2, sym_line_comment, sym_block_comment, - [86113] = 6, + [86039] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6254), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6248), 1, anon_sym_SEMI, - STATE(1264), 1, - sym_declaration_list, + ACTIONS(6250), 1, + anon_sym_EQ, STATE(2916), 2, sym_line_comment, sym_block_comment, - [86133] = 5, + [86059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6258), 1, - anon_sym_COLON, - ACTIONS(6256), 2, + ACTIONS(6252), 1, anon_sym_RBRACE, + ACTIONS(6254), 1, anon_sym_COMMA, + STATE(3064), 1, + aux_sym_struct_pattern_repeat1, STATE(2917), 2, sym_line_comment, sym_block_comment, - [86151] = 6, + [86079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6260), 1, - anon_sym_SEMI, - ACTIONS(6262), 1, - anon_sym_EQ, + ACTIONS(5039), 1, + anon_sym_RBRACE, + ACTIONS(6256), 1, + anon_sym_COMMA, + STATE(3017), 1, + aux_sym_field_declaration_list_repeat1, STATE(2918), 2, sym_line_comment, sym_block_comment, - [86171] = 6, + [86099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, + ACTIONS(5039), 1, anon_sym_RBRACE, - ACTIONS(6264), 1, + ACTIONS(6256), 1, anon_sym_COMMA, - STATE(2949), 1, + STATE(2947), 1, aux_sym_field_declaration_list_repeat1, STATE(2919), 2, sym_line_comment, sym_block_comment, - [86191] = 6, + [86119] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(6264), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(6258), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, STATE(2920), 2, sym_line_comment, sym_block_comment, - [86211] = 4, + [86139] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6260), 1, + anon_sym_SEMI, + STATE(1280), 1, + sym_declaration_list, STATE(2921), 2, sym_line_comment, sym_block_comment, - ACTIONS(6266), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86227] = 6, + [86159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6268), 1, - anon_sym_SEMI, - STATE(1419), 1, - sym_declaration_list, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5094), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, STATE(2922), 2, sym_line_comment, sym_block_comment, - [86247] = 5, + [86179] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6270), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6262), 1, + anon_sym_SEMI, + ACTIONS(6264), 1, + anon_sym_EQ, STATE(2923), 2, sym_line_comment, sym_block_comment, - [86265] = 4, + [86199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6266), 1, + anon_sym_SEMI, + STATE(3522), 1, + sym_where_clause, STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(6272), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86281] = 6, + [86219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(6274), 1, - anon_sym_SEMI, - ACTIONS(6276), 1, - anon_sym_EQ, + ACTIONS(6268), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2925), 2, sym_line_comment, sym_block_comment, - [86301] = 6, + [86237] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6278), 1, - anon_sym_SEMI, - STATE(3486), 1, - sym_where_clause, + ACTIONS(953), 1, + anon_sym_RPAREN, + ACTIONS(6270), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(2926), 2, sym_line_comment, sym_block_comment, - [86321] = 6, + [86257] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(6280), 1, - anon_sym_COLON_COLON, - STATE(1832), 1, - sym_field_initializer_list, + ACTIONS(1005), 1, + anon_sym_RBRACK, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(2927), 2, sym_line_comment, sym_block_comment, - [86341] = 5, + [86277] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(6282), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6272), 1, + anon_sym_SEMI, + STATE(699), 1, + sym_declaration_list, STATE(2928), 2, sym_line_comment, sym_block_comment, - [86359] = 6, + [86297] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RPAREN, - ACTIONS(6284), 1, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6274), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(2929), 2, sym_line_comment, sym_block_comment, - [86379] = 6, + [86317] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6286), 1, - anon_sym_SEMI, - STATE(3755), 1, - sym_where_clause, + ACTIONS(1643), 1, + anon_sym_GT, + ACTIONS(6276), 1, + anon_sym_COMMA, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(2930), 2, sym_line_comment, sym_block_comment, - [86399] = 6, + [86337] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1613), 1, - anon_sym_GT, - ACTIONS(6288), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6278), 1, + anon_sym_SEMI, + STATE(3514), 1, + sym_where_clause, STATE(2931), 2, sym_line_comment, sym_block_comment, - [86419] = 4, + [86357] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6280), 1, + anon_sym_SEMI, + STATE(3565), 1, + sym_where_clause, STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 3, - anon_sym_EQ_GT, + [86377] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [86435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6282), 1, + anon_sym_move, + STATE(232), 1, + sym_closure_parameters, STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86451] = 6, + [86397] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6290), 1, - anon_sym_EQ, - STATE(3511), 1, - sym_where_clause, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(6284), 1, + anon_sym_COMMA, + STATE(3027), 1, + aux_sym_parameters_repeat1, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86471] = 6, + [86417] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, + ACTIONS(6286), 1, anon_sym_RPAREN, - ACTIONS(6292), 1, + ACTIONS(6288), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + STATE(2993), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2935), 2, sym_line_comment, sym_block_comment, - [86491] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [86437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6294), 1, - anon_sym_move, - STATE(237), 1, - sym_closure_parameters, STATE(2936), 2, sym_line_comment, sym_block_comment, - [86511] = 4, + ACTIONS(6290), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2937), 2, + ACTIONS(5684), 1, + anon_sym_GT, + ACTIONS(6292), 1, + anon_sym_COMMA, + STATE(2937), 3, sym_line_comment, sym_block_comment, - ACTIONS(4971), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86527] = 6, + aux_sym_type_arguments_repeat1, + [86471] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5126), 1, + ACTIONS(5045), 1, anon_sym_RBRACE, - ACTIONS(6296), 1, + ACTIONS(6295), 1, anon_sym_COMMA, - STATE(3134), 1, + STATE(3151), 1, aux_sym_enum_variant_list_repeat2, STATE(2938), 2, sym_line_comment, sym_block_comment, - [86547] = 6, + [86491] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6298), 1, + ACTIONS(6297), 1, anon_sym_SEMI, - STATE(1308), 1, + STATE(1312), 1, sym_declaration_list, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86567] = 6, + [86511] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6300), 1, + ACTIONS(6299), 1, anon_sym_SEMI, - STATE(1310), 1, + STATE(1314), 1, sym_declaration_list, STATE(2940), 2, sym_line_comment, sym_block_comment, - [86587] = 5, + [86531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(6301), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2941), 3, + STATE(2941), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [86605] = 6, + [86549] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, ACTIONS(6305), 1, anon_sym_SEMI, - STATE(1316), 1, + STATE(1320), 1, sym_declaration_list, STATE(2942), 2, sym_line_comment, sym_block_comment, - [86625] = 6, + [86569] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, ACTIONS(6307), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(1322), 1, sym_declaration_list, STATE(2943), 2, sym_line_comment, sym_block_comment, - [86645] = 4, + [86589] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6309), 1, + anon_sym_SEMI, + ACTIONS(6311), 1, + anon_sym_EQ, STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86661] = 6, + [86609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6309), 1, - anon_sym_SEMI, - ACTIONS(6311), 1, - anon_sym_EQ, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86681] = 4, + ACTIONS(4993), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86625] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -186024,39 +186569,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 3, + ACTIONS(5019), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86697] = 6, + [86641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5047), 1, + anon_sym_RBRACE, + ACTIONS(6313), 1, + anon_sym_COMMA, + STATE(3017), 1, + aux_sym_field_declaration_list_repeat1, STATE(2947), 2, sym_line_comment, sym_block_comment, - [86717] = 6, + [86661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, - anon_sym_RBRACE, - ACTIONS(6313), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, STATE(2948), 2, sym_line_comment, sym_block_comment, - [86737] = 5, + ACTIONS(4949), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -186065,11 +186608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(6317), 1, anon_sym_COMMA, - STATE(2949), 3, + STATE(2850), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2949), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86755] = 4, + [86697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -186077,25 +186621,23 @@ static const uint16_t ts_small_parse_table[] = { STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, + ACTIONS(4977), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86771] = 6, + [86713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_RBRACE, - ACTIONS(6320), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, STATE(2951), 2, sym_line_comment, sym_block_comment, - [86791] = 4, + ACTIONS(4941), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86729] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -186103,38 +186645,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(2952), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86807] = 6, + ACTIONS(4933), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86745] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6322), 1, - anon_sym_SEMI, - STATE(3713), 1, - sym_where_clause, STATE(2953), 2, sym_line_comment, sym_block_comment, - [86827] = 5, + ACTIONS(5031), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86761] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 1, - anon_sym_RBRACE, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(2954), 3, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6319), 1, + anon_sym_EQ, + STATE(3499), 1, + sym_where_clause, + STATE(2954), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [86845] = 4, + [86781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -186142,354 +186683,343 @@ static const uint16_t ts_small_parse_table[] = { STATE(2955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 3, + ACTIONS(4947), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86861] = 6, + [86797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6329), 1, - anon_sym_SEMI, - STATE(1358), 1, - sym_declaration_list, STATE(2956), 2, sym_line_comment, sym_block_comment, - [86881] = 6, + ACTIONS(4965), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86813] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6321), 1, anon_sym_SEMI, - STATE(1360), 1, + STATE(1362), 1, sym_declaration_list, STATE(2957), 2, sym_line_comment, sym_block_comment, - [86901] = 4, + [86833] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6323), 1, + anon_sym_SEMI, + STATE(1364), 1, + sym_declaration_list, STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(6333), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86917] = 6, + [86853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6335), 1, - anon_sym_SEMI, - STATE(1367), 1, - sym_declaration_list, STATE(2959), 2, sym_line_comment, sym_block_comment, - [86937] = 6, + ACTIONS(4967), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6337), 1, - anon_sym_SEMI, - STATE(1369), 1, - sym_declaration_list, STATE(2960), 2, sym_line_comment, sym_block_comment, - [86957] = 6, + ACTIONS(6325), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6339), 1, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6327), 1, anon_sym_SEMI, - ACTIONS(6341), 1, - anon_sym_EQ, + STATE(1371), 1, + sym_declaration_list, STATE(2961), 2, sym_line_comment, sym_block_comment, - [86977] = 6, + [86905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6343), 1, + ACTIONS(6329), 1, anon_sym_SEMI, - STATE(1375), 1, + STATE(1373), 1, sym_declaration_list, STATE(2962), 2, sym_line_comment, sym_block_comment, - [86997] = 6, + [86925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6345), 1, - anon_sym_SEMI, - STATE(1377), 1, - sym_declaration_list, STATE(2963), 2, sym_line_comment, sym_block_comment, - [87017] = 6, + ACTIONS(4867), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6347), 1, + ACTIONS(6331), 1, anon_sym_SEMI, - STATE(741), 1, + STATE(1379), 1, sym_declaration_list, STATE(2964), 2, sym_line_comment, sym_block_comment, - [87037] = 6, + [86961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6349), 1, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6333), 1, anon_sym_SEMI, - ACTIONS(6351), 1, - anon_sym_EQ, + STATE(1381), 1, + sym_declaration_list, STATE(2965), 2, sym_line_comment, sym_block_comment, - [87057] = 6, + [86981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6335), 2, anon_sym_RBRACE, - ACTIONS(6160), 1, anon_sym_COMMA, - STATE(2951), 1, - aux_sym_field_declaration_list_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - [87077] = 6, + [86999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6353), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_declaration_list, STATE(2967), 2, sym_line_comment, sym_block_comment, - [87097] = 6, + ACTIONS(4969), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87015] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6355), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6337), 1, anon_sym_SEMI, - STATE(1397), 1, - sym_declaration_list, + ACTIONS(6339), 1, + anon_sym_EQ, STATE(2968), 2, sym_line_comment, sym_block_comment, - [87117] = 5, + [87035] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 1, - anon_sym_RBRACE, - ACTIONS(6359), 1, + ACTIONS(1822), 1, + anon_sym_RPAREN, + ACTIONS(6341), 1, anon_sym_COMMA, - STATE(2969), 3, + STATE(3041), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2969), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87135] = 6, + [87055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_declaration_list, + ACTIONS(5620), 1, + anon_sym_COLON, + ACTIONS(6343), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2970), 2, sym_line_comment, sym_block_comment, - [87155] = 6, + [87073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6364), 1, - anon_sym_RPAREN, - ACTIONS(6366), 1, - anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, STATE(2971), 2, sym_line_comment, sym_block_comment, - [87175] = 5, + ACTIONS(6345), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [87089] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6368), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, + anon_sym_SEMI, + STATE(1399), 1, + sym_declaration_list, STATE(2972), 2, sym_line_comment, sym_block_comment, - [87193] = 5, + [87109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6370), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6349), 1, + anon_sym_SEMI, + STATE(1401), 1, + sym_declaration_list, STATE(2973), 2, sym_line_comment, sym_block_comment, - [87211] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [87129] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_move, - STATE(252), 1, - sym_closure_parameters, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6351), 1, + anon_sym_SEMI, + STATE(3592), 1, + sym_where_clause, STATE(2974), 2, sym_line_comment, sym_block_comment, - [87231] = 6, + [87149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6353), 2, anon_sym_RPAREN, - ACTIONS(4298), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, STATE(2975), 2, sym_line_comment, sym_block_comment, - [87251] = 5, + [87167] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6355), 1, + anon_sym_SEMI, + STATE(3509), 1, + sym_where_clause, STATE(2976), 2, sym_line_comment, sym_block_comment, - [87269] = 6, + [87187] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6374), 1, - anon_sym_GT, - ACTIONS(6376), 1, - anon_sym_COMMA, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(6357), 1, + anon_sym_move, + STATE(221), 1, + sym_closure_parameters, STATE(2977), 2, sym_line_comment, sym_block_comment, - [87289] = 6, + [87207] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, STATE(2978), 2, sym_line_comment, sym_block_comment, - [87309] = 6, + ACTIONS(6359), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87223] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(925), 1, anon_sym_RPAREN, - ACTIONS(6378), 1, + ACTIONS(4316), 1, anon_sym_COMMA, - STATE(2590), 1, + STATE(2627), 1, aux_sym_arguments_repeat1, STATE(2979), 2, sym_line_comment, sym_block_comment, - [87329] = 5, + [87243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(6380), 2, - anon_sym_RPAREN, + ACTIONS(6343), 1, + anon_sym_PIPE, + ACTIONS(6361), 1, anon_sym_COMMA, - STATE(2980), 2, + STATE(2980), 3, sym_line_comment, sym_block_comment, - [87347] = 4, + aux_sym_closure_parameters_repeat1, + [87261] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -186497,883 +187027,882 @@ static const uint16_t ts_small_parse_table[] = { STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87363] = 6, + ACTIONS(6364), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, + ACTIONS(6366), 1, anon_sym_RBRACE, - ACTIONS(6384), 1, + ACTIONS(6368), 1, anon_sym_COMMA, - STATE(3069), 1, - aux_sym_struct_pattern_repeat1, - STATE(2982), 2, + STATE(2982), 3, sym_line_comment, sym_block_comment, - [87383] = 5, + aux_sym_struct_pattern_repeat1, + [87295] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4188), 1, + anon_sym_LBRACE, + ACTIONS(6371), 1, + anon_sym_COLON_COLON, + STATE(1718), 1, + sym_field_initializer_list, STATE(2983), 2, sym_line_comment, sym_block_comment, - [87401] = 6, + [87315] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6373), 1, + anon_sym_move, + STATE(253), 1, + sym_closure_parameters, STATE(2984), 2, sym_line_comment, sym_block_comment, - [87421] = 6, + [87335] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6388), 1, - anon_sym_SEMI, - STATE(1139), 1, - sym_declaration_list, + ACTIONS(3142), 1, + anon_sym_RBRACK, + ACTIONS(6375), 1, + anon_sym_COMMA, + STATE(2756), 1, + aux_sym_slice_pattern_repeat1, STATE(2985), 2, sym_line_comment, sym_block_comment, - [87441] = 6, + [87355] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, STATE(2986), 2, sym_line_comment, sym_block_comment, - [87461] = 6, + ACTIONS(999), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [87371] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6390), 1, - anon_sym_SEMI, - ACTIONS(6392), 1, - anon_sym_RBRACK, + ACTIONS(995), 1, + anon_sym_RPAREN, + ACTIONS(6377), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(2987), 2, sym_line_comment, sym_block_comment, - [87481] = 6, + [87391] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym_type_arguments, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6379), 1, + anon_sym_SEMI, + ACTIONS(6381), 1, + anon_sym_RBRACK, STATE(2988), 2, sym_line_comment, sym_block_comment, - [87501] = 4, + [87411] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5480), 1, + anon_sym_GT, + ACTIONS(5482), 1, + anon_sym_COMMA, + STATE(3107), 1, + aux_sym_type_parameters_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - ACTIONS(6394), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87517] = 4, + [87431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(5118), 1, + anon_sym_COLON_COLON, + STATE(1129), 1, + sym_type_arguments, STATE(2990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87533] = 6, + [87451] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6396), 1, - anon_sym_SEMI, - ACTIONS(6398), 1, - anon_sym_EQ, STATE(2991), 2, sym_line_comment, sym_block_comment, - [87553] = 5, + ACTIONS(6383), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5942), 2, - anon_sym_RPAREN, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6385), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2992), 2, sym_line_comment, sym_block_comment, - [87571] = 6, + [87485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3274), 1, + ACTIONS(6387), 1, anon_sym_RPAREN, - ACTIONS(6400), 1, + ACTIONS(6389), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(2993), 2, + STATE(2993), 3, sym_line_comment, sym_block_comment, - [87591] = 5, + aux_sym_ordered_field_declaration_list_repeat1, + [87503] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6402), 2, + ACTIONS(3292), 1, anon_sym_RPAREN, + ACTIONS(6392), 1, anon_sym_COMMA, + STATE(3070), 1, + aux_sym_tuple_type_repeat1, STATE(2994), 2, sym_line_comment, sym_block_comment, - [87609] = 6, + [87523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, + ACTIONS(5716), 1, anon_sym_RPAREN, - ACTIONS(5690), 1, + ACTIONS(5718), 1, anon_sym_COMMA, - STATE(3005), 1, + STATE(3004), 1, aux_sym_parameters_repeat1, STATE(2995), 2, sym_line_comment, sym_block_comment, - [87629] = 6, + [87543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6404), 1, + ACTIONS(6394), 1, anon_sym_GT, - ACTIONS(6406), 1, + ACTIONS(6396), 1, anon_sym_COMMA, STATE(3007), 1, aux_sym_use_bounds_repeat1, STATE(2996), 2, sym_line_comment, sym_block_comment, - [87649] = 6, + [87563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, + ACTIONS(6398), 1, anon_sym_GT, - ACTIONS(6410), 1, + ACTIONS(6400), 1, anon_sym_COMMA, STATE(3008), 1, aux_sym_use_bounds_repeat1, STATE(2997), 2, sym_line_comment, sym_block_comment, - [87669] = 6, + [87583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, - anon_sym_RPAREN, - ACTIONS(6414), 1, + ACTIONS(6402), 1, + anon_sym_RBRACE, + ACTIONS(6404), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2998), 2, + STATE(2998), 3, sym_line_comment, sym_block_comment, - [87689] = 5, + aux_sym_use_list_repeat1, + [87601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 1, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, + ACTIONS(6407), 2, anon_sym_RPAREN, - ACTIONS(6416), 1, anon_sym_COMMA, - STATE(2999), 3, + STATE(2999), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [87707] = 6, + [87619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - STATE(3278), 1, - sym_lifetime, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5942), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3000), 2, sym_line_comment, sym_block_comment, - [87727] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [87637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6419), 1, - anon_sym_move, - STATE(238), 1, - sym_closure_parameters, STATE(3001), 2, sym_line_comment, sym_block_comment, - [87747] = 6, + ACTIONS(5021), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87653] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1641), 1, anon_sym_GT, - ACTIONS(6421), 1, + ACTIONS(6409), 1, anon_sym_COMMA, - STATE(3009), 1, + STATE(3010), 1, aux_sym_type_arguments_repeat1, STATE(3002), 2, sym_line_comment, sym_block_comment, - [87767] = 6, + [87673] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1641), 1, anon_sym_GT, - ACTIONS(6421), 1, + ACTIONS(6409), 1, anon_sym_COMMA, - STATE(2894), 1, + STATE(2937), 1, aux_sym_type_arguments_repeat1, STATE(3003), 2, sym_line_comment, sym_block_comment, - [87787] = 5, + [87693] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - anon_sym_RBRACE, - ACTIONS(6425), 1, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(5720), 1, anon_sym_COMMA, - STATE(3004), 3, + STATE(3027), 1, + aux_sym_parameters_repeat1, + STATE(3004), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87805] = 6, + [87713] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + ACTIONS(1363), 1, anon_sym_RPAREN, - ACTIONS(5700), 1, + ACTIONS(5720), 1, anon_sym_COMMA, - STATE(2999), 1, + STATE(3011), 1, aux_sym_parameters_repeat1, STATE(3005), 2, sym_line_comment, sym_block_comment, - [87825] = 6, + [87733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6411), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, STATE(3006), 2, sym_line_comment, sym_block_comment, - [87845] = 6, + [87751] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5962), 1, + ACTIONS(5948), 1, anon_sym_GT, - ACTIONS(6428), 1, + ACTIONS(6413), 1, anon_sym_COMMA, - STATE(3063), 1, + STATE(3105), 1, aux_sym_use_bounds_repeat1, STATE(3007), 2, sym_line_comment, sym_block_comment, - [87865] = 6, + [87771] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5964), 1, + ACTIONS(5950), 1, anon_sym_GT, - ACTIONS(6430), 1, + ACTIONS(6415), 1, anon_sym_COMMA, - STATE(3063), 1, + STATE(3105), 1, aux_sym_use_bounds_repeat1, STATE(3008), 2, sym_line_comment, sym_block_comment, - [87885] = 6, + [87791] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_GT, - ACTIONS(6432), 1, + ACTIONS(6417), 1, + anon_sym_RBRACE, + ACTIONS(6419), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + STATE(3067), 1, + aux_sym_struct_pattern_repeat1, STATE(3009), 2, sym_line_comment, sym_block_comment, - [87905] = 6, + [87811] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, - sym_identifier, - ACTIONS(6436), 1, - anon_sym_await, - ACTIONS(6438), 1, - sym_integer_literal, + ACTIONS(1617), 1, + anon_sym_GT, + ACTIONS(6421), 1, + anon_sym_COMMA, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(3010), 2, sym_line_comment, sym_block_comment, - [87925] = 6, + [87831] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3270), 1, + ACTIONS(1359), 1, anon_sym_RPAREN, - ACTIONS(6440), 1, + ACTIONS(6423), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + STATE(3027), 1, + aux_sym_parameters_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - [87945] = 4, + [87851] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6425), 1, + anon_sym_SEMI, + STATE(514), 1, + sym_declaration_list, STATE(3012), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, - anon_sym_EQ_GT, + [87871] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [87961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6442), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(6427), 1, + anon_sym_move, + STATE(237), 1, + sym_closure_parameters, STATE(3013), 2, sym_line_comment, sym_block_comment, - [87981] = 6, + [87891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4440), 1, - anon_sym_RBRACE, - ACTIONS(6444), 1, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, + ACTIONS(5434), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2969), 1, - aux_sym_use_list_repeat1, STATE(3014), 2, sym_line_comment, sym_block_comment, - [88001] = 6, + [87909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1349), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6429), 2, anon_sym_RPAREN, - ACTIONS(6446), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, STATE(3015), 2, sym_line_comment, sym_block_comment, - [88021] = 6, + [87927] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6448), 1, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6431), 1, anon_sym_SEMI, - STATE(3504), 1, - sym_where_clause, + STATE(1145), 1, + sym_declaration_list, STATE(3016), 2, sym_line_comment, sym_block_comment, - [88041] = 6, + [87947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(4256), 1, + ACTIONS(6433), 1, + anon_sym_RBRACE, + ACTIONS(6435), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3017), 2, + STATE(3017), 3, sym_line_comment, sym_block_comment, - [88061] = 6, + aux_sym_field_declaration_list_repeat1, + [87965] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6450), 1, - anon_sym_SEMI, - STATE(714), 1, - sym_declaration_list, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(4312), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(3018), 2, sym_line_comment, sym_block_comment, - [88081] = 4, + [87985] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5128), 1, + anon_sym_RBRACE, + ACTIONS(6438), 1, + anon_sym_COMMA, + STATE(3017), 1, + aux_sym_field_declaration_list_repeat1, STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(6452), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88097] = 6, + [88005] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RPAREN, - ACTIONS(5822), 1, - anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4169), 1, + anon_sym_LT2, + ACTIONS(5065), 1, + anon_sym_COLON_COLON, + STATE(1690), 1, + sym_type_arguments, STATE(3020), 2, sym_line_comment, sym_block_comment, - [88117] = 6, + [88025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, - STATE(1643), 1, - sym_type_arguments, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6440), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3021), 2, sym_line_comment, sym_block_comment, - [88137] = 6, + [88043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(6454), 1, - anon_sym_GT, - ACTIONS(6456), 1, - anon_sym_as, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6442), 1, + anon_sym_SEMI, + STATE(516), 1, + sym_declaration_list, STATE(3022), 2, sym_line_comment, sym_block_comment, - [88157] = 6, + [88063] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3014), 1, - aux_sym_use_list_repeat1, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(5832), 1, + sym_identifier, + STATE(3332), 1, + sym_lifetime, STATE(3023), 2, sym_line_comment, sym_block_comment, - [88177] = 6, + [88083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6462), 1, - anon_sym_COMMA, - STATE(3028), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6444), 1, + anon_sym_SEMI, + STATE(506), 1, + sym_declaration_list, STATE(3024), 2, sym_line_comment, sym_block_comment, - [88197] = 6, + [88103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6462), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(5976), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, STATE(3025), 2, sym_line_comment, sym_block_comment, - [88217] = 4, + [88121] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5106), 1, + anon_sym_RBRACE, + ACTIONS(6118), 1, + anon_sym_COMMA, + STATE(3019), 1, + aux_sym_field_declaration_list_repeat1, STATE(3026), 2, sym_line_comment, sym_block_comment, - ACTIONS(6464), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88233] = 4, + [88141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3027), 2, + ACTIONS(5976), 1, + anon_sym_RPAREN, + ACTIONS(6446), 1, + anon_sym_COMMA, + STATE(3027), 3, sym_line_comment, sym_block_comment, - ACTIONS(6466), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88249] = 6, + aux_sym_parameters_repeat1, + [88159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, + ACTIONS(1657), 1, anon_sym_GT, - ACTIONS(6468), 1, + ACTIONS(6449), 1, anon_sym_COMMA, - STATE(2894), 1, + STATE(3030), 1, aux_sym_type_arguments_repeat1, STATE(3028), 2, sym_line_comment, sym_block_comment, - [88269] = 6, + [88179] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6470), 1, + ACTIONS(1657), 1, anon_sym_GT, - STATE(3234), 1, - sym_lifetime, + ACTIONS(6449), 1, + anon_sym_COMMA, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(3029), 2, sym_line_comment, sym_block_comment, - [88289] = 6, + [88199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(6472), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, + ACTIONS(1653), 1, + anon_sym_GT, + ACTIONS(6451), 1, + anon_sym_COMMA, + STATE(2937), 1, + aux_sym_type_arguments_repeat1, STATE(3030), 2, sym_line_comment, sym_block_comment, - [88309] = 6, + [88219] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, + ACTIONS(5842), 1, + anon_sym_RPAREN, + ACTIONS(5844), 1, anon_sym_COMMA, - STATE(3129), 1, - aux_sym_type_parameters_repeat1, + STATE(2969), 1, + aux_sym_tuple_pattern_repeat1, STATE(3031), 2, sym_line_comment, sym_block_comment, - [88329] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88239] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, - anon_sym_move, - STATE(229), 1, - sym_closure_parameters, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(6453), 1, + anon_sym_GT, + ACTIONS(6455), 1, + anon_sym_as, STATE(3032), 2, sym_line_comment, sym_block_comment, - [88349] = 5, + [88259] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 1, - anon_sym_GT, - ACTIONS(6478), 1, - anon_sym_COMMA, - STATE(3033), 3, + ACTIONS(6457), 1, + anon_sym_move, + STATE(235), 1, + sym_closure_parameters, + STATE(3033), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [88367] = 6, + [88279] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_GT, - ACTIONS(5492), 1, + ACTIONS(1371), 1, + anon_sym_RPAREN, + ACTIONS(6459), 1, anon_sym_COMMA, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, + STATE(3027), 1, + aux_sym_parameters_repeat1, STATE(3034), 2, sym_line_comment, sym_block_comment, - [88387] = 4, + [88299] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6461), 1, + sym_identifier, + ACTIONS(6463), 1, + anon_sym_await, + ACTIONS(6465), 1, + sym_integer_literal, STATE(3035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88403] = 6, + [88319] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6481), 1, - anon_sym_SEMI, - ACTIONS(6483), 1, - anon_sym_EQ, STATE(3036), 2, sym_line_comment, sym_block_comment, - [88423] = 4, + ACTIONS(6467), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88335] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(949), 1, + anon_sym_RBRACK, + ACTIONS(6469), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(3037), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88439] = 6, + [88355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, - sym_identifier, - ACTIONS(6487), 1, - anon_sym_await, - ACTIONS(6489), 1, - sym_integer_literal, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6471), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88459] = 6, + [88373] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_RBRACK, - ACTIONS(6491), 1, + ACTIONS(6473), 1, + anon_sym_RBRACE, + ACTIONS(6475), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(2856), 1, + aux_sym_use_list_repeat1, STATE(3039), 2, sym_line_comment, sym_block_comment, - [88479] = 5, + [88393] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6493), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6477), 1, + sym_identifier, + ACTIONS(6479), 1, + anon_sym_await, + ACTIONS(6481), 1, + sym_integer_literal, STATE(3040), 2, sym_line_comment, sym_block_comment, - [88497] = 5, + [88413] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, + ACTIONS(6471), 1, anon_sym_RPAREN, - ACTIONS(6495), 1, + ACTIONS(6483), 1, anon_sym_COMMA, STATE(3041), 3, sym_line_comment, sym_block_comment, aux_sym_tuple_pattern_repeat1, - [88515] = 6, + [88431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6498), 1, - anon_sym_SEMI, - STATE(506), 1, - sym_declaration_list, + ACTIONS(6486), 1, + anon_sym_GT, + ACTIONS(6488), 1, + anon_sym_COMMA, + STATE(3085), 1, + aux_sym_for_lifetimes_repeat1, STATE(3042), 2, sym_line_comment, sym_block_comment, - [88535] = 6, + [88451] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6500), 1, - anon_sym_SEMI, - ACTIONS(6502), 1, - anon_sym_RBRACK, STATE(3043), 2, sym_line_comment, sym_block_comment, - [88555] = 6, + ACTIONS(6490), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88467] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6504), 1, - anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, + ACTIONS(939), 1, + anon_sym_RBRACK, + ACTIONS(4246), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(3044), 2, sym_line_comment, sym_block_comment, - [88575] = 6, + [88487] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(6506), 1, - anon_sym_for, - STATE(2008), 1, + ACTIONS(5035), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, sym_type_arguments, STATE(3045), 2, sym_line_comment, sym_block_comment, - [88595] = 4, + [88507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -187381,537 +187910,543 @@ static const uint16_t ts_small_parse_table[] = { STATE(3046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88611] = 4, + ACTIONS(6492), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1647), 1, + anon_sym_GT, + ACTIONS(6494), 1, + anon_sym_COMMA, + STATE(2929), 1, + aux_sym_type_arguments_repeat1, STATE(3047), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88627] = 6, + [88543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, + ACTIONS(1647), 1, anon_sym_GT, - ACTIONS(6508), 1, + ACTIONS(6494), 1, anon_sym_COMMA, - STATE(2889), 1, + STATE(2937), 1, aux_sym_type_arguments_repeat1, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88647] = 6, + [88563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_GT, - ACTIONS(6512), 1, + ACTIONS(6058), 1, + anon_sym_RPAREN, + ACTIONS(6060), 1, anon_sym_COMMA, - STATE(3096), 1, - aux_sym_use_bounds_repeat1, + STATE(2852), 1, + aux_sym_tuple_pattern_repeat1, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88667] = 6, + [88583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, + ACTIONS(6496), 1, anon_sym_GT, - ACTIONS(6508), 1, + ACTIONS(6498), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, + STATE(3088), 1, + aux_sym_use_bounds_repeat1, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88687] = 6, + [88603] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, + ACTIONS(6500), 1, anon_sym_GT, - ACTIONS(6516), 1, + ACTIONS(6502), 1, anon_sym_COMMA, - STATE(3098), 1, + STATE(3090), 1, aux_sym_use_bounds_repeat1, STATE(3051), 2, sym_line_comment, sym_block_comment, - [88707] = 6, + [88623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6504), 1, + anon_sym_SEMI, + STATE(556), 1, + sym_declaration_list, STATE(3052), 2, sym_line_comment, sym_block_comment, - [88727] = 5, + [88643] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6520), 2, + ACTIONS(3114), 1, anon_sym_RPAREN, + ACTIONS(6506), 1, anon_sym_COMMA, + STATE(2756), 1, + aux_sym_slice_pattern_repeat1, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88745] = 6, + [88663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3138), 1, - anon_sym_RPAREN, - ACTIONS(6522), 1, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6508), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, STATE(3054), 2, sym_line_comment, sym_block_comment, - [88765] = 5, + [88681] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6526), 1, - anon_sym_COLON, - ACTIONS(6524), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6512), 1, + anon_sym_SEMI, + STATE(558), 1, + sym_declaration_list, STATE(3055), 2, sym_line_comment, sym_block_comment, - [88783] = 4, + [88701] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(6514), 1, + anon_sym_GT, + STATE(3304), 1, + sym_lifetime, STATE(3056), 2, sym_line_comment, sym_block_comment, - ACTIONS(6528), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88799] = 6, + [88721] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5374), 1, - anon_sym_RBRACE, - ACTIONS(6530), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(6516), 1, + anon_sym_COLON_COLON, + STATE(1523), 1, + sym_field_initializer_list, STATE(3057), 2, sym_line_comment, sym_block_comment, - [88819] = 6, + [88741] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, anon_sym_LBRACE, - ACTIONS(6532), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, STATE(3058), 2, sym_line_comment, sym_block_comment, - [88839] = 5, + [88761] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - anon_sym_COLON, - ACTIONS(6534), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6524), 1, + anon_sym_LPAREN, + ACTIONS(6526), 1, + anon_sym_LBRACK, + ACTIONS(6528), 1, + anon_sym_LBRACE, STATE(3059), 2, sym_line_comment, sym_block_comment, - [88857] = 6, + [88781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6538), 1, - anon_sym_LPAREN, - ACTIONS(6540), 1, - anon_sym_LBRACK, - ACTIONS(6542), 1, - anon_sym_LBRACE, - STATE(3060), 2, + ACTIONS(6530), 1, + anon_sym_GT, + ACTIONS(6532), 1, + anon_sym_COMMA, + STATE(3060), 3, sym_line_comment, sym_block_comment, - [88877] = 6, + aux_sym_for_lifetimes_repeat1, + [88799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6544), 1, - anon_sym_LPAREN, - ACTIONS(6546), 1, - anon_sym_LBRACK, - ACTIONS(6548), 1, - anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6535), 1, + anon_sym_SEMI, + STATE(3489), 1, + sym_where_clause, STATE(3061), 2, sym_line_comment, sym_block_comment, - [88897] = 6, + [88819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, + ACTIONS(6537), 1, anon_sym_RBRACE, - ACTIONS(6552), 1, + ACTIONS(6539), 1, anon_sym_COMMA, - STATE(2892), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3062), 2, + STATE(3062), 3, sym_line_comment, sym_block_comment, - [88917] = 5, + aux_sym_field_initializer_list_repeat1, + [88837] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_GT, - ACTIONS(6556), 1, - anon_sym_COMMA, - STATE(3063), 3, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(6542), 1, + anon_sym_LBRACE, + STATE(2007), 1, + sym_type_arguments, + STATE(3063), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [88935] = 6, + [88857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6559), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5310), 1, + anon_sym_RBRACE, + ACTIONS(6544), 1, + anon_sym_COMMA, + STATE(2982), 1, + aux_sym_struct_pattern_repeat1, STATE(3064), 2, sym_line_comment, sym_block_comment, - [88955] = 4, + [88877] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6546), 1, + anon_sym_SEMI, + STATE(594), 1, + sym_declaration_list, STATE(3065), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88971] = 6, + [88897] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(3118), 1, + anon_sym_RPAREN, + ACTIONS(6548), 1, anon_sym_COMMA, - ACTIONS(6561), 1, - anon_sym_PIPE, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, + STATE(2756), 1, + aux_sym_slice_pattern_repeat1, STATE(3066), 2, sym_line_comment, sym_block_comment, - [88991] = 6, + [88917] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3112), 1, - anon_sym_RPAREN, - ACTIONS(6563), 1, + ACTIONS(5316), 1, + anon_sym_RBRACE, + ACTIONS(6550), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + STATE(2982), 1, + aux_sym_struct_pattern_repeat1, STATE(3067), 2, sym_line_comment, sym_block_comment, - [89011] = 6, + [88937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6552), 2, anon_sym_RPAREN, - ACTIONS(5549), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, STATE(3068), 2, sym_line_comment, sym_block_comment, - [89031] = 6, + [88955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5298), 1, - anon_sym_RBRACE, - ACTIONS(6565), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(6554), 1, + anon_sym_AMP_AMP, + ACTIONS(4506), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3069), 2, sym_line_comment, sym_block_comment, - [89051] = 5, + [88973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6567), 2, + ACTIONS(6552), 1, anon_sym_RPAREN, + ACTIONS(6556), 1, anon_sym_COMMA, - STATE(3070), 2, + STATE(3070), 3, sym_line_comment, sym_block_comment, - [89069] = 6, + aux_sym_tuple_type_repeat1, + [88991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2570), 1, - anon_sym_RPAREN, - ACTIONS(6569), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(6554), 1, + anon_sym_AMP_AMP, + ACTIONS(6559), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3071), 2, sym_line_comment, sym_block_comment, - [89089] = 5, + [89009] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6561), 1, + anon_sym_SEMI, + ACTIONS(6563), 1, + anon_sym_EQ, STATE(3072), 2, sym_line_comment, sym_block_comment, - [89107] = 5, + [89029] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(6573), 2, + ACTIONS(5043), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6565), 1, + anon_sym_SEMI, + STATE(596), 1, + sym_declaration_list, STATE(3073), 2, sym_line_comment, sym_block_comment, - [89125] = 6, + [89049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6575), 1, - anon_sym_SEMI, - ACTIONS(6577), 1, - anon_sym_EQ, + ACTIONS(6569), 1, + anon_sym_COLON, + ACTIONS(6567), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3074), 2, sym_line_comment, sym_block_comment, - [89145] = 5, + [89067] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(6579), 1, + ACTIONS(5732), 1, anon_sym_COMMA, - STATE(3075), 3, + STATE(3027), 1, + aux_sym_parameters_repeat1, + STATE(3075), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [89163] = 4, + [89087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6571), 1, + anon_sym_RBRACE, + ACTIONS(6573), 1, + anon_sym_COMMA, + STATE(2893), 1, + aux_sym_field_initializer_list_repeat1, STATE(3076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89179] = 4, + [89107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6575), 1, + anon_sym_SEMI, + ACTIONS(6577), 1, + anon_sym_RBRACK, STATE(3077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89195] = 6, + [89127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6582), 1, - anon_sym_GT, - ACTIONS(6584), 1, - anon_sym_COMMA, - STATE(2871), 1, - aux_sym_type_parameters_repeat1, STATE(3078), 2, sym_line_comment, sym_block_comment, - [89215] = 6, + ACTIONS(4927), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, STATE(3079), 2, sym_line_comment, sym_block_comment, - [89235] = 6, + ACTIONS(4989), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6586), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_declaration_list, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(5732), 1, + anon_sym_COMMA, + STATE(3034), 1, + aux_sym_parameters_repeat1, STATE(3080), 2, sym_line_comment, sym_block_comment, - [89255] = 6, + [89179] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6588), 1, - anon_sym_SEMI, - STATE(3599), 1, - sym_where_clause, + ACTIONS(6579), 1, + anon_sym_RPAREN, + ACTIONS(6581), 1, + anon_sym_COMMA, + STATE(2993), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3081), 2, sym_line_comment, sym_block_comment, - [89275] = 4, + [89199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(6583), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, + sym_type_arguments, STATE(3082), 2, sym_line_comment, sym_block_comment, - ACTIONS(6590), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89291] = 6, + [89219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - anon_sym_COMMA, - ACTIONS(6592), 1, - anon_sym_PIPE, - STATE(2941), 1, - aux_sym_closure_parameters_repeat1, STATE(3083), 2, sym_line_comment, sym_block_comment, - [89311] = 6, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89235] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + ACTIONS(6585), 1, + anon_sym_GT, + STATE(3304), 1, + sym_lifetime, STATE(3084), 2, sym_line_comment, sym_block_comment, - [89331] = 6, + [89255] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6594), 1, - anon_sym_SEMI, - STATE(3675), 1, - sym_where_clause, + ACTIONS(6585), 1, + anon_sym_GT, + ACTIONS(6587), 1, + anon_sym_COMMA, + STATE(3060), 1, + aux_sym_for_lifetimes_repeat1, STATE(3085), 2, sym_line_comment, sym_block_comment, - [89351] = 4, + [89275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -187919,79 +188454,78 @@ static const uint16_t ts_small_parse_table[] = { STATE(3086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, + ACTIONS(4935), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89367] = 6, + [89291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6596), 1, - anon_sym_SEMI, - ACTIONS(6598), 1, - anon_sym_RBRACK, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(6589), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, STATE(3087), 2, sym_line_comment, sym_block_comment, - [89387] = 6, + [89311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6600), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_declaration_list, + ACTIONS(6048), 1, + anon_sym_GT, + ACTIONS(6591), 1, + anon_sym_COMMA, + STATE(3105), 1, + aux_sym_use_bounds_repeat1, STATE(3088), 2, sym_line_comment, sym_block_comment, - [89407] = 4, + [89331] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6593), 1, + anon_sym_EQ, + ACTIONS(6595), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3089), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89423] = 6, + [89349] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6602), 1, + ACTIONS(6050), 1, anon_sym_GT, - STATE(3234), 1, - sym_lifetime, + ACTIONS(6597), 1, + anon_sym_COMMA, + STATE(3105), 1, + aux_sym_use_bounds_repeat1, STATE(3090), 2, sym_line_comment, sym_block_comment, - [89443] = 6, + [89369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6602), 1, - anon_sym_GT, - ACTIONS(6604), 1, - anon_sym_COMMA, - STATE(3033), 1, - aux_sym_for_lifetimes_repeat1, STATE(3091), 2, sym_line_comment, sym_block_comment, - [89463] = 4, + ACTIONS(5033), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -187999,11 +188533,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3092), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 3, + ACTIONS(4929), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89479] = 4, + [89401] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188011,11 +188545,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3093), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 3, + ACTIONS(5009), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89495] = 4, + [89417] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188023,80 +188557,78 @@ static const uint16_t ts_small_parse_table[] = { STATE(3094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 3, + ACTIONS(4971), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89511] = 6, + [89433] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6606), 1, - anon_sym_SEMI, - STATE(642), 1, - sym_declaration_list, + ACTIONS(6599), 1, + anon_sym_EQ_GT, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_if, STATE(3095), 2, sym_line_comment, sym_block_comment, - [89531] = 6, + [89453] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6054), 1, - anon_sym_GT, - ACTIONS(6608), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, STATE(3096), 2, sym_line_comment, sym_block_comment, - [89551] = 6, + ACTIONS(4845), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89469] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6610), 1, - anon_sym_SEMI, - STATE(3608), 1, - sym_where_clause, + ACTIONS(6605), 1, + anon_sym_GT, + ACTIONS(6607), 1, + anon_sym_COMMA, + STATE(2872), 1, + aux_sym_type_parameters_repeat1, STATE(3097), 2, sym_line_comment, sym_block_comment, - [89571] = 6, + [89489] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6056), 1, - anon_sym_GT, - ACTIONS(6612), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5092), 1, + anon_sym_LBRACE, + ACTIONS(6609), 1, + anon_sym_SEMI, + STATE(1170), 1, + sym_declaration_list, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89591] = 5, + [89509] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6614), 1, + ACTIONS(6613), 1, anon_sym_EQ, - ACTIONS(6616), 2, - anon_sym_GT, + ACTIONS(6611), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89609] = 4, + [89527] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188104,102 +188636,106 @@ static const uint16_t ts_small_parse_table[] = { STATE(3100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, + ACTIONS(4945), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89625] = 5, + [89543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6618), 2, - anon_sym_RPAREN, + ACTIONS(5120), 1, + anon_sym_RBRACE, + ACTIONS(6615), 1, anon_sym_COMMA, + STATE(3151), 1, + aux_sym_enum_variant_list_repeat2, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89643] = 4, + [89563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6617), 1, + anon_sym_RBRACE, + ACTIONS(6619), 1, + anon_sym_COMMA, + STATE(3101), 1, + aux_sym_enum_variant_list_repeat2, STATE(3102), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89659] = 4, + [89583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5120), 1, + anon_sym_RBRACE, + ACTIONS(6615), 1, + anon_sym_COMMA, + STATE(3156), 1, + aux_sym_enum_variant_list_repeat2, STATE(3103), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89675] = 6, + [89603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6620), 1, - anon_sym_SEMI, - STATE(710), 1, - sym_declaration_list, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89695] = 6, + ACTIONS(4991), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_RBRACE, - ACTIONS(6624), 1, + ACTIONS(6621), 1, + anon_sym_GT, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(3110), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3105), 2, + STATE(3105), 3, sym_line_comment, sym_block_comment, - [89715] = 6, + aux_sym_use_bounds_repeat1, + [89637] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_where, ACTIONS(6626), 1, anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, + STATE(3589), 1, + sym_where_clause, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89735] = 4, + [89657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4837), 1, + anon_sym_GT, + ACTIONS(6628), 1, + anon_sym_COMMA, + STATE(3122), 1, + aux_sym_type_parameters_repeat1, STATE(3107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89751] = 4, + [89677] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188207,6994 +188743,7007 @@ static const uint16_t ts_small_parse_table[] = { STATE(3108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 3, + ACTIONS(4987), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89767] = 5, + [89693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - anon_sym_EQ, - ACTIONS(6628), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89785] = 6, + ACTIONS(4634), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89805] = 6, + ACTIONS(4939), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89725] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6630), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3143), 1, - aux_sym_enum_variant_list_repeat2, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89825] = 6, + [89743] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, - ACTIONS(6636), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6632), 1, + anon_sym_SEMI, + STATE(3481), 1, + sym_where_clause, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89845] = 6, + [89763] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4774), 1, - anon_sym_COLON, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(985), 1, + anon_sym_RBRACK, + ACTIONS(4242), 1, + anon_sym_COMMA, + STATE(2627), 1, + aux_sym_arguments_repeat1, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89865] = 6, + [89783] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, - anon_sym_RPAREN, - ACTIONS(6640), 1, - anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6634), 1, + anon_sym_SEMI, + STATE(3562), 1, + sym_where_clause, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89885] = 6, + [89803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6642), 1, - anon_sym_EQ_GT, - ACTIONS(6644), 1, - anon_sym_PIPE, - ACTIONS(6646), 1, - anon_sym_if, STATE(3115), 2, sym_line_comment, sym_block_comment, - [89905] = 6, + ACTIONS(5001), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(6648), 1, + ACTIONS(6636), 1, anon_sym_SEMI, - STATE(1185), 1, + STATE(620), 1, sym_declaration_list, STATE(3116), 2, sym_line_comment, sym_block_comment, - [89925] = 6, + [89839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(4248), 1, + ACTIONS(6638), 1, + anon_sym_RPAREN, + ACTIONS(6640), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, + STATE(2993), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3117), 2, sym_line_comment, sym_block_comment, - [89945] = 5, + [89859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(6650), 2, - anon_sym_RBRACE, + ACTIONS(6642), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3118), 2, sym_line_comment, sym_block_comment, - [89963] = 6, + [89877] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6652), 1, - anon_sym_SEMI, - ACTIONS(6654), 1, - anon_sym_EQ, + ACTIONS(3256), 1, + anon_sym_RPAREN, + ACTIONS(6644), 1, + anon_sym_COMMA, + STATE(3070), 1, + aux_sym_tuple_type_repeat1, STATE(3119), 2, sym_line_comment, sym_block_comment, - [89983] = 6, + [89897] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - anon_sym_LPAREN, - ACTIONS(6658), 1, - anon_sym_LBRACK, - ACTIONS(6660), 1, - anon_sym_LBRACE, + ACTIONS(6646), 1, + anon_sym_RBRACE, + ACTIONS(6648), 1, + anon_sym_COMMA, + STATE(2886), 1, + aux_sym_field_initializer_list_repeat1, STATE(3120), 2, sym_line_comment, sym_block_comment, - [90003] = 5, + [89917] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3164), 1, anon_sym_PLUS, - ACTIONS(6662), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6650), 1, + anon_sym_SEMI, + ACTIONS(6652), 1, + anon_sym_EQ, STATE(3121), 2, sym_line_comment, sym_block_comment, - [90021] = 6, + [89937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, - sym_identifier, - ACTIONS(6666), 1, - anon_sym_ref, - ACTIONS(6668), 1, - sym_mutable_specifier, - STATE(3122), 2, + ACTIONS(6654), 1, + anon_sym_GT, + ACTIONS(6656), 1, + anon_sym_COMMA, + STATE(3122), 3, sym_line_comment, sym_block_comment, - [90041] = 6, + aux_sym_type_parameters_repeat1, + [89955] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4979), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(4829), 1, + anon_sym_GT, + ACTIONS(6659), 1, + anon_sym_COMMA, + STATE(3122), 1, + aux_sym_type_parameters_repeat1, STATE(3123), 2, sym_line_comment, sym_block_comment, - [90061] = 6, + [89975] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6670), 1, + ACTIONS(6661), 1, anon_sym_LPAREN, - ACTIONS(6672), 1, + ACTIONS(6663), 1, anon_sym_LBRACK, - ACTIONS(6674), 1, + ACTIONS(6665), 1, anon_sym_LBRACE, STATE(3124), 2, sym_line_comment, sym_block_comment, - [90081] = 6, + [89995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(6676), 1, - sym_identifier, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6667), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3125), 2, sym_line_comment, sym_block_comment, - [90101] = 6, + [90013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - ACTIONS(6678), 1, + ACTIONS(6669), 1, anon_sym_SEMI, - STATE(517), 1, + STATE(1191), 1, sym_declaration_list, STATE(3126), 2, sym_line_comment, sym_block_comment, - [90121] = 6, + [90033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6680), 1, - anon_sym_SEMI, - STATE(565), 1, - sym_declaration_list, + ACTIONS(4795), 1, + anon_sym_COLON, + ACTIONS(5035), 1, + anon_sym_COLON_COLON, + STATE(2568), 1, + sym_trait_bounds, STATE(3127), 2, sym_line_comment, sym_block_comment, - [90141] = 5, + [90053] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 1, - anon_sym_GT, - ACTIONS(6684), 1, - anon_sym_COMMA, - STATE(3128), 3, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6671), 1, + anon_sym_SEMI, + STATE(763), 1, + sym_declaration_list, + STATE(3128), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [90159] = 6, + [90073] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_GT, - ACTIONS(6687), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6673), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_LBRACK, + ACTIONS(6677), 1, + anon_sym_LBRACE, STATE(3129), 2, sym_line_comment, sym_block_comment, - [90179] = 6, + [90093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6689), 1, - anon_sym_SEMI, - STATE(613), 1, - sym_declaration_list, STATE(3130), 2, sym_line_comment, sym_block_comment, - [90199] = 6, + ACTIONS(5005), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(6691), 1, + ACTIONS(6679), 1, anon_sym_SEMI, - STATE(519), 1, + STATE(566), 1, sym_declaration_list, STATE(3131), 2, sym_line_comment, sym_block_comment, - [90219] = 4, + [90129] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6681), 1, + sym_identifier, + ACTIONS(6683), 1, + anon_sym_ref, + ACTIONS(6685), 1, + sym_mutable_specifier, STATE(3132), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90235] = 6, + [90149] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3110), 1, - anon_sym_RBRACK, - ACTIONS(6693), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(4795), 1, + anon_sym_COLON, + STATE(2568), 1, + sym_trait_bounds, STATE(3133), 2, sym_line_comment, sym_block_comment, - [90255] = 5, + [90169] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 1, - anon_sym_RBRACE, - ACTIONS(6697), 1, - anon_sym_COMMA, - STATE(3134), 3, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, + ACTIONS(5023), 1, + anon_sym_BANG, + ACTIONS(6687), 1, + sym_identifier, + STATE(3134), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [90273] = 6, + [90189] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(6700), 1, + ACTIONS(6689), 1, anon_sym_SEMI, - STATE(525), 1, + STATE(568), 1, sym_declaration_list, STATE(3135), 2, sym_line_comment, sym_block_comment, - [90293] = 6, + [90209] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3071), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(5136), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, STATE(3136), 2, sym_line_comment, sym_block_comment, - [90313] = 6, + [90229] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3556), 1, anon_sym_LBRACE, - ACTIONS(6702), 1, - anon_sym_SEMI, - STATE(620), 1, - sym_declaration_list, + ACTIONS(6691), 1, + anon_sym_COLON_COLON, + STATE(1523), 1, + sym_field_initializer_list, STATE(3137), 2, sym_line_comment, sym_block_comment, - [90333] = 5, + [90249] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6704), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6693), 1, + anon_sym_SEMI, + ACTIONS(6695), 1, + anon_sym_EQ, STATE(3138), 2, sym_line_comment, sym_block_comment, - [90351] = 6, + [90269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, STATE(3139), 2, sym_line_comment, sym_block_comment, - [90371] = 4, + ACTIONS(6697), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90285] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6699), 1, + anon_sym_SEMI, + STATE(707), 1, + sym_declaration_list, STATE(3140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90387] = 6, + [90305] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - ACTIONS(6706), 1, + ACTIONS(6701), 1, anon_sym_SEMI, - STATE(527), 1, + STATE(574), 1, sym_declaration_list, STATE(3141), 2, sym_line_comment, sym_block_comment, - [90407] = 5, + [90325] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6710), 1, - anon_sym_EQ, - ACTIONS(6708), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6703), 1, + anon_sym_SEMI, + STATE(726), 1, + sym_declaration_list, STATE(3142), 2, sym_line_comment, sym_block_comment, - [90425] = 6, + [90345] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_RBRACE, - ACTIONS(6712), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(6705), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, STATE(3143), 2, sym_line_comment, sym_block_comment, - [90445] = 6, + [90365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4652), 1, anon_sym_LT2, - ACTIONS(5118), 1, + ACTIONS(6707), 1, anon_sym_for, - STATE(2008), 1, + STATE(2007), 1, sym_type_arguments, STATE(3144), 2, sym_line_comment, sym_block_comment, - [90465] = 6, + [90385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_declaration_list, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(6709), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, STATE(3145), 2, sym_line_comment, sym_block_comment, - [90485] = 6, + [90405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6711), 1, anon_sym_SEMI, - STATE(630), 1, - sym_declaration_list, + ACTIONS(6713), 1, + anon_sym_RBRACK, STATE(3146), 2, sym_line_comment, sym_block_comment, - [90505] = 6, + [90425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6718), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + anon_sym_SLASH_STAR, + ACTIONS(5059), 1, + anon_sym_where, + ACTIONS(6715), 1, + anon_sym_EQ, + STATE(3733), 1, + sym_where_clause, STATE(3147), 2, sym_line_comment, sym_block_comment, - [90525] = 6, + [90445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6720), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6717), 1, + anon_sym_SEMI, + STATE(576), 1, + sym_declaration_list, STATE(3148), 2, sym_line_comment, sym_block_comment, - [90545] = 6, + [90465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6722), 1, - anon_sym_SEMI, - ACTIONS(6724), 1, - anon_sym_EQ, + ACTIONS(5624), 1, + anon_sym_COMMA, + ACTIONS(6719), 1, + anon_sym_PIPE, + STATE(2889), 1, + aux_sym_closure_parameters_repeat1, STATE(3149), 2, sym_line_comment, sym_block_comment, - [90565] = 6, + [90485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6726), 1, - anon_sym_EQ, - STATE(3727), 1, - sym_where_clause, + ACTIONS(4652), 1, + anon_sym_LT2, + ACTIONS(6721), 1, + anon_sym_for, + STATE(2007), 1, + sym_type_arguments, STATE(3150), 2, sym_line_comment, sym_block_comment, - [90585] = 6, + [90505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6728), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3151), 2, + ACTIONS(6723), 1, + anon_sym_RBRACE, + ACTIONS(6725), 1, + anon_sym_COMMA, + STATE(3151), 3, sym_line_comment, sym_block_comment, - [90605] = 4, + aux_sym_enum_variant_list_repeat2, + [90523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6728), 1, + sym_identifier, + ACTIONS(6730), 1, + anon_sym_ref, + ACTIONS(6732), 1, + sym_mutable_specifier, STATE(3152), 2, sym_line_comment, sym_block_comment, - ACTIONS(6730), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90621] = 6, + [90543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, - sym_identifier, + ACTIONS(5043), 1, + anon_sym_LBRACE, ACTIONS(6734), 1, - anon_sym_ref, - ACTIONS(6736), 1, - sym_mutable_specifier, + anon_sym_SEMI, + STATE(653), 1, + sym_declaration_list, STATE(3153), 2, sym_line_comment, sym_block_comment, - [90641] = 6, + [90563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(4270), 1, + ACTIONS(6738), 1, + anon_sym_EQ, + ACTIONS(6736), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, STATE(3154), 2, sym_line_comment, sym_block_comment, - [90661] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [90581] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, - anon_sym_move, - STATE(248), 1, - sym_closure_parameters, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6742), 1, + anon_sym_EQ, STATE(3155), 2, sym_line_comment, sym_block_comment, - [90681] = 5, + [90601] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, + ACTIONS(5084), 1, + anon_sym_RBRACE, + ACTIONS(6744), 1, + anon_sym_COMMA, + STATE(3151), 1, + aux_sym_enum_variant_list_repeat2, STATE(3156), 2, sym_line_comment, sym_block_comment, - [90698] = 5, + [90621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6744), 1, - sym_identifier, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(6746), 1, + anon_sym_SEMI, + STATE(769), 1, + sym_declaration_list, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90715] = 5, + [90641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, + ACTIONS(4837), 1, + anon_sym_GT, + ACTIONS(6628), 1, + anon_sym_COMMA, + STATE(3123), 1, + aux_sym_type_parameters_repeat1, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90732] = 5, + [90661] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1218), 1, - sym_declaration_list, + ACTIONS(5578), 1, + anon_sym_RPAREN, + ACTIONS(5580), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_parameters_repeat1, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90749] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90681] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(238), 1, - sym_closure_parameters, + ACTIONS(6748), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90766] = 5, + [90696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5773), 1, + ACTIONS(6214), 1, sym_identifier, - ACTIONS(5775), 1, - sym_super, + ACTIONS(6218), 1, + sym_mutable_specifier, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90783] = 5, + [90713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(6746), 1, - anon_sym_AMP_AMP, + ACTIONS(4163), 1, + anon_sym_LPAREN, + STATE(1696), 1, + sym_parameters, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90800] = 4, + [90730] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5928), 2, + ACTIONS(6750), 1, anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6752), 1, + anon_sym_COLON_COLON, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90815] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90747] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(6754), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90832] = 5, + [90762] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, - anon_sym_EQ_GT, - ACTIONS(6746), 1, - anon_sym_AMP_AMP, + ACTIONS(4188), 1, + anon_sym_LBRACE, + STATE(1718), 1, + sym_field_initializer_list, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90849] = 5, + [90779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_declaration_list, + ACTIONS(6756), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90866] = 5, + [90794] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6750), 1, + anon_sym_RPAREN, + ACTIONS(6758), 1, + anon_sym_COLON_COLON, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90883] = 5, + [90811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, + ACTIONS(5553), 1, + anon_sym_COLON, + ACTIONS(5555), 1, + anon_sym_PIPE, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90900] = 5, + [90828] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, - sym_super, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(639), 1, + sym_field_declaration_list, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90917] = 4, + [90845] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 2, - sym_identifier, - sym_super, + STATE(225), 1, + sym_closure_parameters, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90932] = 5, + [90862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6750), 1, - sym_identifier, - ACTIONS(6752), 1, - sym_super, + anon_sym_RPAREN, + ACTIONS(6760), 1, + anon_sym_COLON_COLON, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90949] = 5, + [90879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6442), 1, - anon_sym_for, + ACTIONS(5922), 1, + sym_identifier, + ACTIONS(5924), 1, + sym_super, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90966] = 5, + [90896] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6754), 1, + ACTIONS(5797), 2, sym_identifier, - ACTIONS(6756), 1, sym_super, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90983] = 5, + [90911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, + ACTIONS(6762), 1, sym_identifier, + ACTIONS(6764), 1, + sym_super, STATE(3174), 2, sym_line_comment, sym_block_comment, - [91000] = 5, + [90928] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - sym_identifier, - ACTIONS(6760), 1, - sym_super, + ACTIONS(6766), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3175), 2, sym_line_comment, sym_block_comment, - [91017] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(5724), 1, + sym_super, + ACTIONS(6768), 1, + sym_identifier, STATE(3176), 2, sym_line_comment, sym_block_comment, - [91034] = 4, + [90960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6770), 1, + sym_identifier, + ACTIONS(6772), 1, + sym_super, STATE(3177), 2, sym_line_comment, sym_block_comment, - [91049] = 5, + [90977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(937), 1, - sym_type_parameters, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym_declaration_list, STATE(3178), 2, sym_line_comment, sym_block_comment, - [91066] = 5, + [90994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - anon_sym_SEMI, - ACTIONS(6768), 1, - anon_sym_EQ, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5821), 1, + sym_identifier, STATE(3179), 2, sym_line_comment, sym_block_comment, - [91083] = 5, + [91011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1696), 1, - sym_parameters, + ACTIONS(6774), 1, + sym_identifier, + ACTIONS(6776), 1, + sym_super, STATE(3180), 2, sym_line_comment, sym_block_comment, - [91100] = 4, + [91028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5724), 1, + sym_super, + ACTIONS(6778), 1, + sym_identifier, STATE(3181), 2, sym_line_comment, sym_block_comment, - [91115] = 5, + [91045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_in, + ACTIONS(6780), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3182), 2, sym_line_comment, sym_block_comment, - [91132] = 4, + [91060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6782), 1, + sym_identifier, + ACTIONS(6784), 1, + sym_super, STATE(3183), 2, sym_line_comment, sym_block_comment, - [91147] = 4, + [91077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 2, - sym_identifier, - sym_super, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_declaration_list, STATE(3184), 2, sym_line_comment, sym_block_comment, - [91162] = 5, + [91094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(936), 1, + sym_type_parameters, STATE(3185), 2, sym_line_comment, sym_block_comment, - [91179] = 5, + [91111] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_field_declaration_list, + ACTIONS(3410), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3186), 2, sym_line_comment, sym_block_comment, - [91196] = 5, + [91126] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_field_initializer_list, + ACTIONS(6788), 2, + sym_float_literal, + sym_integer_literal, STATE(3187), 2, sym_line_comment, sym_block_comment, - [91213] = 4, + [91141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_LPAREN, + STATE(1687), 1, + sym_parameters, STATE(3188), 2, sym_line_comment, sym_block_comment, - [91228] = 5, + [91158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, - anon_sym_COLON_COLON, + ACTIONS(6784), 1, + sym_super, + ACTIONS(6790), 1, + sym_identifier, STATE(3189), 2, sym_line_comment, sym_block_comment, - [91245] = 5, + [91175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1695), 1, - sym_parameters, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3956), 1, + anon_sym_COLON, STATE(3190), 2, sym_line_comment, sym_block_comment, - [91262] = 4, + [91192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_declaration_list, STATE(3191), 2, sym_line_comment, sym_block_comment, - [91277] = 5, + [91209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(677), 1, - sym_declaration_list, + ACTIONS(6402), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3192), 2, sym_line_comment, sym_block_comment, - [91294] = 5, + [91224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(1048), 1, - sym_type_parameters, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6792), 1, + anon_sym_in, STATE(3193), 2, sym_line_comment, sym_block_comment, - [91311] = 5, + [91241] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(3234), 1, - sym_lifetime, + ACTIONS(6794), 2, + sym_identifier, + sym_super, STATE(3194), 2, sym_line_comment, sym_block_comment, - [91328] = 5, + [91256] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1229), 1, - sym_declaration_list, + ACTIONS(6796), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3195), 2, sym_line_comment, sym_block_comment, - [91345] = 5, + [91271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, + ACTIONS(3434), 1, + anon_sym_LPAREN, + STATE(1134), 1, + sym_parameters, STATE(3196), 2, sym_line_comment, sym_block_comment, - [91362] = 5, + [91288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1270), 1, - sym_declaration_list, + ACTIONS(6798), 1, + sym_identifier, + ACTIONS(6800), 1, + sym_mutable_specifier, STATE(3197), 2, sym_line_comment, sym_block_comment, - [91379] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(237), 1, - sym_closure_parameters, + ACTIONS(4163), 1, + anon_sym_LPAREN, + STATE(1697), 1, + sym_parameters, STATE(3198), 2, sym_line_comment, sym_block_comment, - [91396] = 4, + [91322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 2, - sym_identifier, - sym_super, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(6258), 1, + anon_sym_for, STATE(3199), 2, sym_line_comment, sym_block_comment, - [91411] = 5, + [91339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2303), 1, - sym_parameters, + ACTIONS(3556), 1, + anon_sym_LBRACE, + STATE(1523), 1, + sym_field_initializer_list, STATE(3200), 2, sym_line_comment, sym_block_comment, - [91428] = 5, + [91356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6760), 1, - sym_super, - ACTIONS(6780), 1, - sym_identifier, + anon_sym_COLON_COLON, + ACTIONS(6802), 1, + anon_sym_RPAREN, STATE(3201), 2, sym_line_comment, sym_block_comment, - [91445] = 5, + [91373] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1277), 1, - sym_declaration_list, + ACTIONS(5942), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3202), 2, sym_line_comment, sym_block_comment, - [91462] = 5, + [91388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5043), 1, anon_sym_LBRACE, - STATE(1278), 1, + STATE(780), 1, sym_declaration_list, STATE(3203), 2, sym_line_comment, sym_block_comment, - [91479] = 5, + [91405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RPAREN, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1222), 1, + sym_field_declaration_list, STATE(3204), 2, sym_line_comment, sym_block_comment, - [91496] = 5, + [91422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1223), 1, + sym_declaration_list, STATE(3205), 2, sym_line_comment, sym_block_comment, - [91513] = 4, + [91439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1224), 1, + sym_declaration_list, STATE(3206), 2, sym_line_comment, sym_block_comment, - [91528] = 5, + [91456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RBRACK, + ACTIONS(6804), 2, + sym_identifier, + sym_metavariable, STATE(3207), 2, sym_line_comment, sym_block_comment, - [91545] = 5, + [91471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6786), 1, - sym_identifier, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + STATE(3042), 1, + sym_lifetime, STATE(3208), 2, sym_line_comment, sym_block_comment, - [91562] = 5, + [91488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6788), 1, - anon_sym_RBRACE, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym_declaration_list, STATE(3209), 2, sym_line_comment, sym_block_comment, - [91579] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(248), 1, - sym_closure_parameters, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(5094), 1, + anon_sym_for, STATE(3210), 2, sym_line_comment, sym_block_comment, - [91596] = 5, + [91522] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1754), 1, - sym_type_arguments, + ACTIONS(6806), 2, + sym_float_literal, + sym_integer_literal, STATE(3211), 2, sym_line_comment, sym_block_comment, - [91613] = 5, + [91537] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - anon_sym_SEMI, - ACTIONS(6792), 1, - anon_sym_EQ, + ACTIONS(6433), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3212), 2, sym_line_comment, sym_block_comment, - [91630] = 5, + [91552] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5704), 1, - anon_sym_COLON, + ACTIONS(6808), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3213), 2, sym_line_comment, sym_block_comment, - [91647] = 5, + [91567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, + ACTIONS(5396), 1, anon_sym_LBRACE, - STATE(1199), 1, + STATE(612), 1, sym_enum_variant_list, STATE(3214), 2, sym_line_comment, sym_block_comment, - [91664] = 4, + [91584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 2, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6812), 1, anon_sym_RPAREN, - anon_sym_COMMA, STATE(3215), 2, sym_line_comment, sym_block_comment, - [91679] = 4, + [91601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5724), 1, + sym_super, + ACTIONS(6814), 1, + sym_identifier, STATE(3216), 2, sym_line_comment, sym_block_comment, - [91694] = 5, + [91618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6796), 1, - sym_identifier, + ACTIONS(4506), 1, + anon_sym_EQ_GT, + ACTIONS(6816), 1, + anon_sym_AMP_AMP, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91711] = 5, + [91635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1286), 1, - sym_enum_variant_list, + ACTIONS(6559), 1, + anon_sym_EQ_GT, + ACTIONS(6816), 1, + anon_sym_AMP_AMP, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91728] = 4, + [91652] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 2, - sym_identifier, - sym_metavariable, + STATE(237), 1, + sym_closure_parameters, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91743] = 4, + [91669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6818), 1, + anon_sym_SEMI, + ACTIONS(6820), 1, + anon_sym_EQ, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91758] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(250), 1, - sym_closure_parameters, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1281), 1, + sym_declaration_list, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91775] = 4, + [91703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6812), 1, + anon_sym_RBRACK, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91790] = 5, + [91720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, + ACTIONS(6822), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91807] = 4, + [91735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5940), 2, - sym_identifier, + ACTIONS(5588), 1, sym_super, + ACTIONS(6782), 1, + sym_identifier, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91822] = 5, + [91752] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(1289), 1, - sym_field_declaration_list, + STATE(1282), 1, + sym_declaration_list, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91839] = 5, + [91769] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6804), 1, - sym_identifier, + STATE(245), 1, + sym_closure_parameters, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91856] = 5, + [91786] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, + STATE(229), 1, + sym_closure_parameters, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91873] = 5, + [91803] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6806), 1, - sym_identifier, + STATE(242), 1, + sym_closure_parameters, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91890] = 5, + [91820] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1291), 1, - sym_field_declaration_list, + ACTIONS(5924), 2, + sym_identifier, + sym_super, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91907] = 5, + [91835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, - anon_sym_RPAREN, + ACTIONS(3064), 1, + anon_sym_SQUOTE, + STATE(3304), 1, + sym_lifetime, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91924] = 5, + [91852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, - anon_sym_RBRACK, + ACTIONS(6772), 1, + sym_super, + ACTIONS(6824), 1, + sym_identifier, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91941] = 5, + [91869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6810), 1, - anon_sym_RBRACE, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2286), 1, + sym_parameters, STATE(3232), 2, sym_line_comment, sym_block_comment, - [91958] = 5, + [91886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(5294), 1, sym_super, - ACTIONS(6812), 1, + ACTIONS(5904), 1, sym_identifier, STATE(3233), 2, sym_line_comment, sym_block_comment, - [91975] = 4, + [91903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6776), 1, + sym_super, + ACTIONS(6826), 1, + sym_identifier, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91990] = 5, + [91920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, + ACTIONS(6828), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3235), 2, sym_line_comment, sym_block_comment, - [92007] = 5, + [91935] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(1292), 1, - sym_declaration_list, + STATE(1230), 1, + sym_field_declaration_list, STATE(3236), 2, sym_line_comment, sym_block_comment, - [92024] = 5, + [91952] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - ACTIONS(6774), 1, - anon_sym_RPAREN, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2306), 1, + sym_parameters, STATE(3237), 2, sym_line_comment, sym_block_comment, - [92041] = 4, + [91969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 2, - sym_identifier, - sym_super, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6830), 1, + anon_sym_RBRACE, STATE(3238), 2, sym_line_comment, sym_block_comment, - [92056] = 5, + [91986] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, + ACTIONS(6832), 2, + sym_identifier, + sym_metavariable, STATE(3239), 2, sym_line_comment, sym_block_comment, - [92073] = 5, + [92001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6818), 1, - sym_identifier, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6834), 1, + anon_sym_RPAREN, STATE(3240), 2, sym_line_comment, sym_block_comment, - [92090] = 5, + [92018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1237), 1, - sym_field_declaration_list, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6834), 1, + anon_sym_RBRACK, STATE(3241), 2, sym_line_comment, sym_block_comment, - [92107] = 5, + [92035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, + ACTIONS(5423), 1, anon_sym_LBRACE, - STATE(1832), 1, - sym_field_initializer_list, + STATE(1290), 1, + sym_enum_variant_list, STATE(3242), 2, sym_line_comment, sym_block_comment, - [92124] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(229), 1, - sym_closure_parameters, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym_field_declaration_list, STATE(3243), 2, sym_line_comment, sym_block_comment, - [92141] = 4, + [92069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 2, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6836), 1, anon_sym_RBRACE, - anon_sym_COMMA, STATE(3244), 2, sym_line_comment, sym_block_comment, - [92156] = 5, + [92086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, + ACTIONS(3434), 1, + anon_sym_LPAREN, + STATE(1201), 1, + sym_parameters, STATE(3245), 2, sym_line_comment, sym_block_comment, - [92173] = 5, + [92103] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, + ACTIONS(5976), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3246), 2, sym_line_comment, sym_block_comment, - [92190] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92118] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1293), 1, + sym_field_declaration_list, STATE(3247), 2, sym_line_comment, sym_block_comment, - [92207] = 5, + [92135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(561), 1, - sym_field_declaration_list, + ACTIONS(6838), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3248), 2, sym_line_comment, sym_block_comment, - [92224] = 5, + [92150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2397), 1, - sym_parameters, + ACTIONS(5294), 1, + sym_super, + ACTIONS(6054), 1, + sym_identifier, STATE(3249), 2, sym_line_comment, sym_block_comment, - [92241] = 5, + [92167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 1, - sym_identifier, - ACTIONS(6826), 1, - sym_super, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1295), 1, + sym_field_declaration_list, STATE(3250), 2, sym_line_comment, sym_block_comment, - [92258] = 5, + [92184] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - sym_identifier, - ACTIONS(6828), 1, - sym_super, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_declaration_list, STATE(3251), 2, sym_line_comment, sym_block_comment, - [92275] = 5, + [92201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_declaration_list, STATE(3252), 2, sym_line_comment, sym_block_comment, - [92292] = 5, + [92218] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, + ACTIONS(6537), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3253), 2, sym_line_comment, sym_block_comment, - [92309] = 5, + [92233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(576), 1, - sym_field_declaration_list, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2466), 1, + sym_parameters, STATE(3254), 2, sym_line_comment, sym_block_comment, - [92326] = 5, + [92250] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_field_declaration_list, + STATE(235), 1, + sym_closure_parameters, STATE(3255), 2, sym_line_comment, sym_block_comment, - [92343] = 5, + [92267] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(652), 1, + STATE(1235), 1, sym_declaration_list, STATE(3256), 2, sym_line_comment, sym_block_comment, - [92360] = 4, + [92284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 2, - sym_identifier, - sym_super, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_declaration_list, STATE(3257), 2, sym_line_comment, sym_block_comment, - [92375] = 4, + [92301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 2, + ACTIONS(5434), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(3258), 2, sym_line_comment, sym_block_comment, - [92390] = 4, + [92316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 2, - sym_identifier, + ACTIONS(6784), 1, sym_super, + ACTIONS(6840), 1, + sym_identifier, STATE(3259), 2, sym_line_comment, sym_block_comment, - [92405] = 5, + [92333] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6832), 1, - anon_sym_in, + ACTIONS(5777), 2, + sym_identifier, + sym_super, STATE(3260), 2, sym_line_comment, sym_block_comment, - [92422] = 5, + [92348] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, - anon_sym_SEMI, - ACTIONS(6836), 1, - anon_sym_as, + STATE(249), 1, + sym_closure_parameters, STATE(3261), 2, sym_line_comment, sym_block_comment, - [92439] = 5, + [92365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, + ACTIONS(6776), 1, + sym_super, + ACTIONS(6842), 1, + sym_identifier, STATE(3262), 2, sym_line_comment, sym_block_comment, - [92456] = 5, + [92382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6840), 1, - sym_identifier, + ACTIONS(5292), 1, + anon_sym_RBRACE, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3263), 2, sym_line_comment, sym_block_comment, - [92473] = 5, + [92399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6506), 1, - anon_sym_for, + ACTIONS(6844), 1, + sym_identifier, + ACTIONS(6846), 1, + sym_super, STATE(3264), 2, sym_line_comment, sym_block_comment, - [92490] = 5, + [92416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(5777), 1, sym_super, - ACTIONS(6842), 1, + ACTIONS(5974), 1, sym_identifier, STATE(3265), 2, sym_line_comment, sym_block_comment, - [92507] = 5, + [92433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, + ACTIONS(6848), 1, sym_identifier, + ACTIONS(6850), 1, + sym_super, STATE(3266), 2, sym_line_comment, sym_block_comment, - [92524] = 5, + [92450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6844), 1, - sym_identifier, + ACTIONS(4169), 1, + anon_sym_LT2, + STATE(1878), 1, + sym_type_arguments, STATE(3267), 2, sym_line_comment, sym_block_comment, - [92541] = 5, + [92467] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, - anon_sym_SEMI, - ACTIONS(6848), 1, - anon_sym_as, + ACTIONS(6471), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3268), 2, sym_line_comment, sym_block_comment, - [92558] = 4, + [92482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(1041), 1, + sym_type_parameters, STATE(3269), 2, sym_line_comment, sym_block_comment, - [92573] = 4, + [92499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6852), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6784), 1, + sym_super, + ACTIONS(6852), 1, + sym_identifier, STATE(3270), 2, sym_line_comment, sym_block_comment, - [92588] = 5, + [92516] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(981), 1, - sym_type_parameters, + ACTIONS(6772), 2, + sym_identifier, + sym_super, STATE(3271), 2, sym_line_comment, sym_block_comment, - [92605] = 4, + [92531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6772), 1, + sym_super, + ACTIONS(6854), 1, + sym_identifier, STATE(3272), 2, sym_line_comment, sym_block_comment, - [92620] = 5, + [92548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, + ACTIONS(5777), 1, sym_super, - ACTIONS(6856), 1, + ACTIONS(6074), 1, sym_identifier, STATE(3273), 2, sym_line_comment, sym_block_comment, - [92637] = 5, + [92565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(6850), 1, sym_super, - ACTIONS(6858), 1, + ACTIONS(6856), 1, sym_identifier, STATE(3274), 2, sym_line_comment, sym_block_comment, - [92654] = 5, + [92582] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, - sym_identifier, + ACTIONS(6858), 1, + anon_sym_SEMI, + ACTIONS(6860), 1, + anon_sym_EQ, STATE(3275), 2, sym_line_comment, sym_block_comment, - [92671] = 5, + [92599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 1, - sym_super, - ACTIONS(6860), 1, - sym_identifier, + ACTIONS(6862), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3276), 2, sym_line_comment, sym_block_comment, - [92688] = 5, + [92614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1153), 1, - sym_parameters, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_field_declaration_list, STATE(3277), 2, sym_line_comment, sym_block_comment, - [92705] = 4, + [92631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6864), 1, + anon_sym_in, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92720] = 5, + [92648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5423), 1, anon_sym_LBRACE, - STATE(675), 1, - sym_field_declaration_list, + STATE(1240), 1, + sym_enum_variant_list, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92737] = 5, + [92665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6820), 1, + ACTIONS(6866), 1, sym_identifier, + ACTIONS(6868), 1, + sym_super, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92754] = 5, + [92682] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(6772), 1, sym_super, - ACTIONS(6786), 1, + ACTIONS(6870), 1, sym_identifier, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92771] = 5, + [92699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(5797), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(5926), 1, sym_identifier, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92788] = 5, + [92716] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(6794), 1, sym_super, - ACTIONS(6830), 1, + ACTIONS(6872), 1, sym_identifier, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92805] = 5, + [92733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6862), 1, - sym_identifier, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(626), 1, + sym_field_declaration_list, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92822] = 5, + [92750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5588), 1, sym_super, - ACTIONS(5986), 1, + ACTIONS(6840), 1, sym_identifier, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92839] = 5, + [92767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6772), 1, sym_super, - ACTIONS(6864), 1, + ACTIONS(6814), 1, sym_identifier, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92856] = 5, + [92784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(5294), 1, sym_super, - ACTIONS(6866), 1, + ACTIONS(5974), 1, sym_identifier, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92873] = 5, + [92801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(6776), 1, sym_super, - ACTIONS(6000), 1, + ACTIONS(6848), 1, sym_identifier, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92890] = 5, + [92818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6784), 1, sym_super, - ACTIONS(6868), 1, + ACTIONS(6874), 1, sym_identifier, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92907] = 5, + [92835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6870), 1, + ACTIONS(5775), 1, sym_identifier, + ACTIONS(5777), 1, + sym_super, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92924] = 5, + [92852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(6850), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(6876), 1, sym_identifier, STATE(3291), 2, sym_line_comment, sym_block_comment, - [92941] = 5, + [92869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6784), 1, sym_super, - ACTIONS(6872), 1, + ACTIONS(6878), 1, sym_identifier, STATE(3292), 2, sym_line_comment, sym_block_comment, - [92958] = 5, + [92886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(5777), 1, sym_super, - ACTIONS(6870), 1, + ACTIONS(5988), 1, sym_identifier, STATE(3293), 2, sym_line_comment, sym_block_comment, - [92975] = 5, + [92903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(6850), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(6880), 1, sym_identifier, STATE(3294), 2, sym_line_comment, sym_block_comment, - [92992] = 5, + [92920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(6784), 1, sym_super, - ACTIONS(6872), 1, + ACTIONS(6882), 1, sym_identifier, STATE(3295), 2, sym_line_comment, sym_block_comment, - [93009] = 5, + [92937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, + ACTIONS(5777), 1, sym_super, - ACTIONS(6814), 1, + ACTIONS(5994), 1, sym_identifier, STATE(3296), 2, sym_line_comment, sym_block_comment, - [93026] = 4, + [92954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6850), 1, + sym_super, + ACTIONS(6884), 1, + sym_identifier, STATE(3297), 2, sym_line_comment, sym_block_comment, - [93041] = 5, + [92971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, + ACTIONS(5588), 1, + sym_super, + ACTIONS(6882), 1, + sym_identifier, STATE(3298), 2, sym_line_comment, sym_block_comment, - [93058] = 5, + [92988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6880), 1, - anon_sym_SEMI, - ACTIONS(6882), 1, - anon_sym_EQ, + ACTIONS(5294), 1, + sym_super, + ACTIONS(5994), 1, + sym_identifier, STATE(3299), 2, sym_line_comment, sym_block_comment, - [93075] = 4, + [93005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 2, - sym_identifier, + ACTIONS(6776), 1, sym_super, + ACTIONS(6884), 1, + sym_identifier, STATE(3300), 2, sym_line_comment, sym_block_comment, - [93090] = 5, + [93022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6886), 1, - anon_sym_COLON_COLON, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1243), 1, + sym_field_declaration_list, STATE(3301), 2, sym_line_comment, sym_block_comment, - [93107] = 5, + [93039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6888), 1, - anon_sym_RBRACE, + ACTIONS(6772), 1, + sym_super, + ACTIONS(6886), 1, + sym_identifier, STATE(3302), 2, sym_line_comment, sym_block_comment, - [93124] = 5, + [93056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6890), 1, - anon_sym_GT, + ACTIONS(6772), 1, + sym_super, + ACTIONS(6888), 1, + sym_identifier, STATE(3303), 2, sym_line_comment, sym_block_comment, - [93141] = 4, + [93073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6530), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3304), 2, sym_line_comment, sym_block_comment, - [93156] = 5, + [93088] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, + ACTIONS(6868), 2, + sym_identifier, + sym_super, STATE(3305), 2, sym_line_comment, sym_block_comment, - [93173] = 5, + [93103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1246), 1, + sym_field_declaration_list, STATE(3306), 2, sym_line_comment, sym_block_comment, - [93190] = 5, + [93120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6894), 1, - anon_sym_RBRACE, + ACTIONS(6776), 2, + sym_identifier, + sym_super, STATE(3307), 2, sym_line_comment, sym_block_comment, - [93207] = 5, + [93135] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, - anon_sym_BANG, - ACTIONS(6898), 1, - anon_sym_COLON_COLON, + ACTIONS(6826), 1, + sym_identifier, + ACTIONS(6850), 1, + sym_super, STATE(3308), 2, sym_line_comment, sym_block_comment, - [93224] = 5, + [93152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2390), 1, - sym_parameters, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(622), 1, + sym_declaration_list, STATE(3309), 2, sym_line_comment, sym_block_comment, - [93241] = 5, + [93169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym_enum_variant_list, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2472), 1, + sym_parameters, STATE(3310), 2, sym_line_comment, sym_block_comment, - [93258] = 4, + [93186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 2, - sym_identifier, - sym_super, + ACTIONS(6890), 1, + anon_sym_SEMI, + ACTIONS(6892), 1, + anon_sym_as, STATE(3311), 2, sym_line_comment, sym_block_comment, - [93273] = 5, + [93203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(889), 1, - sym_type_parameters, + ACTIONS(6894), 1, + anon_sym_SEMI, + ACTIONS(6896), 1, + anon_sym_as, STATE(3312), 2, sym_line_comment, sym_block_comment, - [93290] = 5, + [93220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, + ACTIONS(6898), 1, + anon_sym_LPAREN, + ACTIONS(6900), 1, + anon_sym_COLON_COLON, STATE(3313), 2, sym_line_comment, sym_block_comment, - [93307] = 5, + [93237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1335), 1, - sym_declaration_list, + ACTIONS(6902), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3314), 2, sym_line_comment, sym_block_comment, - [93324] = 5, + [93252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5423), 1, anon_sym_LBRACE, - STATE(669), 1, - sym_field_declaration_list, + STATE(1205), 1, + sym_enum_variant_list, STATE(3315), 2, sym_line_comment, sym_block_comment, - [93341] = 4, + [93269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6904), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3316), 2, sym_line_comment, sym_block_comment, - [93356] = 5, + [93284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6902), 1, - anon_sym_EQ, + ACTIONS(3512), 1, + anon_sym_PLUS, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, STATE(3317), 2, sym_line_comment, sym_block_comment, - [93373] = 5, + [93301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(883), 1, - sym_type_parameters, + ACTIONS(3512), 1, + anon_sym_PLUS, + ACTIONS(3614), 1, + anon_sym_COLON_COLON, STATE(3318), 2, sym_line_comment, sym_block_comment, - [93390] = 5, + [93318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6904), 1, - anon_sym_EQ, + ACTIONS(6906), 1, + anon_sym_BANG, + ACTIONS(6908), 1, + anon_sym_COLON_COLON, STATE(3319), 2, sym_line_comment, sym_block_comment, - [93407] = 5, + [93335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1431), 1, - sym_type_arguments, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5821), 1, + sym_identifier, STATE(3320), 2, sym_line_comment, sym_block_comment, - [93424] = 5, + [93352] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_parameters, + ACTIONS(3164), 1, + anon_sym_PLUS, + ACTIONS(6910), 1, + anon_sym_GT, STATE(3321), 2, sym_line_comment, sym_block_comment, - [93441] = 4, + [93369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6912), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3322), 2, sym_line_comment, sym_block_comment, - [93456] = 5, + [93384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1195), 1, - sym_parameters, + ACTIONS(5294), 1, + sym_super, + ACTIONS(6007), 1, + sym_identifier, STATE(3323), 2, sym_line_comment, sym_block_comment, - [93473] = 5, + [93401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_declaration_list, + ACTIONS(6914), 1, + anon_sym_RPAREN, + ACTIONS(6916), 1, + anon_sym_COLON_COLON, STATE(3324), 2, sym_line_comment, sym_block_comment, - [93490] = 5, + [93418] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, + ACTIONS(6846), 2, sym_identifier, - ACTIONS(6910), 1, - sym_mutable_specifier, + sym_super, STATE(3325), 2, sym_line_comment, sym_block_comment, - [93507] = 4, + [93433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(887), 1, + sym_type_parameters, STATE(3326), 2, sym_line_comment, sym_block_comment, - [93522] = 5, + [93450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, + ACTIONS(6774), 1, + sym_identifier, + ACTIONS(6850), 1, + sym_super, STATE(3327), 2, sym_line_comment, sym_block_comment, - [93539] = 5, + [93467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, + ACTIONS(6752), 1, + anon_sym_COLON_COLON, + ACTIONS(6802), 1, + anon_sym_RPAREN, STATE(3328), 2, sym_line_comment, sym_block_comment, - [93556] = 5, + [93484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6914), 1, - sym_identifier, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2313), 1, + sym_parameters, STATE(3329), 2, sym_line_comment, sym_block_comment, - [93573] = 5, + [93501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(942), 1, + sym_type_parameters, STATE(3330), 2, sym_line_comment, sym_block_comment, - [93590] = 5, + [93518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2280), 1, - sym_parameters, + ACTIONS(3442), 1, + anon_sym_LT2, + STATE(1444), 1, + sym_type_arguments, STATE(3331), 2, sym_line_comment, sym_block_comment, - [93607] = 5, + [93535] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6621), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3332), 2, sym_line_comment, sym_block_comment, - [93624] = 4, + [93550] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6918), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3333), 2, sym_line_comment, sym_block_comment, - [93639] = 5, + [93565] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, + ACTIONS(6920), 2, anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3334), 2, sym_line_comment, sym_block_comment, - [93656] = 5, + [93580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6918), 1, - sym_identifier, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(629), 1, + sym_declaration_list, STATE(3335), 2, sym_line_comment, sym_block_comment, - [93673] = 5, + [93597] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6922), 2, + sym_identifier, + sym_metavariable, STATE(3336), 2, sym_line_comment, sym_block_comment, - [93690] = 5, + [93612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(722), 1, + sym_field_declaration_list, STATE(3337), 2, sym_line_comment, sym_block_comment, - [93707] = 5, + [93629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1167), 1, - sym_field_declaration_list, + ACTIONS(5330), 1, + anon_sym_RPAREN, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3338), 2, sym_line_comment, sym_block_comment, - [93724] = 4, + [93646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5330), 1, + anon_sym_RBRACK, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3339), 2, sym_line_comment, sym_block_comment, - [93739] = 5, + [93663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(579), 1, - sym_field_declaration_list, + ACTIONS(5724), 1, + sym_super, + ACTIONS(6886), 1, + sym_identifier, STATE(3340), 2, sym_line_comment, sym_block_comment, - [93756] = 4, + [93680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 2, - sym_identifier, - sym_super, + ACTIONS(5332), 1, + anon_sym_RPAREN, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3341), 2, sym_line_comment, sym_block_comment, - [93771] = 5, + [93697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1170), 1, - sym_declaration_list, + ACTIONS(5332), 1, + anon_sym_RBRACK, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3342), 2, sym_line_comment, sym_block_comment, - [93788] = 5, + [93714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(499), 1, - sym_declaration_list, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(6589), 1, + anon_sym_for, STATE(3343), 2, sym_line_comment, sym_block_comment, - [93805] = 5, + [93731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6920), 1, - anon_sym_SEMI, - ACTIONS(6922), 1, - anon_sym_as, + ACTIONS(5588), 1, + sym_super, + ACTIONS(6924), 1, + sym_identifier, STATE(3344), 2, sym_line_comment, sym_block_comment, - [93822] = 5, + [93748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3894), 1, - anon_sym_COLON, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1339), 1, + sym_declaration_list, STATE(3345), 2, sym_line_comment, sym_block_comment, - [93839] = 5, + [93765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(735), 1, - sym_field_declaration_list, + ACTIONS(5724), 1, + sym_super, + ACTIONS(6888), 1, + sym_identifier, STATE(3346), 2, sym_line_comment, sym_block_comment, - [93856] = 5, + [93782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(700), 1, - sym_enum_variant_list, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(1045), 1, + sym_type_parameters, STATE(3347), 2, sym_line_comment, sym_block_comment, - [93873] = 4, + [93799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6924), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3348), 2, sym_line_comment, sym_block_comment, - [93888] = 5, + [93814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 1, - anon_sym_SEMI, - ACTIONS(6928), 1, - anon_sym_EQ, + ACTIONS(6343), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3349), 2, sym_line_comment, sym_block_comment, - [93905] = 5, + [93829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, - ACTIONS(6930), 1, - anon_sym_RPAREN, + ACTIONS(3434), 1, + anon_sym_LPAREN, + STATE(1159), 1, + sym_parameters, STATE(3350), 2, sym_line_comment, sym_block_comment, - [93922] = 5, + [93846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6932), 1, - sym_identifier, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(658), 1, + sym_field_declaration_list, STATE(3351), 2, sym_line_comment, sym_block_comment, - [93939] = 5, + [93863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_field_declaration_list, + STATE(1348), 1, + sym_declaration_list, STATE(3352), 2, sym_line_comment, sym_block_comment, - [93956] = 5, + [93880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2294), 1, - sym_parameters, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3970), 1, + anon_sym_COLON, STATE(3353), 2, sym_line_comment, sym_block_comment, - [93973] = 5, + [93897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RPAREN, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_declaration_list, STATE(3354), 2, sym_line_comment, sym_block_comment, - [93990] = 5, + [93914] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RBRACK, + ACTIONS(5724), 2, + sym_identifier, + sym_super, STATE(3355), 2, sym_line_comment, sym_block_comment, - [94007] = 5, + [93929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_RPAREN, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_declaration_list, STATE(3356), 2, sym_line_comment, sym_block_comment, - [94024] = 5, + [93946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6810), 1, anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_RBRACK, + ACTIONS(6926), 1, + anon_sym_RBRACE, STATE(3357), 2, sym_line_comment, sym_block_comment, - [94041] = 5, + [93963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2276), 1, + sym_parameters, STATE(3358), 2, sym_line_comment, sym_block_comment, - [94058] = 5, + [93980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_declaration_list, + ACTIONS(5280), 1, + anon_sym_RPAREN, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3359), 2, sym_line_comment, sym_block_comment, - [94075] = 5, + [93997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2263), 1, - sym_parameters, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6928), 1, + anon_sym_RPAREN, STATE(3360), 2, sym_line_comment, sym_block_comment, - [94092] = 4, + [94014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 2, - sym_identifier, - sym_super, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6928), 1, + anon_sym_RBRACK, STATE(3361), 2, sym_line_comment, sym_block_comment, - [94107] = 5, + [94031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, + ACTIONS(6810), 1, anon_sym_SEMI, - ACTIONS(6940), 1, - anon_sym_as, + ACTIONS(6930), 1, + anon_sym_RPAREN, STATE(3362), 2, sym_line_comment, sym_block_comment, - [94124] = 4, + [94048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6942), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6930), 1, + anon_sym_RBRACK, STATE(3363), 2, sym_line_comment, sym_block_comment, - [94139] = 5, + [94065] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, - anon_sym_COLON_COLON, + ACTIONS(6810), 1, + anon_sym_SEMI, + ACTIONS(6932), 1, + anon_sym_RBRACE, STATE(3364), 2, sym_line_comment, sym_block_comment, - [94156] = 4, + [94082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5423), 1, + anon_sym_LBRACE, + STATE(1163), 1, + sym_enum_variant_list, STATE(3365), 2, sym_line_comment, sym_block_comment, - [94171] = 5, + [94099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2300), 1, - sym_parameters, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6934), 1, + anon_sym_EQ, STATE(3366), 2, sym_line_comment, sym_block_comment, - [94188] = 5, + [94116] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6936), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3367), 2, sym_line_comment, sym_block_comment, - [94205] = 5, + [94131] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_COLON_COLON, + ACTIONS(5294), 2, + sym_identifier, + sym_super, STATE(3368), 2, sym_line_comment, sym_block_comment, - [94222] = 5, + [94146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - anon_sym_STAR_SLASH, - ACTIONS(6948), 1, - sym__block_comment_content, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(739), 1, + sym_field_declaration_list, STATE(3369), 2, sym_line_comment, sym_block_comment, - [94239] = 4, + [94163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 2, + ACTIONS(5588), 2, sym_identifier, sym_super, STATE(3370), 2, sym_line_comment, sym_block_comment, - [94254] = 5, + [94178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_declaration_list, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2307), 1, + sym_parameters, STATE(3371), 2, sym_line_comment, sym_block_comment, - [94271] = 4, + [94195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5286), 1, + anon_sym_RBRACK, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3372), 2, sym_line_comment, sym_block_comment, - [94286] = 5, + [94212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1173), 1, + sym_field_declaration_list, STATE(3373), 2, sym_line_comment, sym_block_comment, - [94303] = 5, + [94229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - sym_identifier, - ACTIONS(6828), 1, - sym_super, + ACTIONS(5280), 1, + anon_sym_RBRACK, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3374), 2, sym_line_comment, sym_block_comment, - [94320] = 5, + [94246] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6952), 1, - sym_identifier, + ACTIONS(5092), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_declaration_list, STATE(3375), 2, sym_line_comment, sym_block_comment, - [94337] = 5, + [94263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3954), 1, - anon_sym_COLON, + ACTIONS(6758), 1, + anon_sym_COLON_COLON, + ACTIONS(6802), 1, + anon_sym_RPAREN, STATE(3376), 2, sym_line_comment, sym_block_comment, - [94354] = 5, + [94280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, + ACTIONS(6938), 1, + anon_sym_STAR_SLASH, + ACTIONS(6940), 1, + sym__block_comment_content, STATE(3377), 2, sym_line_comment, sym_block_comment, - [94371] = 5, + [94297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6954), 1, - anon_sym_COLON_COLON, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2285), 1, + sym_parameters, STATE(3378), 2, sym_line_comment, sym_block_comment, - [94388] = 4, + [94314] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6942), 1, + anon_sym_SEMI, + ACTIONS(6944), 1, + anon_sym_EQ, STATE(3379), 2, sym_line_comment, sym_block_comment, - [94403] = 5, + [94331] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(6960), 1, - anon_sym_COLON_COLON, + STATE(232), 1, + sym_closure_parameters, STATE(3380), 2, sym_line_comment, sym_block_comment, - [94420] = 5, + [94348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6946), 1, + anon_sym_EQ, STATE(3381), 2, sym_line_comment, sym_block_comment, - [94437] = 4, + [94365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_field_declaration_list, STATE(3382), 2, sym_line_comment, sym_block_comment, - [94452] = 5, + [94382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4290), 1, + ACTIONS(6898), 1, + anon_sym_LPAREN, + ACTIONS(6948), 1, anon_sym_COLON_COLON, STATE(3383), 2, sym_line_comment, sym_block_comment, - [94469] = 5, + [94399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4306), 1, + ACTIONS(6950), 1, + anon_sym_LPAREN, + ACTIONS(6952), 1, anon_sym_COLON_COLON, STATE(3384), 2, sym_line_comment, sym_block_comment, - [94486] = 5, + [94416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym_declaration_list, + ACTIONS(3512), 1, + anon_sym_PLUS, + ACTIONS(4332), 1, + anon_sym_COLON_COLON, STATE(3385), 2, sym_line_comment, sym_block_comment, - [94503] = 5, + [94433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6898), 1, + ACTIONS(3512), 1, + anon_sym_PLUS, + ACTIONS(4288), 1, anon_sym_COLON_COLON, STATE(3386), 2, sym_line_comment, sym_block_comment, - [94520] = 5, + [94450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_enum_variant_list, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(6908), 1, + anon_sym_COLON_COLON, STATE(3387), 2, sym_line_comment, sym_block_comment, - [94537] = 5, + [94467] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(914), 1, - sym_type_parameters, + ACTIONS(6850), 2, + sym_identifier, + sym_super, STATE(3388), 2, sym_line_comment, sym_block_comment, - [94554] = 5, + [94482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6158), 1, - anon_sym_for, + ACTIONS(6954), 1, + anon_sym_SEMI, + ACTIONS(6956), 1, + anon_sym_as, STATE(3389), 2, sym_line_comment, sym_block_comment, - [94571] = 4, + [94499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(918), 1, + sym_type_parameters, STATE(3390), 2, sym_line_comment, sym_block_comment, - [94586] = 5, + [94516] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, + ACTIONS(6958), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3391), 2, sym_line_comment, sym_block_comment, - [94603] = 4, + [94531] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 2, - anon_sym_RBRACE, + ACTIONS(6654), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3392), 2, sym_line_comment, sym_block_comment, - [94618] = 5, + [94546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5092), 1, anon_sym_LBRACE, - STATE(748), 1, - sym_field_declaration_list, + STATE(1391), 1, + sym_declaration_list, STATE(3393), 2, sym_line_comment, sym_block_comment, - [94635] = 5, + [94563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(884), 1, - sym_type_parameters, + ACTIONS(5286), 1, + anon_sym_RPAREN, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3394), 2, sym_line_comment, sym_block_comment, - [94652] = 5, + [94580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6898), 1, + anon_sym_LPAREN, + ACTIONS(6960), 1, + anon_sym_COLON_COLON, STATE(3395), 2, sym_line_comment, sym_block_comment, - [94669] = 5, + [94597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6754), 1, - sym_identifier, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(6707), 1, + anon_sym_for, STATE(3396), 2, sym_line_comment, sym_block_comment, - [94686] = 4, + [94614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6962), 1, + anon_sym_BANG, + ACTIONS(6964), 1, + anon_sym_COLON_COLON, STATE(3397), 2, sym_line_comment, sym_block_comment, - [94701] = 5, + [94631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6964), 1, - anon_sym_COLON_COLON, + ACTIONS(5057), 1, + anon_sym_LT, + STATE(888), 1, + sym_type_parameters, STATE(3398), 2, sym_line_comment, sym_block_comment, - [94718] = 5, + [94648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(662), 1, - sym_enum_variant_list, + ACTIONS(6898), 1, + anon_sym_LPAREN, + ACTIONS(6966), 1, + anon_sym_COLON_COLON, STATE(3399), 2, sym_line_comment, sym_block_comment, - [94735] = 5, + [94665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, + ACTIONS(4642), 1, anon_sym_BANG, - ACTIONS(6968), 1, + ACTIONS(6964), 1, anon_sym_COLON_COLON, STATE(3400), 2, sym_line_comment, sym_block_comment, - [94752] = 5, + [94682] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(4006), 1, - anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_BANG, + ACTIONS(6968), 1, + anon_sym_COLON_COLON, STATE(3401), 2, sym_line_comment, sym_block_comment, - [94769] = 5, + [94699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3746), 1, - anon_sym_COLON, + ACTIONS(6970), 1, + anon_sym_LBRACK, + ACTIONS(6972), 1, + anon_sym_BANG, STATE(3402), 2, sym_line_comment, sym_block_comment, - [94786] = 5, + [94716] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6970), 1, - anon_sym_COLON_COLON, + ACTIONS(6974), 2, + sym_identifier, + sym_metavariable, STATE(3403), 2, sym_line_comment, sym_block_comment, - [94803] = 5, + [94731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6968), 1, - anon_sym_COLON_COLON, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_COLON, STATE(3404), 2, sym_line_comment, sym_block_comment, - [94820] = 5, + [94748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3894), 1, anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, STATE(3405), 2, sym_line_comment, sym_block_comment, - [94837] = 5, + [94765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, + ACTIONS(6976), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3406), 2, sym_line_comment, sym_block_comment, - [94854] = 5, + [94780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_declaration_list, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(6978), 1, + anon_sym_in, STATE(3407), 2, sym_line_comment, sym_block_comment, - [94871] = 5, + [94797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_LBRACK, - ACTIONS(6974), 1, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, + ACTIONS(5023), 1, anon_sym_BANG, STATE(3408), 2, sym_line_comment, sym_block_comment, - [94888] = 4, + [94814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_declaration_list, STATE(3409), 2, sym_line_comment, sym_block_comment, - [94903] = 5, + [94831] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, + ACTIONS(6980), 2, sym_identifier, - ACTIONS(6980), 1, - sym_super, + sym_metavariable, STATE(3410), 2, sym_line_comment, sym_block_comment, - [94920] = 4, + [94846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6982), 1, + anon_sym_LBRACK, + ACTIONS(6984), 1, + anon_sym_BANG, STATE(3411), 2, sym_line_comment, sym_block_comment, - [94935] = 4, + [94863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5204), 1, + anon_sym_COLON, + STATE(2568), 1, + sym_trait_bounds, STATE(3412), 2, sym_line_comment, sym_block_comment, - [94950] = 5, + [94880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6986), 1, - anon_sym_in, + ACTIONS(5055), 1, + anon_sym_LBRACE, + STATE(714), 1, + sym_field_declaration_list, STATE(3413), 2, sym_line_comment, sym_block_comment, - [94967] = 4, + [94897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 2, - sym_identifier, - sym_super, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(985), 1, + sym_type_parameters, STATE(3414), 2, sym_line_comment, sym_block_comment, - [94982] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(252), 1, - sym_closure_parameters, + ACTIONS(6786), 1, + anon_sym_LT, + STATE(986), 1, + sym_type_parameters, STATE(3415), 2, sym_line_comment, sym_block_comment, - [94999] = 4, + [94931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6986), 1, + anon_sym_SEMI, + ACTIONS(6988), 1, + anon_sym_EQ, STATE(3416), 2, sym_line_comment, sym_block_comment, - [95014] = 5, + [94948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1128), 1, - sym_parameters, + ACTIONS(5282), 1, + anon_sym_RBRACE, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3417), 2, sym_line_comment, sym_block_comment, - [95031] = 5, + [94965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(983), 1, - sym_type_parameters, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(5136), 1, + anon_sym_for, STATE(3418), 2, sym_line_comment, sym_block_comment, - [95048] = 5, + [94982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(984), 1, - sym_type_parameters, + ACTIONS(5724), 1, + sym_super, + ACTIONS(6770), 1, + sym_identifier, STATE(3419), 2, sym_line_comment, sym_block_comment, - [95065] = 5, + [94999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(2977), 1, - sym_lifetime, + ACTIONS(6776), 1, + sym_super, + ACTIONS(6990), 1, + sym_identifier, STATE(3420), 2, sym_line_comment, sym_block_comment, - [95082] = 5, + [95016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(6992), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3421), 2, sym_line_comment, sym_block_comment, - [95099] = 5, + [95031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5118), 1, - anon_sym_for, + ACTIONS(6994), 1, + anon_sym_SEMI, + ACTIONS(6996), 1, + anon_sym_as, STATE(3422), 2, sym_line_comment, sym_block_comment, - [95116] = 5, + [95048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym_field_declaration_list, + ACTIONS(4805), 1, + anon_sym_BANG, + ACTIONS(4871), 1, + anon_sym_COLON_COLON, STATE(3423), 2, sym_line_comment, sym_block_comment, - [95133] = 5, + [95065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, + ACTIONS(6998), 2, sym_identifier, - ACTIONS(6992), 1, - sym_mutable_specifier, + sym_metavariable, STATE(3424), 2, sym_line_comment, sym_block_comment, - [95150] = 5, + [95080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(5588), 1, + sym_super, + ACTIONS(7000), 1, + sym_identifier, STATE(3425), 2, sym_line_comment, sym_block_comment, - [95167] = 5, + [95097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(591), 1, - sym_enum_variant_list, + ACTIONS(7002), 1, + sym_identifier, + ACTIONS(7004), 1, + sym_super, STATE(3426), 2, sym_line_comment, sym_block_comment, - [95184] = 5, + [95114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(688), 1, + sym_enum_variant_list, STATE(3427), 2, sym_line_comment, sym_block_comment, - [95201] = 4, + [95131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(6705), 1, + anon_sym_for, STATE(3428), 2, sym_line_comment, sym_block_comment, - [95216] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [95148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(6709), 1, + anon_sym_for, STATE(3429), 2, sym_line_comment, sym_block_comment, - [95233] = 5, + [95165] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6718), 1, - anon_sym_for, + STATE(221), 1, + sym_closure_parameters, STATE(3430), 2, sym_line_comment, sym_block_comment, - [95250] = 5, + [95182] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, + ACTIONS(6723), 2, anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3431), 2, sym_line_comment, sym_block_comment, - [95267] = 5, + [95197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6720), 1, - anon_sym_for, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3822), 1, + anon_sym_COLON, STATE(3432), 2, sym_line_comment, sym_block_comment, - [95284] = 5, + [95214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, - sym_identifier, - ACTIONS(6998), 1, - sym_super, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(7006), 1, + anon_sym_in, STATE(3433), 2, sym_line_comment, sym_block_comment, - [95301] = 5, + [95231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3850), 1, - anon_sym_COLON, + ACTIONS(5378), 1, + anon_sym_RBRACE, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3434), 2, sym_line_comment, sym_block_comment, - [95318] = 4, + [95248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4805), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, STATE(3435), 2, sym_line_comment, sym_block_comment, - [95333] = 5, + [95265] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7002), 1, - anon_sym_in, + STATE(253), 1, + sym_closure_parameters, STATE(3436), 2, sym_line_comment, sym_block_comment, - [95350] = 5, + [95282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_parameters, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(6721), 1, + anon_sym_for, STATE(3437), 2, sym_line_comment, sym_block_comment, - [95367] = 5, + [95299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6728), 1, - anon_sym_for, + ACTIONS(7008), 1, + anon_sym_LBRACK, + ACTIONS(7010), 1, + anon_sym_BANG, STATE(3438), 2, sym_line_comment, sym_block_comment, - [95384] = 5, + [95316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6932), 1, - sym_identifier, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_in, STATE(3439), 2, sym_line_comment, sym_block_comment, - [95401] = 5, + [95333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, - anon_sym_LBRACK, - ACTIONS(7006), 1, - anon_sym_BANG, + ACTIONS(5555), 1, + anon_sym_PIPE, + ACTIONS(7014), 1, + anon_sym_in, STATE(3440), 2, sym_line_comment, sym_block_comment, - [95418] = 5, + [95350] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7008), 1, - anon_sym_in, + ACTIONS(7016), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3441), 2, sym_line_comment, sym_block_comment, - [95435] = 5, + [95365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5555), 1, anon_sym_PIPE, - ACTIONS(7010), 1, + ACTIONS(7018), 1, anon_sym_in, STATE(3442), 2, sym_line_comment, sym_block_comment, - [95452] = 5, + [95382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5555), 1, anon_sym_PIPE, - ACTIONS(7012), 1, + ACTIONS(7020), 1, anon_sym_in, STATE(3443), 2, sym_line_comment, sym_block_comment, - [95469] = 5, + [95399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7014), 1, - anon_sym_in, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2081), 1, + sym_parameters, STATE(3444), 2, sym_line_comment, sym_block_comment, - [95486] = 5, + [95416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2080), 1, - sym_parameters, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(733), 1, + sym_enum_variant_list, STATE(3445), 2, sym_line_comment, sym_block_comment, - [95503] = 5, + [95433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, - sym_identifier, - ACTIONS(6736), 1, - sym_mutable_specifier, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_enum_variant_list, STATE(3446), 2, sym_line_comment, sym_block_comment, - [95520] = 4, + [95450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 2, + ACTIONS(6728), 1, sym_identifier, - sym_metavariable, + ACTIONS(6732), 1, + sym_mutable_specifier, STATE(3447), 2, sym_line_comment, sym_block_comment, - [95535] = 4, + [95467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5380), 1, + anon_sym_RBRACE, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3448), 2, sym_line_comment, sym_block_comment, - [95550] = 5, + [95484] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_declaration_list, + ACTIONS(6366), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3449), 2, sym_line_comment, sym_block_comment, - [95567] = 5, + [95499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2077), 1, - sym_parameters, + ACTIONS(7022), 1, + sym_identifier, + ACTIONS(7024), 1, + sym_super, STATE(3450), 2, sym_line_comment, sym_block_comment, - [95584] = 4, + [95516] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(7026), 1, + sym_identifier, + ACTIONS(7028), 1, + sym_mutable_specifier, STATE(3451), 2, sym_line_comment, sym_block_comment, - [95599] = 5, + [95533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_LBRACK, - ACTIONS(7022), 1, - anon_sym_BANG, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2084), 1, + sym_parameters, STATE(3452), 2, sym_line_comment, sym_block_comment, - [95616] = 5, + [95550] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, + ACTIONS(5777), 1, + sym_super, + ACTIONS(5904), 1, sym_identifier, - ACTIONS(6203), 1, - sym_mutable_specifier, STATE(3453), 2, sym_line_comment, sym_block_comment, - [95633] = 5, + [95567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, - sym_identifier, - ACTIONS(7026), 1, - sym_mutable_specifier, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_declaration_list, STATE(3454), 2, sym_line_comment, sym_block_comment, - [95650] = 5, + [95584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2082), 1, - sym_parameters, + ACTIONS(7030), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3455), 2, sym_line_comment, sym_block_comment, - [95667] = 5, + [95599] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(636), 1, - sym_declaration_list, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + sym_mutable_specifier, STATE(3456), 2, sym_line_comment, sym_block_comment, - [95684] = 5, + [95616] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_declaration_list, + ACTIONS(5588), 1, + sym_super, + ACTIONS(6790), 1, + sym_identifier, STATE(3457), 2, sym_line_comment, sym_block_comment, - [95701] = 4, + [95633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2077), 1, + sym_parameters, STATE(3458), 2, sym_line_comment, sym_block_comment, - [95716] = 4, + [95650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - anon_sym_RBRACE, + ACTIONS(5043), 1, + anon_sym_LBRACE, + STATE(632), 1, + sym_declaration_list, STATE(3459), 2, sym_line_comment, sym_block_comment, - [95730] = 4, + [95667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, + ACTIONS(6916), 1, anon_sym_COLON_COLON, + ACTIONS(7036), 1, + anon_sym_RPAREN, STATE(3460), 2, sym_line_comment, sym_block_comment, - [95744] = 4, + [95684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, + ACTIONS(6784), 2, + sym_identifier, + sym_super, STATE(3461), 2, sym_line_comment, sym_block_comment, - [95758] = 4, + [95699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, - sym_identifier, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2395), 1, + sym_parameters, STATE(3462), 2, sym_line_comment, sym_block_comment, - [95772] = 4, + [95716] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACK, + ACTIONS(7038), 1, + anon_sym_COLON, STATE(3463), 2, sym_line_comment, sym_block_comment, - [95786] = 4, + [95730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_RBRACK, + ACTIONS(7040), 1, + sym_identifier, STATE(3464), 2, sym_line_comment, sym_block_comment, - [95800] = 4, + [95744] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 1, - anon_sym_SEMI, + ACTIONS(7042), 1, + sym_identifier, STATE(3465), 2, sym_line_comment, sym_block_comment, - [95814] = 4, - ACTIONS(103), 1, + [95758] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - anon_sym_RBRACK, + ACTIONS(7044), 1, + aux_sym_line_comment_token2, STATE(3466), 2, sym_line_comment, sym_block_comment, - [95828] = 4, + [95772] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RBRACK, + ACTIONS(7046), 1, + anon_sym_RBRACE, STATE(3467), 2, sym_line_comment, sym_block_comment, - [95842] = 4, + [95786] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - anon_sym_RBRACK, + ACTIONS(7048), 1, + anon_sym_SEMI, STATE(3468), 2, sym_line_comment, sym_block_comment, - [95856] = 4, + [95800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, + ACTIONS(6417), 1, anon_sym_RBRACE, STATE(3469), 2, sym_line_comment, sym_block_comment, - [95870] = 4, + [95814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_COLON, + ACTIONS(7050), 1, + anon_sym_RPAREN, STATE(3470), 2, sym_line_comment, sym_block_comment, - [95884] = 4, + [95828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - anon_sym_SEMI, + ACTIONS(7052), 1, + anon_sym_LT, STATE(3471), 2, sym_line_comment, sym_block_comment, - [95898] = 4, + [95842] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_LT2, + ACTIONS(3806), 1, + anon_sym_COLON_COLON, STATE(3472), 2, sym_line_comment, sym_block_comment, - [95912] = 4, + [95856] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, + ACTIONS(6571), 1, + anon_sym_RBRACE, STATE(3473), 2, sym_line_comment, sym_block_comment, - [95926] = 4, + [95870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, - anon_sym_RPAREN, + ACTIONS(7054), 1, + anon_sym_COLON, STATE(3474), 2, sym_line_comment, sym_block_comment, - [95940] = 4, + [95884] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - sym_identifier, + ACTIONS(7056), 1, + anon_sym_RBRACK, STATE(3475), 2, sym_line_comment, sym_block_comment, - [95954] = 4, + [95898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, + ACTIONS(7058), 1, + anon_sym_SEMI, STATE(3476), 2, sym_line_comment, sym_block_comment, - [95968] = 4, + [95912] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_COLON_COLON, + ACTIONS(7060), 1, + sym_identifier, STATE(3477), 2, sym_line_comment, sym_block_comment, - [95982] = 4, + [95926] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_fn, + ACTIONS(7062), 1, + anon_sym_COLON, STATE(3478), 2, sym_line_comment, sym_block_comment, - [95996] = 4, + [95940] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, - sym_identifier, + ACTIONS(7064), 1, + anon_sym_RBRACK, STATE(3479), 2, sym_line_comment, sym_block_comment, - [96010] = 4, + [95954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, + ACTIONS(7066), 1, + anon_sym_SEMI, STATE(3480), 2, sym_line_comment, sym_block_comment, - [96024] = 4, + [95968] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym__line_doc_content, + ACTIONS(7068), 1, + anon_sym_SEMI, STATE(3481), 2, sym_line_comment, sym_block_comment, - [96038] = 4, + [95982] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, - anon_sym_SEMI, + ACTIONS(5118), 1, + anon_sym_COLON_COLON, STATE(3482), 2, sym_line_comment, sym_block_comment, - [96052] = 4, + [95996] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - ts_builtin_sym_end, + ACTIONS(7070), 1, + anon_sym_COLON_COLON, STATE(3483), 2, sym_line_comment, sym_block_comment, - [96066] = 4, + [96010] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, - anon_sym_RPAREN, + ACTIONS(7072), 1, + anon_sym_fn, STATE(3484), 2, sym_line_comment, sym_block_comment, - [96080] = 4, + [96024] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_fn, + ACTIONS(7074), 1, + anon_sym_RBRACK, STATE(3485), 2, sym_line_comment, sym_block_comment, - [96094] = 4, + [96038] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - anon_sym_SEMI, + ACTIONS(6018), 1, + anon_sym_LBRACE, STATE(3486), 2, sym_line_comment, sym_block_comment, - [96108] = 4, + [96052] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_SEMI, + ACTIONS(4668), 1, + anon_sym_fn, STATE(3487), 2, sym_line_comment, sym_block_comment, - [96122] = 4, + [96066] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, + ACTIONS(7076), 1, sym__raw_string_literal_end, STATE(3488), 2, sym_line_comment, sym_block_comment, - [96136] = 4, + [96080] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - sym__raw_string_literal_end, + ACTIONS(7078), 1, + anon_sym_SEMI, STATE(3489), 2, sym_line_comment, sym_block_comment, - [96150] = 4, + [96094] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, + ACTIONS(6830), 1, anon_sym_SEMI, STATE(3490), 2, sym_line_comment, sym_block_comment, - [96164] = 4, + [96108] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, - anon_sym_SEMI, + ACTIONS(7080), 1, + anon_sym_EQ_GT, STATE(3491), 2, sym_line_comment, sym_block_comment, - [96178] = 4, + [96122] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_RBRACK, + ACTIONS(4092), 1, + anon_sym_COLON_COLON, STATE(3492), 2, sym_line_comment, sym_block_comment, - [96192] = 4, + [96136] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, - anon_sym_SEMI, + ACTIONS(7082), 1, + anon_sym_RPAREN, STATE(3493), 2, sym_line_comment, sym_block_comment, - [96206] = 4, + [96150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, - anon_sym_RPAREN, + ACTIONS(3214), 1, + anon_sym_PLUS, STATE(3494), 2, sym_line_comment, sym_block_comment, - [96220] = 4, + [96164] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7084), 1, - sym_identifier, + anon_sym_SEMI, STATE(3495), 2, sym_line_comment, sym_block_comment, - [96234] = 4, + [96178] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7086), 1, - sym_identifier, + anon_sym_SEMI, STATE(3496), 2, sym_line_comment, sym_block_comment, - [96248] = 4, + [96192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - anon_sym_SEMI, + ACTIONS(5936), 1, + anon_sym_RPAREN, STATE(3497), 2, sym_line_comment, sym_block_comment, - [96262] = 4, + [96206] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - anon_sym_SEMI, + ACTIONS(6315), 1, + anon_sym_RBRACE, STATE(3498), 2, sym_line_comment, sym_block_comment, - [96276] = 4, + [96220] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_RBRACE, + ACTIONS(7088), 1, + anon_sym_EQ, STATE(3499), 2, sym_line_comment, sym_block_comment, - [96290] = 4, + [96234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - sym_identifier, + ACTIONS(7090), 1, + anon_sym_SEMI, STATE(3500), 2, sym_line_comment, sym_block_comment, - [96304] = 4, + [96248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - sym_identifier, + ACTIONS(7092), 1, + anon_sym_COLON, STATE(3501), 2, sym_line_comment, sym_block_comment, - [96318] = 4, + [96262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, + ACTIONS(7094), 1, + sym_identifier, STATE(3502), 2, sym_line_comment, sym_block_comment, - [96332] = 4, + [96276] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, + ACTIONS(7096), 1, sym_identifier, STATE(3503), 2, sym_line_comment, sym_block_comment, - [96346] = 4, + [96290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_SEMI, + ACTIONS(7098), 1, + sym_identifier, STATE(3504), 2, sym_line_comment, sym_block_comment, - [96360] = 4, + [96304] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_RPAREN, + ACTIONS(965), 1, + anon_sym_EQ_GT, STATE(3505), 2, sym_line_comment, sym_block_comment, - [96374] = 4, + [96318] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, + ACTIONS(6180), 1, + anon_sym_RBRACE, STATE(3506), 2, sym_line_comment, sym_block_comment, - [96388] = 4, + [96332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, + ACTIONS(7100), 1, + anon_sym_EQ_GT, STATE(3507), 2, sym_line_comment, sym_block_comment, - [96402] = 4, + [96346] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - sym_self, + ACTIONS(6148), 1, + anon_sym_GT, STATE(3508), 2, sym_line_comment, sym_block_comment, - [96416] = 4, + [96360] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - anon_sym_EQ_GT, + ACTIONS(7102), 1, + anon_sym_SEMI, STATE(3509), 2, sym_line_comment, sym_block_comment, - [96430] = 4, + [96374] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_SEMI, + ACTIONS(957), 1, + anon_sym_EQ_GT, STATE(3510), 2, sym_line_comment, sym_block_comment, - [96444] = 4, + [96388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_EQ, + ACTIONS(7104), 1, + sym_identifier, STATE(3511), 2, sym_line_comment, sym_block_comment, - [96458] = 4, + [96402] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_RBRACK, + ACTIONS(7106), 1, + sym_identifier, STATE(3512), 2, sym_line_comment, sym_block_comment, - [96472] = 4, + [96416] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, + ACTIONS(7108), 1, + anon_sym_COLON, STATE(3513), 2, sym_line_comment, sym_block_comment, - [96486] = 4, + [96430] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, + ACTIONS(7110), 1, anon_sym_SEMI, STATE(3514), 2, sym_line_comment, sym_block_comment, - [96500] = 4, + [96444] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, + ACTIONS(6758), 1, + anon_sym_COLON_COLON, STATE(3515), 2, sym_line_comment, sym_block_comment, - [96514] = 4, + [96458] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - sym_identifier, + ACTIONS(6583), 1, + anon_sym_COLON_COLON, STATE(3516), 2, sym_line_comment, sym_block_comment, - [96528] = 4, + [96472] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_SEMI, + ACTIONS(7112), 1, + anon_sym_RBRACK, STATE(3517), 2, sym_line_comment, sym_block_comment, - [96542] = 4, + [96486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_RBRACE, + ACTIONS(7114), 1, + sym_identifier, STATE(3518), 2, sym_line_comment, sym_block_comment, - [96556] = 4, + [96500] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, + ACTIONS(7116), 1, + sym_self, STATE(3519), 2, sym_line_comment, sym_block_comment, - [96570] = 4, + [96514] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_EQ_GT, + ACTIONS(5803), 1, + anon_sym_RPAREN, STATE(3520), 2, sym_line_comment, sym_block_comment, - [96584] = 4, + [96528] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_SEMI, + ACTIONS(7118), 1, + sym__line_doc_content, STATE(3521), 2, sym_line_comment, sym_block_comment, - [96598] = 4, + [96542] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4155), 1, - sym_identifier, + ACTIONS(7120), 1, + anon_sym_SEMI, STATE(3522), 2, sym_line_comment, sym_block_comment, - [96612] = 4, + [96556] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - sym_identifier, + ACTIONS(7122), 1, + anon_sym_SEMI, STATE(3523), 2, sym_line_comment, sym_block_comment, - [96626] = 4, + [96570] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - sym__line_doc_content, + ACTIONS(5282), 1, + anon_sym_SEMI, STATE(3524), 2, sym_line_comment, sym_block_comment, - [96640] = 4, + [96584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - sym_identifier, + ACTIONS(6926), 1, + anon_sym_SEMI, STATE(3525), 2, sym_line_comment, sym_block_comment, - [96654] = 4, + [96598] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_EQ, + ACTIONS(7124), 1, + sym_identifier, STATE(3526), 2, sym_line_comment, sym_block_comment, - [96668] = 4, + [96612] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_RBRACE, + ACTIONS(7126), 1, + ts_builtin_sym_end, STATE(3527), 2, sym_line_comment, sym_block_comment, - [96682] = 4, + [96626] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, + ACTIONS(6473), 1, anon_sym_RBRACE, STATE(3528), 2, sym_line_comment, sym_block_comment, - [96696] = 4, + [96640] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_COLON, + ACTIONS(5716), 1, + anon_sym_RPAREN, STATE(3529), 2, sym_line_comment, sym_block_comment, - [96710] = 4, + [96654] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, + ACTIONS(7128), 1, anon_sym_SEMI, STATE(3530), 2, sym_line_comment, sym_block_comment, - [96724] = 4, + [96668] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - sym_identifier, + ACTIONS(6617), 1, + anon_sym_RBRACE, STATE(3531), 2, sym_line_comment, sym_block_comment, - [96738] = 4, + [96682] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - anon_sym_COLON, + ACTIONS(7130), 1, + anon_sym_SEMI, STATE(3532), 2, sym_line_comment, sym_block_comment, - [96752] = 4, + [96696] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - sym_identifier, + ACTIONS(7132), 1, + anon_sym_SEMI, STATE(3533), 2, sym_line_comment, sym_block_comment, - [96766] = 4, + [96710] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, + ACTIONS(7134), 1, + anon_sym_COLON_COLON, STATE(3534), 2, sym_line_comment, sym_block_comment, - [96780] = 4, + [96724] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_STAR_SLASH, + ACTIONS(6453), 1, + anon_sym_GT, STATE(3535), 2, sym_line_comment, sym_block_comment, - [96794] = 4, + [96738] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - sym_identifier, + ACTIONS(7136), 1, + anon_sym_SEMI, STATE(3536), 2, sym_line_comment, sym_block_comment, - [96808] = 4, + [96752] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - sym__raw_string_literal_end, + ACTIONS(7138), 1, + anon_sym_RBRACK, STATE(3537), 2, sym_line_comment, sym_block_comment, - [96822] = 4, + [96766] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_LT, + ACTIONS(7140), 1, + anon_sym_SEMI, STATE(3538), 2, sym_line_comment, sym_block_comment, - [96836] = 4, + [96780] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - sym__line_doc_content, + ACTIONS(7142), 1, + sym_identifier, STATE(3539), 2, sym_line_comment, sym_block_comment, - [96850] = 4, + [96794] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_LPAREN, + ACTIONS(7144), 1, + anon_sym_SEMI, STATE(3540), 2, sym_line_comment, sym_block_comment, - [96864] = 4, + [96808] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, + ACTIONS(7146), 1, anon_sym_SEMI, STATE(3541), 2, sym_line_comment, sym_block_comment, - [96878] = 4, + [96822] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_fn, + ACTIONS(6932), 1, + anon_sym_SEMI, STATE(3542), 2, sym_line_comment, sym_block_comment, - [96892] = 4, + [96836] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - sym_raw_string_literal_content, + ACTIONS(7148), 1, + sym__raw_string_literal_end, STATE(3543), 2, sym_line_comment, sym_block_comment, - [96906] = 4, + [96850] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, + ACTIONS(7150), 1, sym_identifier, STATE(3544), 2, sym_line_comment, sym_block_comment, - [96920] = 4, + [96864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_SEMI, + ACTIONS(7152), 1, + anon_sym_fn, STATE(3545), 2, sym_line_comment, sym_block_comment, - [96934] = 4, + [96878] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_LBRACK, + ACTIONS(7154), 1, + anon_sym_COLON, STATE(3546), 2, sym_line_comment, sym_block_comment, - [96948] = 4, + [96892] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_RPAREN, + ACTIONS(7156), 1, + sym__raw_string_literal_end, STATE(3547), 2, sym_line_comment, sym_block_comment, - [96962] = 4, + [96906] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, - anon_sym_PLUS, + ACTIONS(7158), 1, + sym_identifier, STATE(3548), 2, sym_line_comment, sym_block_comment, - [96976] = 4, + [96920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - sym__raw_string_literal_end, + ACTIONS(7160), 1, + anon_sym_EQ, STATE(3549), 2, sym_line_comment, sym_block_comment, - [96990] = 4, + [96934] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - anon_sym_SEMI, + ACTIONS(7162), 1, + anon_sym_STAR_SLASH, STATE(3550), 2, sym_line_comment, sym_block_comment, - [97004] = 4, + [96948] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym_identifier, + ACTIONS(6130), 1, + anon_sym_RBRACE, STATE(3551), 2, sym_line_comment, sym_block_comment, - [97018] = 4, + [96962] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_COLON_COLON, + ACTIONS(7164), 1, + anon_sym_SEMI, STATE(3552), 2, sym_line_comment, sym_block_comment, - [97032] = 4, + [96976] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - sym_identifier, + ACTIONS(7166), 1, + anon_sym_RBRACE, STATE(3553), 2, sym_line_comment, sym_block_comment, - [97046] = 4, + [96990] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_RBRACK, + ACTIONS(7168), 1, + sym_identifier, STATE(3554), 2, sym_line_comment, sym_block_comment, - [97060] = 4, + [97004] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - sym_identifier, + ACTIONS(7170), 1, + anon_sym_EQ_GT, STATE(3555), 2, sym_line_comment, sym_block_comment, - [97074] = 4, + [97018] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_COLON, + ACTIONS(7172), 1, + sym_raw_string_literal_content, STATE(3556), 2, sym_line_comment, sym_block_comment, - [97088] = 4, + [97032] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON_COLON, + ACTIONS(5578), 1, + anon_sym_RPAREN, STATE(3557), 2, sym_line_comment, sym_block_comment, - [97102] = 4, + [97046] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - anon_sym_RBRACK, + ACTIONS(7174), 1, + anon_sym_LPAREN, STATE(3558), 2, sym_line_comment, sym_block_comment, - [97116] = 4, + [97060] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, + ACTIONS(7176), 1, + anon_sym_SEMI, STATE(3559), 2, sym_line_comment, sym_block_comment, - [97130] = 4, + [97074] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_RBRACK, + ACTIONS(6810), 1, + anon_sym_SEMI, STATE(3560), 2, sym_line_comment, sym_block_comment, - [97144] = 4, + [97088] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, + ACTIONS(4143), 1, sym_identifier, STATE(3561), 2, sym_line_comment, sym_block_comment, - [97158] = 4, + [97102] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - anon_sym_RPAREN, + ACTIONS(7178), 1, + anon_sym_SEMI, STATE(3562), 2, sym_line_comment, sym_block_comment, - [97172] = 4, + [97116] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, + ACTIONS(7180), 1, + anon_sym_SEMI, STATE(3563), 2, sym_line_comment, sym_block_comment, - [97186] = 4, + [97130] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_EQ_GT, + ACTIONS(7182), 1, + anon_sym_RBRACK, STATE(3564), 2, sym_line_comment, sym_block_comment, - [97200] = 4, + [97144] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5918), 1, - anon_sym_RPAREN, + ACTIONS(7184), 1, + anon_sym_SEMI, STATE(3565), 2, sym_line_comment, sym_block_comment, - [97214] = 4, + [97158] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - anon_sym_STAR_SLASH, + ACTIONS(7186), 1, + sym_identifier, STATE(3566), 2, sym_line_comment, sym_block_comment, - [97228] = 4, + [97172] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, + ACTIONS(939), 1, anon_sym_RBRACK, STATE(3567), 2, sym_line_comment, sym_block_comment, - [97242] = 4, + [97186] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, + ACTIONS(7188), 1, sym__line_doc_content, STATE(3568), 2, sym_line_comment, sym_block_comment, - [97256] = 4, + [97200] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, + ACTIONS(7190), 1, + sym_identifier, STATE(3569), 2, sym_line_comment, sym_block_comment, - [97270] = 4, + [97214] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_EQ_GT, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, STATE(3570), 2, sym_line_comment, sym_block_comment, - [97284] = 4, + [97228] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_SEMI, + ACTIONS(7192), 1, + anon_sym_COLON, STATE(3571), 2, sym_line_comment, sym_block_comment, - [97298] = 4, + [97242] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - anon_sym_SEMI, + ACTIONS(7194), 1, + sym_identifier, STATE(3572), 2, sym_line_comment, sym_block_comment, - [97312] = 4, + [97256] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, + ACTIONS(7196), 1, anon_sym_RPAREN, STATE(3573), 2, sym_line_comment, sym_block_comment, - [97326] = 4, + [97270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - anon_sym_COLON, + ACTIONS(7198), 1, + sym_identifier, STATE(3574), 2, sym_line_comment, sym_block_comment, - [97340] = 4, + [97284] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - sym__raw_string_literal_end, + ACTIONS(7200), 1, + anon_sym_SEMI, STATE(3575), 2, sym_line_comment, sym_block_comment, - [97354] = 4, + [97298] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_GT, + ACTIONS(7202), 1, + sym_identifier, STATE(3576), 2, sym_line_comment, sym_block_comment, - [97368] = 4, + [97312] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, + ACTIONS(7204), 1, anon_sym_SEMI, STATE(3577), 2, sym_line_comment, sym_block_comment, - [97382] = 4, + [97326] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, + ACTIONS(7206), 1, + anon_sym_STAR_SLASH, STATE(3578), 2, sym_line_comment, sym_block_comment, - [97396] = 4, + [97340] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 1, - anon_sym_RPAREN, + ACTIONS(6398), 1, + anon_sym_GT, STATE(3579), 2, sym_line_comment, sym_block_comment, - [97410] = 4, + [97354] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, + ACTIONS(7208), 1, anon_sym_RBRACE, STATE(3580), 2, sym_line_comment, sym_block_comment, - [97424] = 4, + [97368] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_LPAREN, + ACTIONS(7210), 1, + sym__line_doc_content, STATE(3581), 2, sym_line_comment, sym_block_comment, - [97438] = 4, + [97382] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_COLON, + ACTIONS(7212), 1, + sym_identifier, STATE(3582), 2, sym_line_comment, sym_block_comment, - [97452] = 4, + [97396] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, + ACTIONS(7214), 1, sym_identifier, STATE(3583), 2, sym_line_comment, sym_block_comment, - [97466] = 4, + [97410] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, + ACTIONS(7216), 1, anon_sym_SEMI, STATE(3584), 2, sym_line_comment, sym_block_comment, - [97480] = 4, + [97424] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym_raw_string_literal_content, + ACTIONS(7218), 1, + anon_sym_SEMI, STATE(3585), 2, sym_line_comment, sym_block_comment, - [97494] = 4, + [97438] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4266), 1, - anon_sym_RPAREN, + ACTIONS(7220), 1, + sym_identifier, STATE(3586), 2, sym_line_comment, sym_block_comment, - [97508] = 4, + [97452] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - anon_sym_SEMI, + ACTIONS(7222), 1, + sym__line_doc_content, STATE(3587), 2, sym_line_comment, sym_block_comment, - [97522] = 4, + [97466] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, + ACTIONS(6058), 1, + anon_sym_RPAREN, STATE(3588), 2, sym_line_comment, sym_block_comment, - [97536] = 4, + [97480] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_COLON_COLON, + ACTIONS(7224), 1, + anon_sym_SEMI, STATE(3589), 2, sym_line_comment, sym_block_comment, - [97550] = 4, + [97494] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, + ACTIONS(7226), 1, + sym_raw_string_literal_content, STATE(3590), 2, sym_line_comment, sym_block_comment, - [97564] = 4, + [97508] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, - anon_sym_RBRACE, + ACTIONS(7228), 1, + sym__raw_string_literal_end, STATE(3591), 2, sym_line_comment, sym_block_comment, - [97578] = 4, + [97522] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7230), 1, - sym_identifier, + anon_sym_SEMI, STATE(3592), 2, sym_line_comment, sym_block_comment, - [97592] = 4, + [97536] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7232), 1, - sym_identifier, + anon_sym_LPAREN, STATE(3593), 2, sym_line_comment, sym_block_comment, - [97606] = 4, + [97550] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, + ACTIONS(4294), 1, anon_sym_COLON_COLON, STATE(3594), 2, sym_line_comment, sym_block_comment, - [97620] = 4, + [97564] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - sym_identifier, + ACTIONS(5894), 1, + anon_sym_COLON_COLON, STATE(3595), 2, sym_line_comment, sym_block_comment, - [97634] = 4, + [97578] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_SEMI, + ACTIONS(7234), 1, + anon_sym_EQ_GT, STATE(3596), 2, sym_line_comment, sym_block_comment, - [97648] = 4, + [97592] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - anon_sym_SEMI, + ACTIONS(6500), 1, + anon_sym_GT, STATE(3597), 2, sym_line_comment, sym_block_comment, - [97662] = 4, + [97606] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, - anon_sym_GT, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, STATE(3598), 2, sym_line_comment, sym_block_comment, - [97676] = 4, + [97620] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - anon_sym_SEMI, + ACTIONS(7236), 1, + anon_sym_COLON_COLON, STATE(3599), 2, sym_line_comment, sym_block_comment, - [97690] = 4, + [97634] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, - anon_sym_LT2, + ACTIONS(5292), 1, + anon_sym_SEMI, STATE(3600), 2, sym_line_comment, sym_block_comment, - [97704] = 4, + [97648] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, + ACTIONS(7238), 1, anon_sym_SEMI, STATE(3601), 2, sym_line_comment, sym_block_comment, - [97718] = 4, + [97662] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - anon_sym_fn, + ACTIONS(7240), 1, + anon_sym_LT2, STATE(3602), 2, sym_line_comment, sym_block_comment, - [97732] = 4, + [97676] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, - anon_sym_SEMI, + ACTIONS(7242), 1, + anon_sym_fn, STATE(3603), 2, sym_line_comment, sym_block_comment, - [97746] = 4, + [97690] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, - anon_sym_COLON_COLON, + ACTIONS(7244), 1, + sym_identifier, STATE(3604), 2, sym_line_comment, sym_block_comment, - [97760] = 4, + [97704] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, + ACTIONS(7246), 1, + anon_sym_LT2, STATE(3605), 2, sym_line_comment, sym_block_comment, - [97774] = 4, + [97718] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - anon_sym_SEMI, + ACTIONS(7248), 1, + sym_identifier, STATE(3606), 2, sym_line_comment, sym_block_comment, - [97788] = 4, + [97732] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_COLON_COLON, + ACTIONS(7250), 1, + anon_sym_fn, STATE(3607), 2, sym_line_comment, sym_block_comment, - [97802] = 4, + [97746] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, + ACTIONS(7252), 1, anon_sym_SEMI, STATE(3608), 2, sym_line_comment, sym_block_comment, - [97816] = 4, + [97760] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - anon_sym_SEMI, + ACTIONS(7254), 1, + anon_sym_COLON_COLON, STATE(3609), 2, sym_line_comment, sym_block_comment, - [97830] = 4, + [97774] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, - anon_sym_RBRACE, + ACTIONS(7256), 1, + anon_sym_RBRACK, STATE(3610), 2, sym_line_comment, sym_block_comment, - [97844] = 4, + [97788] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, + ACTIONS(7258), 1, + anon_sym_COLON, STATE(3611), 2, sym_line_comment, sym_block_comment, - [97858] = 4, + [97802] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(7260), 1, anon_sym_COLON_COLON, STATE(3612), 2, sym_line_comment, sym_block_comment, - [97872] = 4, + [97816] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - anon_sym_fn, + ACTIONS(7262), 1, + sym__raw_string_literal_end, STATE(3613), 2, sym_line_comment, sym_block_comment, - [97886] = 4, + [97830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - anon_sym_SEMI, + ACTIONS(985), 1, + anon_sym_RBRACK, STATE(3614), 2, sym_line_comment, sym_block_comment, - [97900] = 4, + [97844] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - anon_sym_LBRACE, + ACTIONS(7264), 1, + sym_identifier, STATE(3615), 2, sym_line_comment, sym_block_comment, - [97914] = 4, + [97858] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_SEMI, + ACTIONS(5065), 1, + anon_sym_COLON_COLON, STATE(3616), 2, sym_line_comment, sym_block_comment, - [97928] = 4, + [97872] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, + ACTIONS(7266), 1, + anon_sym_COLON_COLON, STATE(3617), 2, sym_line_comment, sym_block_comment, - [97942] = 4, + [97886] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_COLON_COLON, + ACTIONS(7268), 1, + anon_sym_fn, STATE(3618), 2, sym_line_comment, sym_block_comment, - [97956] = 4, + [97900] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, + ACTIONS(6070), 1, anon_sym_RBRACK, STATE(3619), 2, sym_line_comment, sym_block_comment, - [97970] = 4, + [97914] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, - sym_identifier, + ACTIONS(7270), 1, + anon_sym_LBRACE, STATE(3620), 2, sym_line_comment, sym_block_comment, - [97984] = 4, + [97928] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - sym_identifier, + ACTIONS(5672), 1, + anon_sym_RPAREN, STATE(3621), 2, sym_line_comment, sym_block_comment, - [97998] = 4, + [97942] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - anon_sym_SEMI, + ACTIONS(6646), 1, + anon_sym_RBRACE, STATE(3622), 2, sym_line_comment, sym_block_comment, - [98012] = 4, + [97956] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_identifier, + ACTIONS(7272), 1, + sym__frontmatter_end, STATE(3623), 2, sym_line_comment, sym_block_comment, - [98026] = 4, + [97970] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - sym_raw_string_literal_content, + ACTIONS(5551), 1, + anon_sym_RPAREN, STATE(3624), 2, sym_line_comment, sym_block_comment, - [98040] = 4, + [97984] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_RBRACE, + ACTIONS(7274), 1, + anon_sym_SEMI, STATE(3625), 2, sym_line_comment, sym_block_comment, - [98054] = 4, + [97998] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - sym_identifier, + ACTIONS(7276), 1, + anon_sym_RPAREN, STATE(3626), 2, sym_line_comment, sym_block_comment, - [98068] = 4, + [98012] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, - sym_identifier, + ACTIONS(7278), 1, + anon_sym_COLON, STATE(3627), 2, sym_line_comment, sym_block_comment, - [98082] = 4, + [98026] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, - anon_sym_COLON_COLON, + ACTIONS(7280), 1, + anon_sym_SEMI, STATE(3628), 2, sym_line_comment, sym_block_comment, - [98096] = 4, + [98040] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RPAREN, + ACTIONS(7282), 1, + sym_raw_string_literal_content, STATE(3629), 2, sym_line_comment, sym_block_comment, - [98110] = 4, + [98054] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, + ACTIONS(6026), 1, + anon_sym_LBRACE, STATE(3630), 2, sym_line_comment, sym_block_comment, - [98124] = 4, + [98068] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - anon_sym_COLON_COLON, + ACTIONS(3160), 1, + anon_sym_PLUS, STATE(3631), 2, sym_line_comment, sym_block_comment, - [98138] = 4, + [98082] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - sym_identifier, + ACTIONS(6162), 1, + anon_sym_RBRACE, STATE(3632), 2, sym_line_comment, sym_block_comment, - [98152] = 4, + [98096] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym_identifier, + ACTIONS(7284), 1, + anon_sym_COLON_COLON, STATE(3633), 2, sym_line_comment, sym_block_comment, - [98166] = 4, + [98110] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - anon_sym_COLON_COLON, + ACTIONS(7286), 1, + sym_identifier, STATE(3634), 2, sym_line_comment, sym_block_comment, - [98180] = 4, + [98124] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, + ACTIONS(7288), 1, sym_identifier, STATE(3635), 2, sym_line_comment, sym_block_comment, - [98194] = 4, + [98138] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - anon_sym_COLON, + ACTIONS(7290), 1, + sym_identifier, STATE(3636), 2, sym_line_comment, sym_block_comment, - [98208] = 4, + [98152] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, - sym_identifier, + ACTIONS(7292), 1, + anon_sym_SEMI, STATE(3637), 2, sym_line_comment, sym_block_comment, - [98222] = 4, + [98166] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, + ACTIONS(7294), 1, sym_identifier, STATE(3638), 2, sym_line_comment, sym_block_comment, - [98236] = 4, + [98180] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, + ACTIONS(7296), 1, anon_sym_COLON_COLON, STATE(3639), 2, sym_line_comment, sym_block_comment, - [98250] = 4, + [98194] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_LBRACE, + ACTIONS(7298), 1, + anon_sym_COLON, STATE(3640), 2, sym_line_comment, sym_block_comment, - [98264] = 4, + [98208] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, - anon_sym_LBRACK, + ACTIONS(893), 1, + anon_sym_RBRACK, STATE(3641), 2, sym_line_comment, sym_block_comment, - [98278] = 4, + [98222] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_fn, + ACTIONS(7300), 1, + anon_sym_SEMI, STATE(3642), 2, sym_line_comment, sym_block_comment, - [98292] = 4, + [98236] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5824), 1, - anon_sym_RBRACK, + ACTIONS(7302), 1, + anon_sym_COLON, STATE(3643), 2, sym_line_comment, sym_block_comment, - [98306] = 4, + [98250] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_SEMI, + ACTIONS(7304), 1, + anon_sym_COLON_COLON, STATE(3644), 2, sym_line_comment, sym_block_comment, - [98320] = 4, + [98264] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - sym_raw_string_literal_content, + ACTIONS(7306), 1, + anon_sym_LBRACE, STATE(3645), 2, sym_line_comment, sym_block_comment, - [98334] = 4, + [98278] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + ACTIONS(7308), 1, + sym_identifier, STATE(3646), 2, sym_line_comment, sym_block_comment, - [98348] = 4, + [98292] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, - anon_sym_RBRACK, + ACTIONS(4865), 1, + anon_sym_COLON_COLON, STATE(3647), 2, sym_line_comment, sym_block_comment, - [98362] = 4, + [98306] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, + ACTIONS(7310), 1, + anon_sym_EQ_GT, STATE(3648), 2, sym_line_comment, sym_block_comment, - [98376] = 4, + [98320] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - anon_sym_SEMI, + ACTIONS(7312), 1, + sym_identifier, STATE(3649), 2, sym_line_comment, sym_block_comment, - [98390] = 4, + [98334] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_COLON, + ACTIONS(7314), 1, + sym_raw_string_literal_content, STATE(3650), 2, sym_line_comment, sym_block_comment, - [98404] = 4, + [98348] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, - anon_sym_LBRACE, + ACTIONS(3614), 1, + anon_sym_COLON_COLON, STATE(3651), 2, sym_line_comment, sym_block_comment, - [98418] = 4, + [98362] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - sym_raw_string_literal_content, + ACTIONS(7316), 1, + sym_identifier, STATE(3652), 2, sym_line_comment, sym_block_comment, - [98432] = 4, + [98376] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5282), 1, + ACTIONS(7318), 1, anon_sym_COLON_COLON, STATE(3653), 2, sym_line_comment, sym_block_comment, - [98446] = 4, + [98390] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, + ACTIONS(7320), 1, + anon_sym_SEMI, STATE(3654), 2, sym_line_comment, sym_block_comment, - [98460] = 4, + [98404] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - sym_raw_string_literal_content, + ACTIONS(748), 1, + anon_sym_RBRACK, STATE(3655), 2, sym_line_comment, sym_block_comment, - [98474] = 4, + [98418] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, + ACTIONS(7322), 1, anon_sym_LBRACE, STATE(3656), 2, sym_line_comment, sym_block_comment, - [98488] = 4, + [98432] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5798), 1, - anon_sym_COLON_COLON, + ACTIONS(7324), 1, + sym_raw_string_literal_content, STATE(3657), 2, sym_line_comment, sym_block_comment, - [98502] = 4, + [98446] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(5288), 1, anon_sym_COLON_COLON, STATE(3658), 2, sym_line_comment, sym_block_comment, - [98516] = 4, + [98460] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, - anon_sym_LBRACE, + ACTIONS(7326), 1, + anon_sym_COLON_COLON, STATE(3659), 2, sym_line_comment, sym_block_comment, - [98530] = 4, + [98474] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - anon_sym_COLON_COLON, + ACTIONS(7328), 1, + anon_sym_SEMI, STATE(3660), 2, sym_line_comment, sym_block_comment, - [98544] = 4, + [98488] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, + ACTIONS(6062), 1, + anon_sym_LBRACE, STATE(3661), 2, sym_line_comment, sym_block_comment, - [98558] = 4, + [98502] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5320), 1, + ACTIONS(5934), 1, anon_sym_COLON_COLON, STATE(3662), 2, sym_line_comment, sym_block_comment, - [98572] = 4, + [98516] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, + ACTIONS(7330), 1, anon_sym_COLON_COLON, STATE(3663), 2, sym_line_comment, sym_block_comment, - [98586] = 4, + [98530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, - anon_sym_COLON_COLON, + ACTIONS(6076), 1, + anon_sym_LBRACE, STATE(3664), 2, sym_line_comment, sym_block_comment, - [98600] = 4, + [98544] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_SEMI, + ACTIONS(7332), 1, + anon_sym_COLON_COLON, STATE(3665), 2, sym_line_comment, sym_block_comment, - [98614] = 4, + [98558] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - sym_identifier, + ACTIONS(5348), 1, + anon_sym_COLON_COLON, STATE(3666), 2, sym_line_comment, sym_block_comment, - [98628] = 4, + [98572] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, - anon_sym_SEMI, + ACTIONS(5374), 1, + anon_sym_COLON_COLON, STATE(3667), 2, sym_line_comment, sym_block_comment, - [98642] = 4, + [98586] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - sym_identifier, + ACTIONS(4288), 1, + anon_sym_COLON_COLON, STATE(3668), 2, sym_line_comment, sym_block_comment, - [98656] = 4, + [98600] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - anon_sym_COLON, + ACTIONS(7334), 1, + anon_sym_COLON_COLON, STATE(3669), 2, sym_line_comment, sym_block_comment, - [98670] = 4, + [98614] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_LBRACK, + ACTIONS(7336), 1, + anon_sym_SEMI, STATE(3670), 2, sym_line_comment, sym_block_comment, - [98684] = 4, + [98628] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_SEMI, + ACTIONS(7338), 1, + anon_sym_RBRACE, STATE(3671), 2, sym_line_comment, sym_block_comment, - [98698] = 4, + [98642] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, + ACTIONS(7340), 1, anon_sym_SEMI, STATE(3672), 2, sym_line_comment, sym_block_comment, - [98712] = 4, + [98656] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, + ACTIONS(7342), 1, + anon_sym_SEMI, STATE(3673), 2, sym_line_comment, sym_block_comment, - [98726] = 4, + [98670] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, + ACTIONS(7344), 1, + anon_sym_COLON, STATE(3674), 2, sym_line_comment, sym_block_comment, - [98740] = 4, + [98684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_SEMI, + ACTIONS(7346), 1, + anon_sym_LBRACK, STATE(3675), 2, sym_line_comment, sym_block_comment, - [98754] = 4, + [98698] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - anon_sym_LBRACK, + ACTIONS(7348), 1, + sym_frontmatter_content, STATE(3676), 2, sym_line_comment, sym_block_comment, - [98768] = 4, + [98712] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, - anon_sym_COLON, + ACTIONS(7350), 1, + sym_identifier, STATE(3677), 2, sym_line_comment, sym_block_comment, - [98782] = 4, + [98726] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, - anon_sym_COLON, + ACTIONS(7352), 1, + anon_sym_SEMI, STATE(3678), 2, sym_line_comment, sym_block_comment, - [98796] = 4, + [98740] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - sym_identifier, + ACTIONS(4308), 1, + anon_sym_RPAREN, STATE(3679), 2, sym_line_comment, sym_block_comment, - [98810] = 4, + [98754] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, + ACTIONS(7354), 1, sym_identifier, STATE(3680), 2, sym_line_comment, sym_block_comment, - [98824] = 4, + [98768] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - sym_identifier, + ACTIONS(7356), 1, + anon_sym_LBRACK, STATE(3681), 2, sym_line_comment, sym_block_comment, - [98838] = 4, + [98782] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, + ACTIONS(7358), 1, anon_sym_COLON, STATE(3682), 2, sym_line_comment, sym_block_comment, - [98852] = 4, + [98796] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, + ACTIONS(7360), 1, anon_sym_COLON, STATE(3683), 2, sym_line_comment, sym_block_comment, - [98866] = 4, + [98810] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - sym_identifier, + ACTIONS(7362), 1, + anon_sym_RBRACE, STATE(3684), 2, sym_line_comment, sym_block_comment, - [98880] = 4, + [98824] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, - sym_identifier, + ACTIONS(7364), 1, + anon_sym_RBRACK, STATE(3685), 2, sym_line_comment, sym_block_comment, - [98894] = 4, + [98838] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, - sym_identifier, + ACTIONS(7366), 1, + anon_sym_SEMI, STATE(3686), 2, sym_line_comment, sym_block_comment, - [98908] = 4, + [98852] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, + ACTIONS(7368), 1, anon_sym_SEMI, STATE(3687), 2, sym_line_comment, sym_block_comment, - [98922] = 4, + [98866] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, + ACTIONS(7370), 1, anon_sym_COLON, STATE(3688), 2, sym_line_comment, sym_block_comment, - [98936] = 4, + [98880] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - anon_sym_GT, + ACTIONS(7372), 1, + anon_sym_RBRACK, STATE(3689), 2, sym_line_comment, sym_block_comment, - [98950] = 4, + [98894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym__raw_string_literal_end, + ACTIONS(7374), 1, + sym_raw_string_literal_content, STATE(3690), 2, sym_line_comment, sym_block_comment, - [98964] = 4, + [98908] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_RBRACE, + ACTIONS(6836), 1, + anon_sym_SEMI, STATE(3691), 2, sym_line_comment, sym_block_comment, - [98978] = 4, + [98922] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_COLON_COLON, + ACTIONS(7376), 1, + sym_identifier, STATE(3692), 2, sym_line_comment, sym_block_comment, - [98992] = 4, + [98936] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_COLON, + ACTIONS(7378), 1, + sym_identifier, STATE(3693), 2, sym_line_comment, sym_block_comment, - [99006] = 4, + [98950] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_EQ_GT, + ACTIONS(7380), 1, + anon_sym_fn, STATE(3694), 2, sym_line_comment, sym_block_comment, - [99020] = 4, + [98964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, + ACTIONS(7382), 1, + anon_sym_SEMI, STATE(3695), 2, sym_line_comment, sym_block_comment, - [99034] = 4, + [98978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_PLUS, + ACTIONS(7384), 1, + anon_sym_COLON, STATE(3696), 2, sym_line_comment, sym_block_comment, - [99048] = 4, + [98992] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, + ACTIONS(7386), 1, sym_identifier, STATE(3697), 2, sym_line_comment, sym_block_comment, - [99062] = 4, + [99006] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - anon_sym_COLON, + ACTIONS(7388), 1, + sym_identifier, STATE(3698), 2, sym_line_comment, sym_block_comment, - [99076] = 4, + [99020] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - anon_sym_SEMI, + ACTIONS(7390), 1, + sym_identifier, STATE(3699), 2, sym_line_comment, sym_block_comment, - [99090] = 4, + [99034] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_SEMI, + ACTIONS(7392), 1, + sym_identifier, STATE(3700), 2, sym_line_comment, sym_block_comment, - [99104] = 4, + [99048] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, - anon_sym_SEMI, + ACTIONS(7394), 1, + sym_identifier, STATE(3701), 2, sym_line_comment, sym_block_comment, - [99118] = 4, + [99062] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, - anon_sym_COLON, + ACTIONS(7396), 1, + sym_identifier, STATE(3702), 2, sym_line_comment, sym_block_comment, - [99132] = 4, + [99076] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, - anon_sym_SEMI, + ACTIONS(7398), 1, + anon_sym_COLON, STATE(3703), 2, sym_line_comment, sym_block_comment, - [99146] = 4, + [99090] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - anon_sym_SEMI, + ACTIONS(7400), 1, + anon_sym_RBRACK, STATE(3704), 2, sym_line_comment, sym_block_comment, - [99160] = 4, + [99104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, - anon_sym_EQ_GT, + ACTIONS(5035), 1, + anon_sym_COLON_COLON, STATE(3705), 2, sym_line_comment, sym_block_comment, - [99174] = 4, + [99118] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, - sym_identifier, + ACTIONS(6252), 1, + anon_sym_RBRACE, STATE(3706), 2, sym_line_comment, sym_block_comment, - [99188] = 4, + [99132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LBRACE, + ACTIONS(7402), 1, + anon_sym_COLON, STATE(3707), 2, sym_line_comment, sym_block_comment, - [99202] = 4, + [99146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, + ACTIONS(5378), 1, anon_sym_SEMI, STATE(3708), 2, sym_line_comment, sym_block_comment, - [99216] = 4, + [99160] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_RBRACK, + ACTIONS(7404), 1, + anon_sym_SEMI, STATE(3709), 2, sym_line_comment, sym_block_comment, - [99230] = 4, + [99174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, + ACTIONS(7406), 1, anon_sym_SEMI, STATE(3710), 2, sym_line_comment, sym_block_comment, - [99244] = 4, + [99188] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, - anon_sym_COLON, + ACTIONS(4248), 1, + anon_sym_COLON_COLON, STATE(3711), 2, sym_line_comment, sym_block_comment, - [99258] = 4, + [99202] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, + ACTIONS(7408), 1, anon_sym_COLON_COLON, STATE(3712), 2, sym_line_comment, sym_block_comment, - [99272] = 4, + [99216] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_SEMI, + ACTIONS(7410), 1, + sym_identifier, STATE(3713), 2, sym_line_comment, sym_block_comment, - [99286] = 4, + [99230] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(4753), 1, anon_sym_COLON_COLON, STATE(3714), 2, sym_line_comment, sym_block_comment, - [99300] = 4, - ACTIONS(3), 1, + [99244] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - aux_sym_line_comment_token2, + ACTIONS(7412), 1, + anon_sym_SEMI, STATE(3715), 2, sym_line_comment, sym_block_comment, - [99314] = 4, + [99258] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - anon_sym_SEMI, + ACTIONS(7414), 1, + anon_sym_COLON, STATE(3716), 2, sym_line_comment, sym_block_comment, - [99328] = 4, + [99272] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, - anon_sym_SEMI, + ACTIONS(7416), 1, + sym_identifier, STATE(3717), 2, sym_line_comment, sym_block_comment, - [99342] = 4, + [99286] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, - anon_sym_EQ, + ACTIONS(3178), 1, + anon_sym_PLUS, STATE(3718), 2, sym_line_comment, sym_block_comment, - [99356] = 4, + [99300] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, + ACTIONS(7418), 1, + anon_sym_SEMI, STATE(3719), 2, sym_line_comment, sym_block_comment, - [99370] = 4, + [99314] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - anon_sym_EQ_GT, + ACTIONS(7420), 1, + sym_identifier, STATE(3720), 2, sym_line_comment, sym_block_comment, - [99384] = 4, + [99328] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, - sym_identifier, + ACTIONS(7422), 1, + anon_sym_COLON, STATE(3721), 2, sym_line_comment, sym_block_comment, - [99398] = 4, + [99342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - anon_sym_SEMI, + ACTIONS(7424), 1, + anon_sym_COLON_COLON, STATE(3722), 2, sym_line_comment, sym_block_comment, - [99412] = 4, + [99356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, - anon_sym_RPAREN, + ACTIONS(7426), 1, + anon_sym_EQ, STATE(3723), 2, sym_line_comment, sym_block_comment, - [99426] = 4, + [99370] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, - anon_sym_SEMI, + ACTIONS(7428), 1, + sym_identifier, STATE(3724), 2, sym_line_comment, sym_block_comment, - [99440] = 4, + [99384] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_LT2, + ACTIONS(6126), 1, + anon_sym_RBRACE, STATE(3725), 2, sym_line_comment, sym_block_comment, - [99454] = 4, + [99398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, - anon_sym_COLON, + ACTIONS(7430), 1, + anon_sym_RBRACE, STATE(3726), 2, sym_line_comment, sym_block_comment, - [99468] = 4, + [99412] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - anon_sym_EQ, + ACTIONS(7432), 1, + sym__raw_string_literal_end, STATE(3727), 2, sym_line_comment, sym_block_comment, - [99482] = 4, + [99426] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - anon_sym_RPAREN, + ACTIONS(7434), 1, + sym_identifier, STATE(3728), 2, sym_line_comment, sym_block_comment, - [99496] = 4, + [99440] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, - anon_sym_COLON, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, STATE(3729), 2, sym_line_comment, sym_block_comment, - [99510] = 4, + [99454] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7436), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, STATE(3730), 2, sym_line_comment, sym_block_comment, - [99524] = 4, + [99468] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - anon_sym_LBRACK, + ACTIONS(4296), 1, + anon_sym_RPAREN, STATE(3731), 2, sym_line_comment, sym_block_comment, - [99538] = 4, + [99482] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, + ACTIONS(7438), 1, anon_sym_COLON, STATE(3732), 2, sym_line_comment, sym_block_comment, - [99552] = 4, + [99496] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - anon_sym_fn, + ACTIONS(7440), 1, + anon_sym_EQ, STATE(3733), 2, sym_line_comment, sym_block_comment, - [99566] = 4, + [99510] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, + ACTIONS(7442), 1, + anon_sym_SEMI, STATE(3734), 2, sym_line_comment, sym_block_comment, - [99580] = 4, + [99524] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195204,337 +195753,337 @@ static const uint16_t ts_small_parse_table[] = { STATE(3735), 2, sym_line_comment, sym_block_comment, - [99594] = 4, + [99538] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7446), 1, - anon_sym_COLON, + anon_sym_LBRACK, STATE(3736), 2, sym_line_comment, sym_block_comment, - [99608] = 4, + [99552] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7448), 1, - anon_sym_RBRACE, + anon_sym_LBRACK, STATE(3737), 2, sym_line_comment, sym_block_comment, - [99622] = 4, + [99566] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7450), 1, - anon_sym_COLON_COLON, + anon_sym_COLON, STATE(3738), 2, sym_line_comment, sym_block_comment, - [99636] = 4, + [99580] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7452), 1, - anon_sym_COLON, + anon_sym_COLON_COLON, STATE(3739), 2, sym_line_comment, sym_block_comment, - [99650] = 4, + [99594] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, - anon_sym_COLON, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, STATE(3740), 2, sym_line_comment, sym_block_comment, - [99664] = 4, + [99608] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, + ACTIONS(7454), 1, anon_sym_COLON, STATE(3741), 2, sym_line_comment, sym_block_comment, - [99678] = 4, + [99622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, - sym_identifier, + ACTIONS(7456), 1, + anon_sym_SEMI, STATE(3742), 2, sym_line_comment, sym_block_comment, - [99692] = 4, + [99636] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4698), 1, - anon_sym_fn, + ACTIONS(5799), 1, + anon_sym_RPAREN, STATE(3743), 2, sym_line_comment, sym_block_comment, - [99706] = 4, + [99650] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6454), 1, - anon_sym_GT, + ACTIONS(7458), 1, + anon_sym_RPAREN, STATE(3744), 2, sym_line_comment, sym_block_comment, - [99720] = 4, + [99664] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7460), 1, - anon_sym_SEMI, + anon_sym_COLON, STATE(3745), 2, sym_line_comment, sym_block_comment, - [99734] = 4, + [99678] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7462), 1, - sym_identifier, + anon_sym_COLON, STATE(3746), 2, sym_line_comment, sym_block_comment, - [99748] = 4, + [99692] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7464), 1, - anon_sym_SEMI, + anon_sym_COLON, STATE(3747), 2, sym_line_comment, sym_block_comment, - [99762] = 4, + [99706] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7466), 1, - anon_sym_EQ_GT, + anon_sym_LBRACK, STATE(3748), 2, sym_line_comment, sym_block_comment, - [99776] = 4, + [99720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - sym__line_doc_content, + ACTIONS(4692), 1, + anon_sym_fn, STATE(3749), 2, sym_line_comment, sym_block_comment, - [99790] = 4, + [99734] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, - sym_identifier, + ACTIONS(7468), 1, + anon_sym_LT2, STATE(3750), 2, sym_line_comment, sym_block_comment, - [99804] = 4, + [99748] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, + ACTIONS(5380), 1, + anon_sym_SEMI, STATE(3751), 2, sym_line_comment, sym_block_comment, - [99818] = 4, + [99762] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, - anon_sym_SEMI, + ACTIONS(7470), 1, + anon_sym_LBRACK, STATE(3752), 2, sym_line_comment, sym_block_comment, - [99832] = 4, + [99776] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - sym_identifier, + ACTIONS(7472), 1, + anon_sym_COLON, STATE(3753), 2, sym_line_comment, sym_block_comment, - [99846] = 4, + [99790] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, + ACTIONS(7474), 1, anon_sym_fn, STATE(3754), 2, sym_line_comment, sym_block_comment, - [99860] = 4, + [99804] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, - anon_sym_SEMI, + ACTIONS(3164), 1, + anon_sym_PLUS, STATE(3755), 2, sym_line_comment, sym_block_comment, - [99874] = 4, + [99818] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_COLON, + ACTIONS(7476), 1, + sym_identifier, STATE(3756), 2, sym_line_comment, sym_block_comment, - [99888] = 4, + [99832] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, + ACTIONS(7478), 1, + anon_sym_SEMI, STATE(3757), 2, sym_line_comment, sym_block_comment, - [99902] = 4, + [99846] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_SEMI, + ACTIONS(7480), 1, + anon_sym_RBRACE, STATE(3758), 2, sym_line_comment, sym_block_comment, - [99916] = 4, + [99860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, - anon_sym_COLON_COLON, + ACTIONS(7482), 1, + sym_identifier, STATE(3759), 2, sym_line_comment, sym_block_comment, - [99930] = 4, + [99874] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7484), 1, - anon_sym_SEMI, + anon_sym_fn, STATE(3760), 2, sym_line_comment, sym_block_comment, - [99944] = 4, + [99888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7486), 1, - anon_sym_SEMI, + anon_sym_COLON_COLON, STATE(3761), 2, sym_line_comment, sym_block_comment, - [99958] = 4, + [99902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7488), 1, - anon_sym_COLON, + sym_identifier, STATE(3762), 2, sym_line_comment, sym_block_comment, - [99972] = 4, + [99916] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7490), 1, - sym_identifier, + anon_sym_RBRACE, STATE(3763), 2, sym_line_comment, sym_block_comment, - [99986] = 4, + [99930] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7492), 1, - sym_identifier, + anon_sym_SEMI, STATE(3764), 2, sym_line_comment, sym_block_comment, - [100000] = 4, + [99944] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7494), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, STATE(3765), 2, sym_line_comment, sym_block_comment, - [100014] = 4, + [99958] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7496), 1, - anon_sym_fn, + anon_sym_EQ_GT, STATE(3766), 2, sym_line_comment, sym_block_comment, - [100028] = 4, + [99972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7498), 1, - sym_identifier, + anon_sym_RPAREN, STATE(3767), 2, sym_line_comment, sym_block_comment, - [100042] = 4, + [99986] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7500), 1, - sym_identifier, + sym__line_doc_content, STATE(3768), 2, sym_line_comment, sym_block_comment, - [100056] = 4, + [100000] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -195544,64 +196093,104 @@ static const uint16_t ts_small_parse_table[] = { STATE(3769), 2, sym_line_comment, sym_block_comment, - [100070] = 4, + [100014] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7504), 1, - anon_sym_SEMI, + sym_identifier, STATE(3770), 2, sym_line_comment, sym_block_comment, - [100084] = 4, + [100028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7506), 1, - sym_identifier, + ACTIONS(6001), 1, + anon_sym_RBRACK, STATE(3771), 2, sym_line_comment, sym_block_comment, - [100098] = 4, + [100042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, + ACTIONS(7506), 1, sym_identifier, STATE(3772), 2, sym_line_comment, sym_block_comment, - [100112] = 4, + [100056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - anon_sym_RBRACE, + ACTIONS(7508), 1, + sym_identifier, STATE(3773), 2, sym_line_comment, sym_block_comment, - [100126] = 4, + [100070] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7510), 1, - anon_sym_fn, + anon_sym_COLON_COLON, STATE(3774), 2, sym_line_comment, sym_block_comment, + [100084] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7512), 1, + sym_identifier, + STATE(3775), 2, + sym_line_comment, + sym_block_comment, + [100098] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7514), 1, + sym_identifier, + STATE(3776), 2, + sym_line_comment, + sym_block_comment, + [100112] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7516), 1, + anon_sym_SEMI, + STATE(3777), 2, + sym_line_comment, + sym_block_comment, + [100126] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7518), 1, + anon_sym_SEMI, + STATE(3778), 2, + sym_line_comment, + sym_block_comment, [100140] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, + ACTIONS(5842), 1, anon_sym_RPAREN, - STATE(3775), 2, + STATE(3779), 2, sym_line_comment, sym_block_comment, [100154] = 4, @@ -195609,9 +196198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, + ACTIONS(7520), 1, anon_sym_fn, - STATE(3776), 2, + STATE(3780), 2, sym_line_comment, sym_block_comment, [100168] = 4, @@ -195619,6407 +196208,6435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - anon_sym_RBRACE, - STATE(3777), 2, + ACTIONS(7522), 1, + sym_identifier, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [100182] = 1, - ACTIONS(7516), 1, + [100182] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7524), 1, + anon_sym_fn, + STATE(3782), 2, + sym_line_comment, + sym_block_comment, + [100196] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7526), 1, + anon_sym_COLON_COLON, + STATE(3783), 2, + sym_line_comment, + sym_block_comment, + [100210] = 1, + ACTIONS(7528), 1, ts_builtin_sym_end, - [100186] = 1, - ACTIONS(7518), 1, + [100214] = 1, + ACTIONS(7530), 1, ts_builtin_sym_end, - [100190] = 1, - ACTIONS(7520), 1, + [100218] = 1, + ACTIONS(7532), 1, ts_builtin_sym_end, - [100194] = 1, - ACTIONS(7522), 1, + [100222] = 1, + ACTIONS(7534), 1, ts_builtin_sym_end, - [100198] = 1, - ACTIONS(7524), 1, + [100226] = 1, + ACTIONS(7536), 1, ts_builtin_sym_end, - [100202] = 1, - ACTIONS(7526), 1, + [100230] = 1, + ACTIONS(7538), 1, ts_builtin_sym_end, - [100206] = 1, - ACTIONS(7528), 1, + [100234] = 1, + ACTIONS(7540), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1054)] = 0, - [SMALL_STATE(1055)] = 75, - [SMALL_STATE(1056)] = 148, - [SMALL_STATE(1057)] = 219, - [SMALL_STATE(1058)] = 319, - [SMALL_STATE(1059)] = 419, - [SMALL_STATE(1060)] = 519, - [SMALL_STATE(1061)] = 598, - [SMALL_STATE(1062)] = 675, - [SMALL_STATE(1063)] = 752, - [SMALL_STATE(1064)] = 829, - [SMALL_STATE(1065)] = 897, - [SMALL_STATE(1066)] = 961, - [SMALL_STATE(1067)] = 1025, - [SMALL_STATE(1068)] = 1089, - [SMALL_STATE(1069)] = 1153, - [SMALL_STATE(1070)] = 1217, - [SMALL_STATE(1071)] = 1281, - [SMALL_STATE(1072)] = 1345, - [SMALL_STATE(1073)] = 1419, - [SMALL_STATE(1074)] = 1483, - [SMALL_STATE(1075)] = 1547, - [SMALL_STATE(1076)] = 1610, - [SMALL_STATE(1077)] = 1711, - [SMALL_STATE(1078)] = 1812, - [SMALL_STATE(1079)] = 1879, - [SMALL_STATE(1080)] = 1946, - [SMALL_STATE(1081)] = 2013, - [SMALL_STATE(1082)] = 2076, - [SMALL_STATE(1083)] = 2143, - [SMALL_STATE(1084)] = 2206, - [SMALL_STATE(1085)] = 2273, - [SMALL_STATE(1086)] = 2344, - [SMALL_STATE(1087)] = 2415, - [SMALL_STATE(1088)] = 2486, - [SMALL_STATE(1089)] = 2587, - [SMALL_STATE(1090)] = 2650, - [SMALL_STATE(1091)] = 2721, - [SMALL_STATE(1092)] = 2784, - [SMALL_STATE(1093)] = 2846, - [SMALL_STATE(1094)] = 2908, - [SMALL_STATE(1095)] = 2970, - [SMALL_STATE(1096)] = 3034, - [SMALL_STATE(1097)] = 3098, - [SMALL_STATE(1098)] = 3160, - [SMALL_STATE(1099)] = 3222, - [SMALL_STATE(1100)] = 3284, - [SMALL_STATE(1101)] = 3354, - [SMALL_STATE(1102)] = 3422, - [SMALL_STATE(1103)] = 3484, - [SMALL_STATE(1104)] = 3546, - [SMALL_STATE(1105)] = 3621, - [SMALL_STATE(1106)] = 3684, - [SMALL_STATE(1107)] = 3745, - [SMALL_STATE(1108)] = 3808, - [SMALL_STATE(1109)] = 3869, - [SMALL_STATE(1110)] = 3930, - [SMALL_STATE(1111)] = 3993, - [SMALL_STATE(1112)] = 4054, - [SMALL_STATE(1113)] = 4115, - [SMALL_STATE(1114)] = 4176, - [SMALL_STATE(1115)] = 4237, - [SMALL_STATE(1116)] = 4298, - [SMALL_STATE(1117)] = 4391, - [SMALL_STATE(1118)] = 4454, - [SMALL_STATE(1119)] = 4517, - [SMALL_STATE(1120)] = 4580, - [SMALL_STATE(1121)] = 4641, - [SMALL_STATE(1122)] = 4702, - [SMALL_STATE(1123)] = 4795, - [SMALL_STATE(1124)] = 4856, - [SMALL_STATE(1125)] = 4949, - [SMALL_STATE(1126)] = 5010, - [SMALL_STATE(1127)] = 5071, - [SMALL_STATE(1128)] = 5132, - [SMALL_STATE(1129)] = 5195, - [SMALL_STATE(1130)] = 5258, - [SMALL_STATE(1131)] = 5321, - [SMALL_STATE(1132)] = 5384, - [SMALL_STATE(1133)] = 5447, - [SMALL_STATE(1134)] = 5508, - [SMALL_STATE(1135)] = 5573, - [SMALL_STATE(1136)] = 5634, - [SMALL_STATE(1137)] = 5695, - [SMALL_STATE(1138)] = 5756, - [SMALL_STATE(1139)] = 5817, - [SMALL_STATE(1140)] = 5878, - [SMALL_STATE(1141)] = 5939, - [SMALL_STATE(1142)] = 6000, - [SMALL_STATE(1143)] = 6061, - [SMALL_STATE(1144)] = 6122, - [SMALL_STATE(1145)] = 6183, - [SMALL_STATE(1146)] = 6244, - [SMALL_STATE(1147)] = 6305, - [SMALL_STATE(1148)] = 6366, - [SMALL_STATE(1149)] = 6427, - [SMALL_STATE(1150)] = 6488, - [SMALL_STATE(1151)] = 6549, - [SMALL_STATE(1152)] = 6610, - [SMALL_STATE(1153)] = 6671, - [SMALL_STATE(1154)] = 6734, - [SMALL_STATE(1155)] = 6797, - [SMALL_STATE(1156)] = 6860, - [SMALL_STATE(1157)] = 6921, - [SMALL_STATE(1158)] = 6982, - [SMALL_STATE(1159)] = 7043, - [SMALL_STATE(1160)] = 7104, - [SMALL_STATE(1161)] = 7165, - [SMALL_STATE(1162)] = 7226, - [SMALL_STATE(1163)] = 7287, - [SMALL_STATE(1164)] = 7348, - [SMALL_STATE(1165)] = 7409, - [SMALL_STATE(1166)] = 7470, - [SMALL_STATE(1167)] = 7531, - [SMALL_STATE(1168)] = 7592, - [SMALL_STATE(1169)] = 7653, - [SMALL_STATE(1170)] = 7714, - [SMALL_STATE(1171)] = 7775, - [SMALL_STATE(1172)] = 7836, - [SMALL_STATE(1173)] = 7897, - [SMALL_STATE(1174)] = 7958, - [SMALL_STATE(1175)] = 8019, - [SMALL_STATE(1176)] = 8080, - [SMALL_STATE(1177)] = 8141, - [SMALL_STATE(1178)] = 8202, - [SMALL_STATE(1179)] = 8263, - [SMALL_STATE(1180)] = 8324, - [SMALL_STATE(1181)] = 8385, - [SMALL_STATE(1182)] = 8446, - [SMALL_STATE(1183)] = 8507, - [SMALL_STATE(1184)] = 8568, - [SMALL_STATE(1185)] = 8629, - [SMALL_STATE(1186)] = 8690, - [SMALL_STATE(1187)] = 8751, - [SMALL_STATE(1188)] = 8812, - [SMALL_STATE(1189)] = 8873, - [SMALL_STATE(1190)] = 8934, - [SMALL_STATE(1191)] = 8995, - [SMALL_STATE(1192)] = 9056, - [SMALL_STATE(1193)] = 9117, - [SMALL_STATE(1194)] = 9178, - [SMALL_STATE(1195)] = 9241, - [SMALL_STATE(1196)] = 9304, - [SMALL_STATE(1197)] = 9365, - [SMALL_STATE(1198)] = 9426, - [SMALL_STATE(1199)] = 9487, - [SMALL_STATE(1200)] = 9548, - [SMALL_STATE(1201)] = 9609, - [SMALL_STATE(1202)] = 9670, - [SMALL_STATE(1203)] = 9731, - [SMALL_STATE(1204)] = 9792, - [SMALL_STATE(1205)] = 9853, - [SMALL_STATE(1206)] = 9914, - [SMALL_STATE(1207)] = 9975, - [SMALL_STATE(1208)] = 10036, - [SMALL_STATE(1209)] = 10097, - [SMALL_STATE(1210)] = 10158, - [SMALL_STATE(1211)] = 10219, - [SMALL_STATE(1212)] = 10280, - [SMALL_STATE(1213)] = 10341, - [SMALL_STATE(1214)] = 10402, - [SMALL_STATE(1215)] = 10463, - [SMALL_STATE(1216)] = 10524, - [SMALL_STATE(1217)] = 10585, - [SMALL_STATE(1218)] = 10646, - [SMALL_STATE(1219)] = 10707, - [SMALL_STATE(1220)] = 10768, - [SMALL_STATE(1221)] = 10829, - [SMALL_STATE(1222)] = 10890, - [SMALL_STATE(1223)] = 10951, - [SMALL_STATE(1224)] = 11012, - [SMALL_STATE(1225)] = 11073, - [SMALL_STATE(1226)] = 11134, - [SMALL_STATE(1227)] = 11195, - [SMALL_STATE(1228)] = 11256, - [SMALL_STATE(1229)] = 11317, - [SMALL_STATE(1230)] = 11378, - [SMALL_STATE(1231)] = 11439, - [SMALL_STATE(1232)] = 11500, - [SMALL_STATE(1233)] = 11561, - [SMALL_STATE(1234)] = 11622, - [SMALL_STATE(1235)] = 11683, - [SMALL_STATE(1236)] = 11744, - [SMALL_STATE(1237)] = 11805, - [SMALL_STATE(1238)] = 11866, - [SMALL_STATE(1239)] = 11927, - [SMALL_STATE(1240)] = 11988, - [SMALL_STATE(1241)] = 12049, - [SMALL_STATE(1242)] = 12110, - [SMALL_STATE(1243)] = 12171, - [SMALL_STATE(1244)] = 12232, - [SMALL_STATE(1245)] = 12293, - [SMALL_STATE(1246)] = 12354, - [SMALL_STATE(1247)] = 12415, - [SMALL_STATE(1248)] = 12476, - [SMALL_STATE(1249)] = 12537, - [SMALL_STATE(1250)] = 12598, - [SMALL_STATE(1251)] = 12659, - [SMALL_STATE(1252)] = 12720, - [SMALL_STATE(1253)] = 12781, - [SMALL_STATE(1254)] = 12842, - [SMALL_STATE(1255)] = 12903, - [SMALL_STATE(1256)] = 12964, - [SMALL_STATE(1257)] = 13025, - [SMALL_STATE(1258)] = 13086, - [SMALL_STATE(1259)] = 13147, - [SMALL_STATE(1260)] = 13208, - [SMALL_STATE(1261)] = 13269, - [SMALL_STATE(1262)] = 13330, - [SMALL_STATE(1263)] = 13391, - [SMALL_STATE(1264)] = 13452, - [SMALL_STATE(1265)] = 13513, - [SMALL_STATE(1266)] = 13574, - [SMALL_STATE(1267)] = 13635, - [SMALL_STATE(1268)] = 13696, - [SMALL_STATE(1269)] = 13757, - [SMALL_STATE(1270)] = 13818, - [SMALL_STATE(1271)] = 13879, - [SMALL_STATE(1272)] = 13940, - [SMALL_STATE(1273)] = 14001, - [SMALL_STATE(1274)] = 14062, - [SMALL_STATE(1275)] = 14123, - [SMALL_STATE(1276)] = 14184, - [SMALL_STATE(1277)] = 14247, - [SMALL_STATE(1278)] = 14308, - [SMALL_STATE(1279)] = 14369, - [SMALL_STATE(1280)] = 14430, - [SMALL_STATE(1281)] = 14491, - [SMALL_STATE(1282)] = 14552, - [SMALL_STATE(1283)] = 14613, - [SMALL_STATE(1284)] = 14674, - [SMALL_STATE(1285)] = 14735, - [SMALL_STATE(1286)] = 14796, - [SMALL_STATE(1287)] = 14857, - [SMALL_STATE(1288)] = 14918, - [SMALL_STATE(1289)] = 14979, - [SMALL_STATE(1290)] = 15040, - [SMALL_STATE(1291)] = 15101, - [SMALL_STATE(1292)] = 15162, - [SMALL_STATE(1293)] = 15223, - [SMALL_STATE(1294)] = 15284, - [SMALL_STATE(1295)] = 15345, - [SMALL_STATE(1296)] = 15406, - [SMALL_STATE(1297)] = 15467, - [SMALL_STATE(1298)] = 15528, - [SMALL_STATE(1299)] = 15589, - [SMALL_STATE(1300)] = 15650, - [SMALL_STATE(1301)] = 15711, - [SMALL_STATE(1302)] = 15772, - [SMALL_STATE(1303)] = 15833, - [SMALL_STATE(1304)] = 15894, - [SMALL_STATE(1305)] = 15955, - [SMALL_STATE(1306)] = 16016, - [SMALL_STATE(1307)] = 16077, - [SMALL_STATE(1308)] = 16138, - [SMALL_STATE(1309)] = 16199, - [SMALL_STATE(1310)] = 16260, - [SMALL_STATE(1311)] = 16321, - [SMALL_STATE(1312)] = 16382, - [SMALL_STATE(1313)] = 16443, - [SMALL_STATE(1314)] = 16504, - [SMALL_STATE(1315)] = 16565, - [SMALL_STATE(1316)] = 16626, - [SMALL_STATE(1317)] = 16687, - [SMALL_STATE(1318)] = 16748, - [SMALL_STATE(1319)] = 16809, - [SMALL_STATE(1320)] = 16870, - [SMALL_STATE(1321)] = 16931, - [SMALL_STATE(1322)] = 16992, - [SMALL_STATE(1323)] = 17053, - [SMALL_STATE(1324)] = 17114, - [SMALL_STATE(1325)] = 17175, - [SMALL_STATE(1326)] = 17236, - [SMALL_STATE(1327)] = 17297, - [SMALL_STATE(1328)] = 17358, - [SMALL_STATE(1329)] = 17419, - [SMALL_STATE(1330)] = 17480, - [SMALL_STATE(1331)] = 17541, - [SMALL_STATE(1332)] = 17602, - [SMALL_STATE(1333)] = 17663, - [SMALL_STATE(1334)] = 17724, - [SMALL_STATE(1335)] = 17785, - [SMALL_STATE(1336)] = 17846, - [SMALL_STATE(1337)] = 17907, - [SMALL_STATE(1338)] = 17968, - [SMALL_STATE(1339)] = 18029, - [SMALL_STATE(1340)] = 18090, - [SMALL_STATE(1341)] = 18151, - [SMALL_STATE(1342)] = 18212, - [SMALL_STATE(1343)] = 18273, - [SMALL_STATE(1344)] = 18334, - [SMALL_STATE(1345)] = 18395, - [SMALL_STATE(1346)] = 18456, - [SMALL_STATE(1347)] = 18517, - [SMALL_STATE(1348)] = 18578, - [SMALL_STATE(1349)] = 18639, - [SMALL_STATE(1350)] = 18700, - [SMALL_STATE(1351)] = 18761, - [SMALL_STATE(1352)] = 18822, - [SMALL_STATE(1353)] = 18883, - [SMALL_STATE(1354)] = 18944, - [SMALL_STATE(1355)] = 19005, - [SMALL_STATE(1356)] = 19066, - [SMALL_STATE(1357)] = 19127, - [SMALL_STATE(1358)] = 19188, - [SMALL_STATE(1359)] = 19249, - [SMALL_STATE(1360)] = 19310, - [SMALL_STATE(1361)] = 19371, - [SMALL_STATE(1362)] = 19432, - [SMALL_STATE(1363)] = 19493, - [SMALL_STATE(1364)] = 19554, - [SMALL_STATE(1365)] = 19615, - [SMALL_STATE(1366)] = 19676, - [SMALL_STATE(1367)] = 19737, - [SMALL_STATE(1368)] = 19798, - [SMALL_STATE(1369)] = 19859, - [SMALL_STATE(1370)] = 19920, - [SMALL_STATE(1371)] = 19981, - [SMALL_STATE(1372)] = 20042, - [SMALL_STATE(1373)] = 20103, - [SMALL_STATE(1374)] = 20164, - [SMALL_STATE(1375)] = 20225, - [SMALL_STATE(1376)] = 20286, - [SMALL_STATE(1377)] = 20347, - [SMALL_STATE(1378)] = 20408, - [SMALL_STATE(1379)] = 20469, - [SMALL_STATE(1380)] = 20530, - [SMALL_STATE(1381)] = 20591, - [SMALL_STATE(1382)] = 20652, - [SMALL_STATE(1383)] = 20713, - [SMALL_STATE(1384)] = 20774, - [SMALL_STATE(1385)] = 20835, - [SMALL_STATE(1386)] = 20896, - [SMALL_STATE(1387)] = 20957, - [SMALL_STATE(1388)] = 21018, - [SMALL_STATE(1389)] = 21079, - [SMALL_STATE(1390)] = 21140, - [SMALL_STATE(1391)] = 21201, - [SMALL_STATE(1392)] = 21262, - [SMALL_STATE(1393)] = 21323, - [SMALL_STATE(1394)] = 21384, - [SMALL_STATE(1395)] = 21445, - [SMALL_STATE(1396)] = 21506, - [SMALL_STATE(1397)] = 21567, - [SMALL_STATE(1398)] = 21628, - [SMALL_STATE(1399)] = 21689, - [SMALL_STATE(1400)] = 21750, - [SMALL_STATE(1401)] = 21811, - [SMALL_STATE(1402)] = 21872, - [SMALL_STATE(1403)] = 21933, - [SMALL_STATE(1404)] = 21994, - [SMALL_STATE(1405)] = 22055, - [SMALL_STATE(1406)] = 22116, - [SMALL_STATE(1407)] = 22177, - [SMALL_STATE(1408)] = 22238, - [SMALL_STATE(1409)] = 22299, - [SMALL_STATE(1410)] = 22364, - [SMALL_STATE(1411)] = 22425, - [SMALL_STATE(1412)] = 22486, - [SMALL_STATE(1413)] = 22547, - [SMALL_STATE(1414)] = 22608, - [SMALL_STATE(1415)] = 22669, - [SMALL_STATE(1416)] = 22730, - [SMALL_STATE(1417)] = 22795, - [SMALL_STATE(1418)] = 22870, - [SMALL_STATE(1419)] = 22933, - [SMALL_STATE(1420)] = 22994, - [SMALL_STATE(1421)] = 23068, - [SMALL_STATE(1422)] = 23128, - [SMALL_STATE(1423)] = 23188, - [SMALL_STATE(1424)] = 23248, - [SMALL_STATE(1425)] = 23308, - [SMALL_STATE(1426)] = 23368, - [SMALL_STATE(1427)] = 23428, - [SMALL_STATE(1428)] = 23488, - [SMALL_STATE(1429)] = 23548, - [SMALL_STATE(1430)] = 23608, - [SMALL_STATE(1431)] = 23670, - [SMALL_STATE(1432)] = 23730, - [SMALL_STATE(1433)] = 23790, - [SMALL_STATE(1434)] = 23850, - [SMALL_STATE(1435)] = 23916, - [SMALL_STATE(1436)] = 23976, - [SMALL_STATE(1437)] = 24036, - [SMALL_STATE(1438)] = 24096, - [SMALL_STATE(1439)] = 24162, - [SMALL_STATE(1440)] = 24222, - [SMALL_STATE(1441)] = 24282, - [SMALL_STATE(1442)] = 24342, - [SMALL_STATE(1443)] = 24402, - [SMALL_STATE(1444)] = 24462, - [SMALL_STATE(1445)] = 24522, - [SMALL_STATE(1446)] = 24582, - [SMALL_STATE(1447)] = 24642, - [SMALL_STATE(1448)] = 24708, - [SMALL_STATE(1449)] = 24768, - [SMALL_STATE(1450)] = 24828, - [SMALL_STATE(1451)] = 24888, - [SMALL_STATE(1452)] = 24948, - [SMALL_STATE(1453)] = 25008, - [SMALL_STATE(1454)] = 25068, - [SMALL_STATE(1455)] = 25128, - [SMALL_STATE(1456)] = 25188, - [SMALL_STATE(1457)] = 25248, - [SMALL_STATE(1458)] = 25308, - [SMALL_STATE(1459)] = 25368, - [SMALL_STATE(1460)] = 25428, - [SMALL_STATE(1461)] = 25488, - [SMALL_STATE(1462)] = 25548, - [SMALL_STATE(1463)] = 25608, - [SMALL_STATE(1464)] = 25668, - [SMALL_STATE(1465)] = 25728, - [SMALL_STATE(1466)] = 25788, - [SMALL_STATE(1467)] = 25848, - [SMALL_STATE(1468)] = 25908, - [SMALL_STATE(1469)] = 25968, - [SMALL_STATE(1470)] = 26028, - [SMALL_STATE(1471)] = 26088, - [SMALL_STATE(1472)] = 26148, - [SMALL_STATE(1473)] = 26208, - [SMALL_STATE(1474)] = 26268, - [SMALL_STATE(1475)] = 26328, - [SMALL_STATE(1476)] = 26388, - [SMALL_STATE(1477)] = 26448, - [SMALL_STATE(1478)] = 26508, - [SMALL_STATE(1479)] = 26568, - [SMALL_STATE(1480)] = 26628, - [SMALL_STATE(1481)] = 26688, - [SMALL_STATE(1482)] = 26748, - [SMALL_STATE(1483)] = 26844, - [SMALL_STATE(1484)] = 26904, - [SMALL_STATE(1485)] = 26964, - [SMALL_STATE(1486)] = 27024, - [SMALL_STATE(1487)] = 27084, - [SMALL_STATE(1488)] = 27144, - [SMALL_STATE(1489)] = 27206, - [SMALL_STATE(1490)] = 27266, - [SMALL_STATE(1491)] = 27326, - [SMALL_STATE(1492)] = 27386, - [SMALL_STATE(1493)] = 27446, - [SMALL_STATE(1494)] = 27506, - [SMALL_STATE(1495)] = 27566, - [SMALL_STATE(1496)] = 27634, - [SMALL_STATE(1497)] = 27694, - [SMALL_STATE(1498)] = 27754, - [SMALL_STATE(1499)] = 27814, - [SMALL_STATE(1500)] = 27874, - [SMALL_STATE(1501)] = 27934, - [SMALL_STATE(1502)] = 27994, - [SMALL_STATE(1503)] = 28054, - [SMALL_STATE(1504)] = 28114, - [SMALL_STATE(1505)] = 28174, - [SMALL_STATE(1506)] = 28234, - [SMALL_STATE(1507)] = 28294, - [SMALL_STATE(1508)] = 28354, - [SMALL_STATE(1509)] = 28418, - [SMALL_STATE(1510)] = 28478, - [SMALL_STATE(1511)] = 28538, - [SMALL_STATE(1512)] = 28598, - [SMALL_STATE(1513)] = 28658, - [SMALL_STATE(1514)] = 28718, - [SMALL_STATE(1515)] = 28778, - [SMALL_STATE(1516)] = 28838, - [SMALL_STATE(1517)] = 28898, - [SMALL_STATE(1518)] = 28958, - [SMALL_STATE(1519)] = 29018, - [SMALL_STATE(1520)] = 29078, - [SMALL_STATE(1521)] = 29138, - [SMALL_STATE(1522)] = 29198, - [SMALL_STATE(1523)] = 29258, - [SMALL_STATE(1524)] = 29318, - [SMALL_STATE(1525)] = 29378, - [SMALL_STATE(1526)] = 29438, - [SMALL_STATE(1527)] = 29498, - [SMALL_STATE(1528)] = 29558, - [SMALL_STATE(1529)] = 29618, - [SMALL_STATE(1530)] = 29678, - [SMALL_STATE(1531)] = 29738, - [SMALL_STATE(1532)] = 29802, - [SMALL_STATE(1533)] = 29862, - [SMALL_STATE(1534)] = 29922, - [SMALL_STATE(1535)] = 29982, - [SMALL_STATE(1536)] = 30042, - [SMALL_STATE(1537)] = 30102, - [SMALL_STATE(1538)] = 30162, - [SMALL_STATE(1539)] = 30228, - [SMALL_STATE(1540)] = 30288, - [SMALL_STATE(1541)] = 30387, - [SMALL_STATE(1542)] = 30486, - [SMALL_STATE(1543)] = 30555, - [SMALL_STATE(1544)] = 30626, - [SMALL_STATE(1545)] = 30687, - [SMALL_STATE(1546)] = 30748, - [SMALL_STATE(1547)] = 30847, - [SMALL_STATE(1548)] = 30946, - [SMALL_STATE(1549)] = 31016, - [SMALL_STATE(1550)] = 31098, - [SMALL_STATE(1551)] = 31182, - [SMALL_STATE(1552)] = 31272, - [SMALL_STATE(1553)] = 31342, - [SMALL_STATE(1554)] = 31412, - [SMALL_STATE(1555)] = 31482, - [SMALL_STATE(1556)] = 31572, - [SMALL_STATE(1557)] = 31630, - [SMALL_STATE(1558)] = 31720, - [SMALL_STATE(1559)] = 31798, - [SMALL_STATE(1560)] = 31856, - [SMALL_STATE(1561)] = 31948, - [SMALL_STATE(1562)] = 32006, - [SMALL_STATE(1563)] = 32066, - [SMALL_STATE(1564)] = 32156, - [SMALL_STATE(1565)] = 32222, - [SMALL_STATE(1566)] = 32308, - [SMALL_STATE(1567)] = 32394, - [SMALL_STATE(1568)] = 32480, - [SMALL_STATE(1569)] = 32570, - [SMALL_STATE(1570)] = 32656, - [SMALL_STATE(1571)] = 32742, - [SMALL_STATE(1572)] = 32828, - [SMALL_STATE(1573)] = 32920, - [SMALL_STATE(1574)] = 33010, - [SMALL_STATE(1575)] = 33102, - [SMALL_STATE(1576)] = 33188, - [SMALL_STATE(1577)] = 33256, - [SMALL_STATE(1578)] = 33342, - [SMALL_STATE(1579)] = 33416, - [SMALL_STATE(1580)] = 33488, - [SMALL_STATE(1581)] = 33564, - [SMALL_STATE(1582)] = 33624, - [SMALL_STATE(1583)] = 33687, - [SMALL_STATE(1584)] = 33752, - [SMALL_STATE(1585)] = 33819, - [SMALL_STATE(1586)] = 33882, - [SMALL_STATE(1587)] = 33942, - [SMALL_STATE(1588)] = 34000, - [SMALL_STATE(1589)] = 34058, - [SMALL_STATE(1590)] = 34118, - [SMALL_STATE(1591)] = 34176, - [SMALL_STATE(1592)] = 34236, - [SMALL_STATE(1593)] = 34292, - [SMALL_STATE(1594)] = 34348, - [SMALL_STATE(1595)] = 34408, - [SMALL_STATE(1596)] = 34468, - [SMALL_STATE(1597)] = 34528, - [SMALL_STATE(1598)] = 34592, - [SMALL_STATE(1599)] = 34656, - [SMALL_STATE(1600)] = 34712, - [SMALL_STATE(1601)] = 34776, - [SMALL_STATE(1602)] = 34836, - [SMALL_STATE(1603)] = 34894, - [SMALL_STATE(1604)] = 34958, - [SMALL_STATE(1605)] = 35014, - [SMALL_STATE(1606)] = 35103, - [SMALL_STATE(1607)] = 35162, - [SMALL_STATE(1608)] = 35251, - [SMALL_STATE(1609)] = 35308, - [SMALL_STATE(1610)] = 35365, - [SMALL_STATE(1611)] = 35460, - [SMALL_STATE(1612)] = 35515, - [SMALL_STATE(1613)] = 35570, - [SMALL_STATE(1614)] = 35625, - [SMALL_STATE(1615)] = 35720, - [SMALL_STATE(1616)] = 35779, - [SMALL_STATE(1617)] = 35836, - [SMALL_STATE(1618)] = 35891, - [SMALL_STATE(1619)] = 35946, - [SMALL_STATE(1620)] = 36041, - [SMALL_STATE(1621)] = 36100, - [SMALL_STATE(1622)] = 36155, - [SMALL_STATE(1623)] = 36250, - [SMALL_STATE(1624)] = 36309, - [SMALL_STATE(1625)] = 36404, - [SMALL_STATE(1626)] = 36499, - [SMALL_STATE(1627)] = 36594, - [SMALL_STATE(1628)] = 36689, - [SMALL_STATE(1629)] = 36784, - [SMALL_STATE(1630)] = 36879, - [SMALL_STATE(1631)] = 36936, - [SMALL_STATE(1632)] = 36993, - [SMALL_STATE(1633)] = 37048, - [SMALL_STATE(1634)] = 37105, - [SMALL_STATE(1635)] = 37194, - [SMALL_STATE(1636)] = 37249, - [SMALL_STATE(1637)] = 37306, - [SMALL_STATE(1638)] = 37401, - [SMALL_STATE(1639)] = 37490, - [SMALL_STATE(1640)] = 37585, - [SMALL_STATE(1641)] = 37641, - [SMALL_STATE(1642)] = 37695, - [SMALL_STATE(1643)] = 37749, - [SMALL_STATE(1644)] = 37803, - [SMALL_STATE(1645)] = 37857, - [SMALL_STATE(1646)] = 37915, - [SMALL_STATE(1647)] = 37969, - [SMALL_STATE(1648)] = 38051, - [SMALL_STATE(1649)] = 38137, - [SMALL_STATE(1650)] = 38223, - [SMALL_STATE(1651)] = 38309, - [SMALL_STATE(1652)] = 38363, - [SMALL_STATE(1653)] = 38417, - [SMALL_STATE(1654)] = 38473, - [SMALL_STATE(1655)] = 38565, - [SMALL_STATE(1656)] = 38657, - [SMALL_STATE(1657)] = 38737, - [SMALL_STATE(1658)] = 38793, - [SMALL_STATE(1659)] = 38885, - [SMALL_STATE(1660)] = 38939, - [SMALL_STATE(1661)] = 38995, - [SMALL_STATE(1662)] = 39049, - [SMALL_STATE(1663)] = 39105, - [SMALL_STATE(1664)] = 39177, - [SMALL_STATE(1665)] = 39269, - [SMALL_STATE(1666)] = 39355, - [SMALL_STATE(1667)] = 39411, - [SMALL_STATE(1668)] = 39489, - [SMALL_STATE(1669)] = 39557, - [SMALL_STATE(1670)] = 39613, - [SMALL_STATE(1671)] = 39679, - [SMALL_STATE(1672)] = 39735, - [SMALL_STATE(1673)] = 39823, - [SMALL_STATE(1674)] = 39879, - [SMALL_STATE(1675)] = 39971, - [SMALL_STATE(1676)] = 40059, - [SMALL_STATE(1677)] = 40115, - [SMALL_STATE(1678)] = 40203, - [SMALL_STATE(1679)] = 40291, - [SMALL_STATE(1680)] = 40347, - [SMALL_STATE(1681)] = 40433, - [SMALL_STATE(1682)] = 40525, - [SMALL_STATE(1683)] = 40589, - [SMALL_STATE(1684)] = 40643, - [SMALL_STATE(1685)] = 40729, - [SMALL_STATE(1686)] = 40783, - [SMALL_STATE(1687)] = 40837, - [SMALL_STATE(1688)] = 40911, - [SMALL_STATE(1689)] = 40999, - [SMALL_STATE(1690)] = 41055, - [SMALL_STATE(1691)] = 41109, - [SMALL_STATE(1692)] = 41163, - [SMALL_STATE(1693)] = 41217, - [SMALL_STATE(1694)] = 41287, - [SMALL_STATE(1695)] = 41341, - [SMALL_STATE(1696)] = 41397, - [SMALL_STATE(1697)] = 41453, - [SMALL_STATE(1698)] = 41509, - [SMALL_STATE(1699)] = 41565, - [SMALL_STATE(1700)] = 41647, - [SMALL_STATE(1701)] = 41727, - [SMALL_STATE(1702)] = 41816, - [SMALL_STATE(1703)] = 41869, - [SMALL_STATE(1704)] = 41922, - [SMALL_STATE(1705)] = 41975, - [SMALL_STATE(1706)] = 42062, - [SMALL_STATE(1707)] = 42115, - [SMALL_STATE(1708)] = 42202, - [SMALL_STATE(1709)] = 42289, - [SMALL_STATE(1710)] = 42342, - [SMALL_STATE(1711)] = 42395, - [SMALL_STATE(1712)] = 42448, - [SMALL_STATE(1713)] = 42501, - [SMALL_STATE(1714)] = 42554, - [SMALL_STATE(1715)] = 42607, - [SMALL_STATE(1716)] = 42660, - [SMALL_STATE(1717)] = 42713, - [SMALL_STATE(1718)] = 42766, - [SMALL_STATE(1719)] = 42819, - [SMALL_STATE(1720)] = 42878, - [SMALL_STATE(1721)] = 42931, - [SMALL_STATE(1722)] = 42984, - [SMALL_STATE(1723)] = 43043, - [SMALL_STATE(1724)] = 43128, - [SMALL_STATE(1725)] = 43215, - [SMALL_STATE(1726)] = 43276, - [SMALL_STATE(1727)] = 43363, - [SMALL_STATE(1728)] = 43426, - [SMALL_STATE(1729)] = 43495, - [SMALL_STATE(1730)] = 43562, - [SMALL_STATE(1731)] = 43633, - [SMALL_STATE(1732)] = 43710, - [SMALL_STATE(1733)] = 43789, - [SMALL_STATE(1734)] = 43854, - [SMALL_STATE(1735)] = 43939, - [SMALL_STATE(1736)] = 44024, - [SMALL_STATE(1737)] = 44097, - [SMALL_STATE(1738)] = 44178, - [SMALL_STATE(1739)] = 44267, - [SMALL_STATE(1740)] = 44356, - [SMALL_STATE(1741)] = 44409, - [SMALL_STATE(1742)] = 44462, - [SMALL_STATE(1743)] = 44543, - [SMALL_STATE(1744)] = 44596, - [SMALL_STATE(1745)] = 44685, - [SMALL_STATE(1746)] = 44738, - [SMALL_STATE(1747)] = 44791, - [SMALL_STATE(1748)] = 44844, - [SMALL_STATE(1749)] = 44931, - [SMALL_STATE(1750)] = 44984, - [SMALL_STATE(1751)] = 45069, - [SMALL_STATE(1752)] = 45122, - [SMALL_STATE(1753)] = 45175, - [SMALL_STATE(1754)] = 45228, - [SMALL_STATE(1755)] = 45281, - [SMALL_STATE(1756)] = 45334, - [SMALL_STATE(1757)] = 45387, - [SMALL_STATE(1758)] = 45440, - [SMALL_STATE(1759)] = 45493, - [SMALL_STATE(1760)] = 45580, - [SMALL_STATE(1761)] = 45633, - [SMALL_STATE(1762)] = 45686, - [SMALL_STATE(1763)] = 45739, - [SMALL_STATE(1764)] = 45824, - [SMALL_STATE(1765)] = 45883, - [SMALL_STATE(1766)] = 45936, - [SMALL_STATE(1767)] = 45989, - [SMALL_STATE(1768)] = 46042, - [SMALL_STATE(1769)] = 46095, - [SMALL_STATE(1770)] = 46148, - [SMALL_STATE(1771)] = 46201, - [SMALL_STATE(1772)] = 46254, - [SMALL_STATE(1773)] = 46343, - [SMALL_STATE(1774)] = 46396, - [SMALL_STATE(1775)] = 46449, - [SMALL_STATE(1776)] = 46502, - [SMALL_STATE(1777)] = 46587, - [SMALL_STATE(1778)] = 46640, - [SMALL_STATE(1779)] = 46693, - [SMALL_STATE(1780)] = 46746, - [SMALL_STATE(1781)] = 46799, - [SMALL_STATE(1782)] = 46852, - [SMALL_STATE(1783)] = 46905, - [SMALL_STATE(1784)] = 46990, - [SMALL_STATE(1785)] = 47077, - [SMALL_STATE(1786)] = 47166, - [SMALL_STATE(1787)] = 47219, - [SMALL_STATE(1788)] = 47272, - [SMALL_STATE(1789)] = 47357, - [SMALL_STATE(1790)] = 47410, - [SMALL_STATE(1791)] = 47463, - [SMALL_STATE(1792)] = 47516, - [SMALL_STATE(1793)] = 47603, - [SMALL_STATE(1794)] = 47656, - [SMALL_STATE(1795)] = 47719, - [SMALL_STATE(1796)] = 47788, - [SMALL_STATE(1797)] = 47855, - [SMALL_STATE(1798)] = 47926, - [SMALL_STATE(1799)] = 48003, - [SMALL_STATE(1800)] = 48082, - [SMALL_STATE(1801)] = 48147, - [SMALL_STATE(1802)] = 48232, - [SMALL_STATE(1803)] = 48317, - [SMALL_STATE(1804)] = 48390, - [SMALL_STATE(1805)] = 48471, - [SMALL_STATE(1806)] = 48524, - [SMALL_STATE(1807)] = 48577, - [SMALL_STATE(1808)] = 48630, - [SMALL_STATE(1809)] = 48683, - [SMALL_STATE(1810)] = 48770, - [SMALL_STATE(1811)] = 48823, - [SMALL_STATE(1812)] = 48876, - [SMALL_STATE(1813)] = 48929, - [SMALL_STATE(1814)] = 48982, - [SMALL_STATE(1815)] = 49035, - [SMALL_STATE(1816)] = 49088, - [SMALL_STATE(1817)] = 49141, - [SMALL_STATE(1818)] = 49194, - [SMALL_STATE(1819)] = 49247, - [SMALL_STATE(1820)] = 49300, - [SMALL_STATE(1821)] = 49353, - [SMALL_STATE(1822)] = 49406, - [SMALL_STATE(1823)] = 49459, - [SMALL_STATE(1824)] = 49512, - [SMALL_STATE(1825)] = 49599, - [SMALL_STATE(1826)] = 49652, - [SMALL_STATE(1827)] = 49705, - [SMALL_STATE(1828)] = 49794, - [SMALL_STATE(1829)] = 49881, - [SMALL_STATE(1830)] = 49934, - [SMALL_STATE(1831)] = 49987, - [SMALL_STATE(1832)] = 50074, - [SMALL_STATE(1833)] = 50127, - [SMALL_STATE(1834)] = 50180, - [SMALL_STATE(1835)] = 50233, - [SMALL_STATE(1836)] = 50286, - [SMALL_STATE(1837)] = 50339, - [SMALL_STATE(1838)] = 50392, - [SMALL_STATE(1839)] = 50445, - [SMALL_STATE(1840)] = 50498, - [SMALL_STATE(1841)] = 50551, - [SMALL_STATE(1842)] = 50604, - [SMALL_STATE(1843)] = 50657, - [SMALL_STATE(1844)] = 50746, - [SMALL_STATE(1845)] = 50799, - [SMALL_STATE(1846)] = 50888, - [SMALL_STATE(1847)] = 50941, - [SMALL_STATE(1848)] = 50994, - [SMALL_STATE(1849)] = 51081, - [SMALL_STATE(1850)] = 51170, - [SMALL_STATE(1851)] = 51229, - [SMALL_STATE(1852)] = 51316, - [SMALL_STATE(1853)] = 51405, - [SMALL_STATE(1854)] = 51494, - [SMALL_STATE(1855)] = 51571, - [SMALL_STATE(1856)] = 51658, - [SMALL_STATE(1857)] = 51711, - [SMALL_STATE(1858)] = 51800, - [SMALL_STATE(1859)] = 51853, - [SMALL_STATE(1860)] = 51942, - [SMALL_STATE(1861)] = 52031, - [SMALL_STATE(1862)] = 52120, - [SMALL_STATE(1863)] = 52209, - [SMALL_STATE(1864)] = 52298, - [SMALL_STATE(1865)] = 52387, - [SMALL_STATE(1866)] = 52476, - [SMALL_STATE(1867)] = 52565, - [SMALL_STATE(1868)] = 52654, - [SMALL_STATE(1869)] = 52735, - [SMALL_STATE(1870)] = 52820, - [SMALL_STATE(1871)] = 52909, - [SMALL_STATE(1872)] = 52994, - [SMALL_STATE(1873)] = 53079, - [SMALL_STATE(1874)] = 53168, - [SMALL_STATE(1875)] = 53257, - [SMALL_STATE(1876)] = 53346, - [SMALL_STATE(1877)] = 53423, - [SMALL_STATE(1878)] = 53512, - [SMALL_STATE(1879)] = 53601, - [SMALL_STATE(1880)] = 53690, - [SMALL_STATE(1881)] = 53779, - [SMALL_STATE(1882)] = 53868, - [SMALL_STATE(1883)] = 53921, - [SMALL_STATE(1884)] = 54010, - [SMALL_STATE(1885)] = 54099, - [SMALL_STATE(1886)] = 54188, - [SMALL_STATE(1887)] = 54241, - [SMALL_STATE(1888)] = 54330, - [SMALL_STATE(1889)] = 54419, - [SMALL_STATE(1890)] = 54508, - [SMALL_STATE(1891)] = 54597, - [SMALL_STATE(1892)] = 54686, - [SMALL_STATE(1893)] = 54775, - [SMALL_STATE(1894)] = 54864, - [SMALL_STATE(1895)] = 54953, - [SMALL_STATE(1896)] = 55042, - [SMALL_STATE(1897)] = 55131, - [SMALL_STATE(1898)] = 55220, - [SMALL_STATE(1899)] = 55309, - [SMALL_STATE(1900)] = 55396, - [SMALL_STATE(1901)] = 55483, - [SMALL_STATE(1902)] = 55570, - [SMALL_STATE(1903)] = 55623, - [SMALL_STATE(1904)] = 55676, - [SMALL_STATE(1905)] = 55729, - [SMALL_STATE(1906)] = 55782, - [SMALL_STATE(1907)] = 55835, - [SMALL_STATE(1908)] = 55920, - [SMALL_STATE(1909)] = 55973, - [SMALL_STATE(1910)] = 56026, - [SMALL_STATE(1911)] = 56115, - [SMALL_STATE(1912)] = 56168, - [SMALL_STATE(1913)] = 56257, - [SMALL_STATE(1914)] = 56310, - [SMALL_STATE(1915)] = 56399, - [SMALL_STATE(1916)] = 56488, - [SMALL_STATE(1917)] = 56541, - [SMALL_STATE(1918)] = 56627, - [SMALL_STATE(1919)] = 56713, - [SMALL_STATE(1920)] = 56787, - [SMALL_STATE(1921)] = 56873, - [SMALL_STATE(1922)] = 56959, - [SMALL_STATE(1923)] = 57045, - [SMALL_STATE(1924)] = 57129, - [SMALL_STATE(1925)] = 57215, - [SMALL_STATE(1926)] = 57301, - [SMALL_STATE(1927)] = 57387, - [SMALL_STATE(1928)] = 57473, - [SMALL_STATE(1929)] = 57559, - [SMALL_STATE(1930)] = 57645, - [SMALL_STATE(1931)] = 57719, - [SMALL_STATE(1932)] = 57805, - [SMALL_STATE(1933)] = 57891, - [SMALL_STATE(1934)] = 57977, - [SMALL_STATE(1935)] = 58061, - [SMALL_STATE(1936)] = 58147, - [SMALL_STATE(1937)] = 58221, - [SMALL_STATE(1938)] = 58307, - [SMALL_STATE(1939)] = 58393, - [SMALL_STATE(1940)] = 58479, - [SMALL_STATE(1941)] = 58565, - [SMALL_STATE(1942)] = 58651, - [SMALL_STATE(1943)] = 58737, - [SMALL_STATE(1944)] = 58823, - [SMALL_STATE(1945)] = 58909, - [SMALL_STATE(1946)] = 58995, - [SMALL_STATE(1947)] = 59081, - [SMALL_STATE(1948)] = 59167, - [SMALL_STATE(1949)] = 59253, - [SMALL_STATE(1950)] = 59327, - [SMALL_STATE(1951)] = 59413, - [SMALL_STATE(1952)] = 59499, - [SMALL_STATE(1953)] = 59585, - [SMALL_STATE(1954)] = 59659, - [SMALL_STATE(1955)] = 59734, - [SMALL_STATE(1956)] = 59809, - [SMALL_STATE(1957)] = 59884, - [SMALL_STATE(1958)] = 59959, - [SMALL_STATE(1959)] = 60034, - [SMALL_STATE(1960)] = 60109, - [SMALL_STATE(1961)] = 60184, - [SMALL_STATE(1962)] = 60259, - [SMALL_STATE(1963)] = 60306, - [SMALL_STATE(1964)] = 60353, - [SMALL_STATE(1965)] = 60400, - [SMALL_STATE(1966)] = 60462, - [SMALL_STATE(1967)] = 60524, - [SMALL_STATE(1968)] = 60586, - [SMALL_STATE(1969)] = 60648, - [SMALL_STATE(1970)] = 60710, - [SMALL_STATE(1971)] = 60772, - [SMALL_STATE(1972)] = 60834, - [SMALL_STATE(1973)] = 60896, - [SMALL_STATE(1974)] = 60958, - [SMALL_STATE(1975)] = 61017, - [SMALL_STATE(1976)] = 61076, - [SMALL_STATE(1977)] = 61112, - [SMALL_STATE(1978)] = 61148, - [SMALL_STATE(1979)] = 61185, - [SMALL_STATE(1980)] = 61222, - [SMALL_STATE(1981)] = 61259, - [SMALL_STATE(1982)] = 61296, - [SMALL_STATE(1983)] = 61349, - [SMALL_STATE(1984)] = 61393, - [SMALL_STATE(1985)] = 61427, - [SMALL_STATE(1986)] = 61461, - [SMALL_STATE(1987)] = 61495, - [SMALL_STATE(1988)] = 61531, - [SMALL_STATE(1989)] = 61567, - [SMALL_STATE(1990)] = 61603, - [SMALL_STATE(1991)] = 61639, - [SMALL_STATE(1992)] = 61683, - [SMALL_STATE(1993)] = 61717, - [SMALL_STATE(1994)] = 61761, - [SMALL_STATE(1995)] = 61812, - [SMALL_STATE(1996)] = 61845, - [SMALL_STATE(1997)] = 61878, - [SMALL_STATE(1998)] = 61911, - [SMALL_STATE(1999)] = 61942, - [SMALL_STATE(2000)] = 61983, - [SMALL_STATE(2001)] = 62016, - [SMALL_STATE(2002)] = 62060, - [SMALL_STATE(2003)] = 62120, - [SMALL_STATE(2004)] = 62152, - [SMALL_STATE(2005)] = 62198, - [SMALL_STATE(2006)] = 62258, - [SMALL_STATE(2007)] = 62290, - [SMALL_STATE(2008)] = 62328, - [SMALL_STATE(2009)] = 62360, - [SMALL_STATE(2010)] = 62398, - [SMALL_STATE(2011)] = 62436, - [SMALL_STATE(2012)] = 62474, - [SMALL_STATE(2013)] = 62503, - [SMALL_STATE(2014)] = 62534, - [SMALL_STATE(2015)] = 62589, - [SMALL_STATE(2016)] = 62622, - [SMALL_STATE(2017)] = 62651, - [SMALL_STATE(2018)] = 62704, - [SMALL_STATE(2019)] = 62733, - [SMALL_STATE(2020)] = 62766, - [SMALL_STATE(2021)] = 62795, - [SMALL_STATE(2022)] = 62828, - [SMALL_STATE(2023)] = 62857, - [SMALL_STATE(2024)] = 62886, - [SMALL_STATE(2025)] = 62919, - [SMALL_STATE(2026)] = 62948, - [SMALL_STATE(2027)] = 62981, - [SMALL_STATE(2028)] = 63010, - [SMALL_STATE(2029)] = 63053, - [SMALL_STATE(2030)] = 63106, - [SMALL_STATE(2031)] = 63135, - [SMALL_STATE(2032)] = 63168, - [SMALL_STATE(2033)] = 63209, - [SMALL_STATE(2034)] = 63237, - [SMALL_STATE(2035)] = 63265, - [SMALL_STATE(2036)] = 63293, - [SMALL_STATE(2037)] = 63321, - [SMALL_STATE(2038)] = 63349, - [SMALL_STATE(2039)] = 63377, - [SMALL_STATE(2040)] = 63405, - [SMALL_STATE(2041)] = 63433, - [SMALL_STATE(2042)] = 63463, - [SMALL_STATE(2043)] = 63491, - [SMALL_STATE(2044)] = 63519, - [SMALL_STATE(2045)] = 63547, - [SMALL_STATE(2046)] = 63575, - [SMALL_STATE(2047)] = 63603, - [SMALL_STATE(2048)] = 63631, - [SMALL_STATE(2049)] = 63659, - [SMALL_STATE(2050)] = 63703, - [SMALL_STATE(2051)] = 63731, - [SMALL_STATE(2052)] = 63759, - [SMALL_STATE(2053)] = 63787, - [SMALL_STATE(2054)] = 63815, - [SMALL_STATE(2055)] = 63843, - [SMALL_STATE(2056)] = 63873, - [SMALL_STATE(2057)] = 63901, - [SMALL_STATE(2058)] = 63929, - [SMALL_STATE(2059)] = 63957, - [SMALL_STATE(2060)] = 63985, - [SMALL_STATE(2061)] = 64013, - [SMALL_STATE(2062)] = 64041, - [SMALL_STATE(2063)] = 64069, - [SMALL_STATE(2064)] = 64097, - [SMALL_STATE(2065)] = 64125, - [SMALL_STATE(2066)] = 64153, - [SMALL_STATE(2067)] = 64181, - [SMALL_STATE(2068)] = 64209, - [SMALL_STATE(2069)] = 64237, - [SMALL_STATE(2070)] = 64265, - [SMALL_STATE(2071)] = 64293, - [SMALL_STATE(2072)] = 64322, - [SMALL_STATE(2073)] = 64351, - [SMALL_STATE(2074)] = 64382, - [SMALL_STATE(2075)] = 64411, - [SMALL_STATE(2076)] = 64440, - [SMALL_STATE(2077)] = 64469, - [SMALL_STATE(2078)] = 64498, - [SMALL_STATE(2079)] = 64533, - [SMALL_STATE(2080)] = 64562, - [SMALL_STATE(2081)] = 64591, - [SMALL_STATE(2082)] = 64620, - [SMALL_STATE(2083)] = 64649, - [SMALL_STATE(2084)] = 64681, - [SMALL_STATE(2085)] = 64727, - [SMALL_STATE(2086)] = 64759, - [SMALL_STATE(2087)] = 64791, - [SMALL_STATE(2088)] = 64821, - [SMALL_STATE(2089)] = 64853, - [SMALL_STATE(2090)] = 64885, - [SMALL_STATE(2091)] = 64917, - [SMALL_STATE(2092)] = 64949, - [SMALL_STATE(2093)] = 64981, - [SMALL_STATE(2094)] = 65013, - [SMALL_STATE(2095)] = 65045, - [SMALL_STATE(2096)] = 65077, - [SMALL_STATE(2097)] = 65105, - [SMALL_STATE(2098)] = 65149, - [SMALL_STATE(2099)] = 65181, - [SMALL_STATE(2100)] = 65210, - [SMALL_STATE(2101)] = 65253, - [SMALL_STATE(2102)] = 65290, - [SMALL_STATE(2103)] = 65319, - [SMALL_STATE(2104)] = 65362, - [SMALL_STATE(2105)] = 65405, - [SMALL_STATE(2106)] = 65448, - [SMALL_STATE(2107)] = 65491, - [SMALL_STATE(2108)] = 65534, - [SMALL_STATE(2109)] = 65562, - [SMALL_STATE(2110)] = 65590, - [SMALL_STATE(2111)] = 65614, - [SMALL_STATE(2112)] = 65648, - [SMALL_STATE(2113)] = 65676, - [SMALL_STATE(2114)] = 65716, - [SMALL_STATE(2115)] = 65756, - [SMALL_STATE(2116)] = 65794, - [SMALL_STATE(2117)] = 65822, - [SMALL_STATE(2118)] = 65862, - [SMALL_STATE(2119)] = 65900, - [SMALL_STATE(2120)] = 65940, - [SMALL_STATE(2121)] = 65978, - [SMALL_STATE(2122)] = 66018, - [SMALL_STATE(2123)] = 66058, - [SMALL_STATE(2124)] = 66082, - [SMALL_STATE(2125)] = 66110, - [SMALL_STATE(2126)] = 66148, - [SMALL_STATE(2127)] = 66176, - [SMALL_STATE(2128)] = 66204, - [SMALL_STATE(2129)] = 66242, - [SMALL_STATE(2130)] = 66282, - [SMALL_STATE(2131)] = 66322, - [SMALL_STATE(2132)] = 66350, - [SMALL_STATE(2133)] = 66378, - [SMALL_STATE(2134)] = 66402, - [SMALL_STATE(2135)] = 66436, - [SMALL_STATE(2136)] = 66474, - [SMALL_STATE(2137)] = 66502, - [SMALL_STATE(2138)] = 66530, - [SMALL_STATE(2139)] = 66570, - [SMALL_STATE(2140)] = 66598, - [SMALL_STATE(2141)] = 66622, - [SMALL_STATE(2142)] = 66652, - [SMALL_STATE(2143)] = 66682, - [SMALL_STATE(2144)] = 66720, - [SMALL_STATE(2145)] = 66750, - [SMALL_STATE(2146)] = 66778, - [SMALL_STATE(2147)] = 66806, - [SMALL_STATE(2148)] = 66836, - [SMALL_STATE(2149)] = 66874, - [SMALL_STATE(2150)] = 66912, - [SMALL_STATE(2151)] = 66950, - [SMALL_STATE(2152)] = 66978, - [SMALL_STATE(2153)] = 67002, - [SMALL_STATE(2154)] = 67040, - [SMALL_STATE(2155)] = 67078, - [SMALL_STATE(2156)] = 67118, - [SMALL_STATE(2157)] = 67146, - [SMALL_STATE(2158)] = 67169, - [SMALL_STATE(2159)] = 67210, - [SMALL_STATE(2160)] = 67233, - [SMALL_STATE(2161)] = 67274, - [SMALL_STATE(2162)] = 67297, - [SMALL_STATE(2163)] = 67338, - [SMALL_STATE(2164)] = 67361, - [SMALL_STATE(2165)] = 67398, - [SMALL_STATE(2166)] = 67421, - [SMALL_STATE(2167)] = 67458, - [SMALL_STATE(2168)] = 67481, - [SMALL_STATE(2169)] = 67518, - [SMALL_STATE(2170)] = 67541, - [SMALL_STATE(2171)] = 67564, - [SMALL_STATE(2172)] = 67587, - [SMALL_STATE(2173)] = 67618, - [SMALL_STATE(2174)] = 67641, - [SMALL_STATE(2175)] = 67664, - [SMALL_STATE(2176)] = 67687, - [SMALL_STATE(2177)] = 67710, - [SMALL_STATE(2178)] = 67733, - [SMALL_STATE(2179)] = 67756, - [SMALL_STATE(2180)] = 67779, - [SMALL_STATE(2181)] = 67802, - [SMALL_STATE(2182)] = 67825, - [SMALL_STATE(2183)] = 67848, - [SMALL_STATE(2184)] = 67871, - [SMALL_STATE(2185)] = 67894, - [SMALL_STATE(2186)] = 67927, - [SMALL_STATE(2187)] = 67962, - [SMALL_STATE(2188)] = 67985, - [SMALL_STATE(2189)] = 68008, - [SMALL_STATE(2190)] = 68031, - [SMALL_STATE(2191)] = 68054, - [SMALL_STATE(2192)] = 68077, - [SMALL_STATE(2193)] = 68108, - [SMALL_STATE(2194)] = 68143, - [SMALL_STATE(2195)] = 68166, - [SMALL_STATE(2196)] = 68207, - [SMALL_STATE(2197)] = 68230, - [SMALL_STATE(2198)] = 68261, - [SMALL_STATE(2199)] = 68292, - [SMALL_STATE(2200)] = 68315, - [SMALL_STATE(2201)] = 68350, - [SMALL_STATE(2202)] = 68387, - [SMALL_STATE(2203)] = 68422, - [SMALL_STATE(2204)] = 68453, - [SMALL_STATE(2205)] = 68476, - [SMALL_STATE(2206)] = 68499, - [SMALL_STATE(2207)] = 68522, - [SMALL_STATE(2208)] = 68545, - [SMALL_STATE(2209)] = 68568, - [SMALL_STATE(2210)] = 68591, - [SMALL_STATE(2211)] = 68622, - [SMALL_STATE(2212)] = 68645, - [SMALL_STATE(2213)] = 68681, - [SMALL_STATE(2214)] = 68719, - [SMALL_STATE(2215)] = 68757, - [SMALL_STATE(2216)] = 68795, - [SMALL_STATE(2217)] = 68825, - [SMALL_STATE(2218)] = 68863, - [SMALL_STATE(2219)] = 68887, - [SMALL_STATE(2220)] = 68911, - [SMALL_STATE(2221)] = 68939, - [SMALL_STATE(2222)] = 68977, - [SMALL_STATE(2223)] = 69001, - [SMALL_STATE(2224)] = 69029, - [SMALL_STATE(2225)] = 69061, - [SMALL_STATE(2226)] = 69095, - [SMALL_STATE(2227)] = 69127, - [SMALL_STATE(2228)] = 69159, - [SMALL_STATE(2229)] = 69191, - [SMALL_STATE(2230)] = 69221, - [SMALL_STATE(2231)] = 69255, - [SMALL_STATE(2232)] = 69283, - [SMALL_STATE(2233)] = 69315, - [SMALL_STATE(2234)] = 69339, - [SMALL_STATE(2235)] = 69377, - [SMALL_STATE(2236)] = 69407, - [SMALL_STATE(2237)] = 69439, - [SMALL_STATE(2238)] = 69469, - [SMALL_STATE(2239)] = 69507, - [SMALL_STATE(2240)] = 69539, - [SMALL_STATE(2241)] = 69565, - [SMALL_STATE(2242)] = 69603, - [SMALL_STATE(2243)] = 69629, - [SMALL_STATE(2244)] = 69667, - [SMALL_STATE(2245)] = 69705, - [SMALL_STATE(2246)] = 69743, - [SMALL_STATE(2247)] = 69771, - [SMALL_STATE(2248)] = 69809, - [SMALL_STATE(2249)] = 69835, - [SMALL_STATE(2250)] = 69867, - [SMALL_STATE(2251)] = 69895, - [SMALL_STATE(2252)] = 69927, - [SMALL_STATE(2253)] = 69965, - [SMALL_STATE(2254)] = 69997, - [SMALL_STATE(2255)] = 70029, - [SMALL_STATE(2256)] = 70067, - [SMALL_STATE(2257)] = 70099, - [SMALL_STATE(2258)] = 70137, - [SMALL_STATE(2259)] = 70175, - [SMALL_STATE(2260)] = 70203, - [SMALL_STATE(2261)] = 70227, - [SMALL_STATE(2262)] = 70255, - [SMALL_STATE(2263)] = 70287, - [SMALL_STATE(2264)] = 70322, - [SMALL_STATE(2265)] = 70357, - [SMALL_STATE(2266)] = 70384, - [SMALL_STATE(2267)] = 70419, - [SMALL_STATE(2268)] = 70454, - [SMALL_STATE(2269)] = 70489, - [SMALL_STATE(2270)] = 70524, - [SMALL_STATE(2271)] = 70545, - [SMALL_STATE(2272)] = 70580, - [SMALL_STATE(2273)] = 70615, - [SMALL_STATE(2274)] = 70650, - [SMALL_STATE(2275)] = 70685, - [SMALL_STATE(2276)] = 70720, - [SMALL_STATE(2277)] = 70741, - [SMALL_STATE(2278)] = 70776, - [SMALL_STATE(2279)] = 70805, - [SMALL_STATE(2280)] = 70830, - [SMALL_STATE(2281)] = 70865, - [SMALL_STATE(2282)] = 70900, - [SMALL_STATE(2283)] = 70935, - [SMALL_STATE(2284)] = 70970, - [SMALL_STATE(2285)] = 71005, - [SMALL_STATE(2286)] = 71040, - [SMALL_STATE(2287)] = 71075, - [SMALL_STATE(2288)] = 71096, - [SMALL_STATE(2289)] = 71121, - [SMALL_STATE(2290)] = 71154, - [SMALL_STATE(2291)] = 71189, - [SMALL_STATE(2292)] = 71222, - [SMALL_STATE(2293)] = 71257, - [SMALL_STATE(2294)] = 71290, - [SMALL_STATE(2295)] = 71325, - [SMALL_STATE(2296)] = 71360, - [SMALL_STATE(2297)] = 71395, - [SMALL_STATE(2298)] = 71430, - [SMALL_STATE(2299)] = 71463, - [SMALL_STATE(2300)] = 71498, - [SMALL_STATE(2301)] = 71533, - [SMALL_STATE(2302)] = 71568, - [SMALL_STATE(2303)] = 71603, - [SMALL_STATE(2304)] = 71638, - [SMALL_STATE(2305)] = 71673, - [SMALL_STATE(2306)] = 71708, - [SMALL_STATE(2307)] = 71743, - [SMALL_STATE(2308)] = 71778, - [SMALL_STATE(2309)] = 71813, - [SMALL_STATE(2310)] = 71846, - [SMALL_STATE(2311)] = 71881, - [SMALL_STATE(2312)] = 71916, - [SMALL_STATE(2313)] = 71951, - [SMALL_STATE(2314)] = 71972, - [SMALL_STATE(2315)] = 72007, - [SMALL_STATE(2316)] = 72042, - [SMALL_STATE(2317)] = 72067, - [SMALL_STATE(2318)] = 72097, - [SMALL_STATE(2319)] = 72129, - [SMALL_STATE(2320)] = 72161, - [SMALL_STATE(2321)] = 72193, - [SMALL_STATE(2322)] = 72225, - [SMALL_STATE(2323)] = 72257, - [SMALL_STATE(2324)] = 72289, - [SMALL_STATE(2325)] = 72315, - [SMALL_STATE(2326)] = 72343, - [SMALL_STATE(2327)] = 72375, - [SMALL_STATE(2328)] = 72407, - [SMALL_STATE(2329)] = 72437, - [SMALL_STATE(2330)] = 72469, - [SMALL_STATE(2331)] = 72491, - [SMALL_STATE(2332)] = 72523, - [SMALL_STATE(2333)] = 72555, - [SMALL_STATE(2334)] = 72587, - [SMALL_STATE(2335)] = 72619, - [SMALL_STATE(2336)] = 72651, - [SMALL_STATE(2337)] = 72681, - [SMALL_STATE(2338)] = 72713, - [SMALL_STATE(2339)] = 72743, - [SMALL_STATE(2340)] = 72765, - [SMALL_STATE(2341)] = 72795, - [SMALL_STATE(2342)] = 72821, - [SMALL_STATE(2343)] = 72843, - [SMALL_STATE(2344)] = 72869, - [SMALL_STATE(2345)] = 72897, - [SMALL_STATE(2346)] = 72929, - [SMALL_STATE(2347)] = 72961, - [SMALL_STATE(2348)] = 72993, - [SMALL_STATE(2349)] = 73025, - [SMALL_STATE(2350)] = 73055, - [SMALL_STATE(2351)] = 73087, - [SMALL_STATE(2352)] = 73109, - [SMALL_STATE(2353)] = 73141, - [SMALL_STATE(2354)] = 73169, - [SMALL_STATE(2355)] = 73195, - [SMALL_STATE(2356)] = 73223, - [SMALL_STATE(2357)] = 73255, - [SMALL_STATE(2358)] = 73287, - [SMALL_STATE(2359)] = 73319, - [SMALL_STATE(2360)] = 73351, - [SMALL_STATE(2361)] = 73383, - [SMALL_STATE(2362)] = 73413, - [SMALL_STATE(2363)] = 73443, - [SMALL_STATE(2364)] = 73473, - [SMALL_STATE(2365)] = 73503, - [SMALL_STATE(2366)] = 73525, - [SMALL_STATE(2367)] = 73557, - [SMALL_STATE(2368)] = 73579, - [SMALL_STATE(2369)] = 73611, - [SMALL_STATE(2370)] = 73643, - [SMALL_STATE(2371)] = 73671, - [SMALL_STATE(2372)] = 73703, - [SMALL_STATE(2373)] = 73735, - [SMALL_STATE(2374)] = 73767, - [SMALL_STATE(2375)] = 73799, - [SMALL_STATE(2376)] = 73828, - [SMALL_STATE(2377)] = 73857, - [SMALL_STATE(2378)] = 73886, - [SMALL_STATE(2379)] = 73915, - [SMALL_STATE(2380)] = 73936, - [SMALL_STATE(2381)] = 73965, - [SMALL_STATE(2382)] = 73986, - [SMALL_STATE(2383)] = 74015, - [SMALL_STATE(2384)] = 74042, - [SMALL_STATE(2385)] = 74063, - [SMALL_STATE(2386)] = 74092, - [SMALL_STATE(2387)] = 74113, - [SMALL_STATE(2388)] = 74142, - [SMALL_STATE(2389)] = 74165, - [SMALL_STATE(2390)] = 74190, - [SMALL_STATE(2391)] = 74211, - [SMALL_STATE(2392)] = 74240, - [SMALL_STATE(2393)] = 74269, - [SMALL_STATE(2394)] = 74292, - [SMALL_STATE(2395)] = 74315, - [SMALL_STATE(2396)] = 74338, - [SMALL_STATE(2397)] = 74367, - [SMALL_STATE(2398)] = 74388, - [SMALL_STATE(2399)] = 74415, - [SMALL_STATE(2400)] = 74444, - [SMALL_STATE(2401)] = 74467, - [SMALL_STATE(2402)] = 74496, - [SMALL_STATE(2403)] = 74525, - [SMALL_STATE(2404)] = 74548, - [SMALL_STATE(2405)] = 74573, - [SMALL_STATE(2406)] = 74596, - [SMALL_STATE(2407)] = 74625, - [SMALL_STATE(2408)] = 74654, - [SMALL_STATE(2409)] = 74681, - [SMALL_STATE(2410)] = 74710, - [SMALL_STATE(2411)] = 74739, - [SMALL_STATE(2412)] = 74768, - [SMALL_STATE(2413)] = 74797, - [SMALL_STATE(2414)] = 74826, - [SMALL_STATE(2415)] = 74855, - [SMALL_STATE(2416)] = 74876, - [SMALL_STATE(2417)] = 74905, - [SMALL_STATE(2418)] = 74934, - [SMALL_STATE(2419)] = 74957, - [SMALL_STATE(2420)] = 74986, - [SMALL_STATE(2421)] = 75015, - [SMALL_STATE(2422)] = 75044, - [SMALL_STATE(2423)] = 75073, - [SMALL_STATE(2424)] = 75102, - [SMALL_STATE(2425)] = 75131, - [SMALL_STATE(2426)] = 75154, - [SMALL_STATE(2427)] = 75181, - [SMALL_STATE(2428)] = 75210, - [SMALL_STATE(2429)] = 75239, - [SMALL_STATE(2430)] = 75264, - [SMALL_STATE(2431)] = 75285, - [SMALL_STATE(2432)] = 75314, - [SMALL_STATE(2433)] = 75343, - [SMALL_STATE(2434)] = 75364, - [SMALL_STATE(2435)] = 75393, - [SMALL_STATE(2436)] = 75416, - [SMALL_STATE(2437)] = 75445, - [SMALL_STATE(2438)] = 75474, - [SMALL_STATE(2439)] = 75503, - [SMALL_STATE(2440)] = 75526, - [SMALL_STATE(2441)] = 75553, - [SMALL_STATE(2442)] = 75574, - [SMALL_STATE(2443)] = 75603, - [SMALL_STATE(2444)] = 75632, - [SMALL_STATE(2445)] = 75661, - [SMALL_STATE(2446)] = 75690, - [SMALL_STATE(2447)] = 75711, - [SMALL_STATE(2448)] = 75734, - [SMALL_STATE(2449)] = 75757, - [SMALL_STATE(2450)] = 75778, - [SMALL_STATE(2451)] = 75801, - [SMALL_STATE(2452)] = 75830, - [SMALL_STATE(2453)] = 75853, - [SMALL_STATE(2454)] = 75882, - [SMALL_STATE(2455)] = 75911, - [SMALL_STATE(2456)] = 75940, - [SMALL_STATE(2457)] = 75963, - [SMALL_STATE(2458)] = 75992, - [SMALL_STATE(2459)] = 76021, - [SMALL_STATE(2460)] = 76040, - [SMALL_STATE(2461)] = 76069, - [SMALL_STATE(2462)] = 76098, - [SMALL_STATE(2463)] = 76119, - [SMALL_STATE(2464)] = 76144, - [SMALL_STATE(2465)] = 76171, - [SMALL_STATE(2466)] = 76192, - [SMALL_STATE(2467)] = 76221, - [SMALL_STATE(2468)] = 76250, - [SMALL_STATE(2469)] = 76271, - [SMALL_STATE(2470)] = 76290, - [SMALL_STATE(2471)] = 76311, - [SMALL_STATE(2472)] = 76340, - [SMALL_STATE(2473)] = 76369, - [SMALL_STATE(2474)] = 76398, - [SMALL_STATE(2475)] = 76427, - [SMALL_STATE(2476)] = 76456, - [SMALL_STATE(2477)] = 76474, - [SMALL_STATE(2478)] = 76500, - [SMALL_STATE(2479)] = 76524, - [SMALL_STATE(2480)] = 76546, - [SMALL_STATE(2481)] = 76568, - [SMALL_STATE(2482)] = 76592, - [SMALL_STATE(2483)] = 76614, - [SMALL_STATE(2484)] = 76632, - [SMALL_STATE(2485)] = 76650, - [SMALL_STATE(2486)] = 76668, - [SMALL_STATE(2487)] = 76686, - [SMALL_STATE(2488)] = 76712, - [SMALL_STATE(2489)] = 76730, - [SMALL_STATE(2490)] = 76756, - [SMALL_STATE(2491)] = 76778, - [SMALL_STATE(2492)] = 76796, - [SMALL_STATE(2493)] = 76814, - [SMALL_STATE(2494)] = 76832, - [SMALL_STATE(2495)] = 76858, - [SMALL_STATE(2496)] = 76876, - [SMALL_STATE(2497)] = 76894, - [SMALL_STATE(2498)] = 76912, - [SMALL_STATE(2499)] = 76938, - [SMALL_STATE(2500)] = 76964, - [SMALL_STATE(2501)] = 76982, - [SMALL_STATE(2502)] = 77000, - [SMALL_STATE(2503)] = 77022, - [SMALL_STATE(2504)] = 77048, - [SMALL_STATE(2505)] = 77074, - [SMALL_STATE(2506)] = 77098, - [SMALL_STATE(2507)] = 77116, - [SMALL_STATE(2508)] = 77142, - [SMALL_STATE(2509)] = 77160, - [SMALL_STATE(2510)] = 77186, - [SMALL_STATE(2511)] = 77206, - [SMALL_STATE(2512)] = 77230, - [SMALL_STATE(2513)] = 77256, - [SMALL_STATE(2514)] = 77282, - [SMALL_STATE(2515)] = 77308, - [SMALL_STATE(2516)] = 77334, - [SMALL_STATE(2517)] = 77360, - [SMALL_STATE(2518)] = 77386, - [SMALL_STATE(2519)] = 77412, - [SMALL_STATE(2520)] = 77438, - [SMALL_STATE(2521)] = 77464, - [SMALL_STATE(2522)] = 77488, - [SMALL_STATE(2523)] = 77514, - [SMALL_STATE(2524)] = 77540, - [SMALL_STATE(2525)] = 77564, - [SMALL_STATE(2526)] = 77582, - [SMALL_STATE(2527)] = 77606, - [SMALL_STATE(2528)] = 77632, - [SMALL_STATE(2529)] = 77658, - [SMALL_STATE(2530)] = 77684, - [SMALL_STATE(2531)] = 77710, - [SMALL_STATE(2532)] = 77736, - [SMALL_STATE(2533)] = 77762, - [SMALL_STATE(2534)] = 77788, - [SMALL_STATE(2535)] = 77814, - [SMALL_STATE(2536)] = 77840, - [SMALL_STATE(2537)] = 77866, - [SMALL_STATE(2538)] = 77892, - [SMALL_STATE(2539)] = 77918, - [SMALL_STATE(2540)] = 77944, - [SMALL_STATE(2541)] = 77970, - [SMALL_STATE(2542)] = 77996, - [SMALL_STATE(2543)] = 78022, - [SMALL_STATE(2544)] = 78048, - [SMALL_STATE(2545)] = 78074, - [SMALL_STATE(2546)] = 78098, - [SMALL_STATE(2547)] = 78124, - [SMALL_STATE(2548)] = 78148, - [SMALL_STATE(2549)] = 78174, - [SMALL_STATE(2550)] = 78200, - [SMALL_STATE(2551)] = 78226, - [SMALL_STATE(2552)] = 78250, - [SMALL_STATE(2553)] = 78274, - [SMALL_STATE(2554)] = 78292, - [SMALL_STATE(2555)] = 78318, - [SMALL_STATE(2556)] = 78338, - [SMALL_STATE(2557)] = 78356, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78398, - [SMALL_STATE(2560)] = 78424, - [SMALL_STATE(2561)] = 78448, - [SMALL_STATE(2562)] = 78468, - [SMALL_STATE(2563)] = 78486, - [SMALL_STATE(2564)] = 78506, - [SMALL_STATE(2565)] = 78530, - [SMALL_STATE(2566)] = 78548, - [SMALL_STATE(2567)] = 78566, - [SMALL_STATE(2568)] = 78584, - [SMALL_STATE(2569)] = 78610, - [SMALL_STATE(2570)] = 78636, - [SMALL_STATE(2571)] = 78660, - [SMALL_STATE(2572)] = 78682, - [SMALL_STATE(2573)] = 78706, - [SMALL_STATE(2574)] = 78732, - [SMALL_STATE(2575)] = 78758, - [SMALL_STATE(2576)] = 78780, - [SMALL_STATE(2577)] = 78798, - [SMALL_STATE(2578)] = 78816, - [SMALL_STATE(2579)] = 78842, - [SMALL_STATE(2580)] = 78868, - [SMALL_STATE(2581)] = 78894, - [SMALL_STATE(2582)] = 78916, - [SMALL_STATE(2583)] = 78942, - [SMALL_STATE(2584)] = 78968, - [SMALL_STATE(2585)] = 78994, - [SMALL_STATE(2586)] = 79017, - [SMALL_STATE(2587)] = 79040, - [SMALL_STATE(2588)] = 79057, - [SMALL_STATE(2589)] = 79076, - [SMALL_STATE(2590)] = 79099, - [SMALL_STATE(2591)] = 79118, - [SMALL_STATE(2592)] = 79141, - [SMALL_STATE(2593)] = 79164, - [SMALL_STATE(2594)] = 79187, - [SMALL_STATE(2595)] = 79206, - [SMALL_STATE(2596)] = 79229, - [SMALL_STATE(2597)] = 79252, - [SMALL_STATE(2598)] = 79273, - [SMALL_STATE(2599)] = 79296, - [SMALL_STATE(2600)] = 79319, - [SMALL_STATE(2601)] = 79340, - [SMALL_STATE(2602)] = 79363, - [SMALL_STATE(2603)] = 79386, - [SMALL_STATE(2604)] = 79409, - [SMALL_STATE(2605)] = 79432, - [SMALL_STATE(2606)] = 79453, - [SMALL_STATE(2607)] = 79476, - [SMALL_STATE(2608)] = 79499, - [SMALL_STATE(2609)] = 79522, - [SMALL_STATE(2610)] = 79545, - [SMALL_STATE(2611)] = 79566, - [SMALL_STATE(2612)] = 79589, - [SMALL_STATE(2613)] = 79612, - [SMALL_STATE(2614)] = 79635, - [SMALL_STATE(2615)] = 79658, - [SMALL_STATE(2616)] = 79681, - [SMALL_STATE(2617)] = 79702, - [SMALL_STATE(2618)] = 79719, - [SMALL_STATE(2619)] = 79742, - [SMALL_STATE(2620)] = 79763, - [SMALL_STATE(2621)] = 79786, - [SMALL_STATE(2622)] = 79809, - [SMALL_STATE(2623)] = 79832, - [SMALL_STATE(2624)] = 79855, - [SMALL_STATE(2625)] = 79878, - [SMALL_STATE(2626)] = 79901, - [SMALL_STATE(2627)] = 79924, - [SMALL_STATE(2628)] = 79947, - [SMALL_STATE(2629)] = 79970, - [SMALL_STATE(2630)] = 79993, - [SMALL_STATE(2631)] = 80014, - [SMALL_STATE(2632)] = 80037, - [SMALL_STATE(2633)] = 80060, - [SMALL_STATE(2634)] = 80083, - [SMALL_STATE(2635)] = 80106, - [SMALL_STATE(2636)] = 80129, - [SMALL_STATE(2637)] = 80152, - [SMALL_STATE(2638)] = 80175, - [SMALL_STATE(2639)] = 80198, - [SMALL_STATE(2640)] = 80221, - [SMALL_STATE(2641)] = 80244, - [SMALL_STATE(2642)] = 80267, - [SMALL_STATE(2643)] = 80290, - [SMALL_STATE(2644)] = 80313, - [SMALL_STATE(2645)] = 80336, - [SMALL_STATE(2646)] = 80357, - [SMALL_STATE(2647)] = 80378, - [SMALL_STATE(2648)] = 80401, - [SMALL_STATE(2649)] = 80424, - [SMALL_STATE(2650)] = 80447, - [SMALL_STATE(2651)] = 80470, - [SMALL_STATE(2652)] = 80493, - [SMALL_STATE(2653)] = 80512, - [SMALL_STATE(2654)] = 80535, - [SMALL_STATE(2655)] = 80558, - [SMALL_STATE(2656)] = 80581, - [SMALL_STATE(2657)] = 80604, - [SMALL_STATE(2658)] = 80627, - [SMALL_STATE(2659)] = 80648, - [SMALL_STATE(2660)] = 80671, - [SMALL_STATE(2661)] = 80694, - [SMALL_STATE(2662)] = 80717, - [SMALL_STATE(2663)] = 80740, - [SMALL_STATE(2664)] = 80763, - [SMALL_STATE(2665)] = 80786, - [SMALL_STATE(2666)] = 80809, - [SMALL_STATE(2667)] = 80832, - [SMALL_STATE(2668)] = 80855, - [SMALL_STATE(2669)] = 80878, - [SMALL_STATE(2670)] = 80897, - [SMALL_STATE(2671)] = 80920, - [SMALL_STATE(2672)] = 80943, - [SMALL_STATE(2673)] = 80966, - [SMALL_STATE(2674)] = 80989, - [SMALL_STATE(2675)] = 81012, - [SMALL_STATE(2676)] = 81035, - [SMALL_STATE(2677)] = 81058, - [SMALL_STATE(2678)] = 81077, - [SMALL_STATE(2679)] = 81100, - [SMALL_STATE(2680)] = 81117, - [SMALL_STATE(2681)] = 81140, - [SMALL_STATE(2682)] = 81163, - [SMALL_STATE(2683)] = 81182, - [SMALL_STATE(2684)] = 81205, - [SMALL_STATE(2685)] = 81224, - [SMALL_STATE(2686)] = 81243, - [SMALL_STATE(2687)] = 81262, - [SMALL_STATE(2688)] = 81285, - [SMALL_STATE(2689)] = 81308, - [SMALL_STATE(2690)] = 81331, - [SMALL_STATE(2691)] = 81354, - [SMALL_STATE(2692)] = 81377, - [SMALL_STATE(2693)] = 81400, - [SMALL_STATE(2694)] = 81423, - [SMALL_STATE(2695)] = 81446, - [SMALL_STATE(2696)] = 81465, - [SMALL_STATE(2697)] = 81488, - [SMALL_STATE(2698)] = 81511, - [SMALL_STATE(2699)] = 81534, - [SMALL_STATE(2700)] = 81557, - [SMALL_STATE(2701)] = 81580, - [SMALL_STATE(2702)] = 81603, - [SMALL_STATE(2703)] = 81626, - [SMALL_STATE(2704)] = 81647, - [SMALL_STATE(2705)] = 81670, - [SMALL_STATE(2706)] = 81693, - [SMALL_STATE(2707)] = 81716, - [SMALL_STATE(2708)] = 81739, - [SMALL_STATE(2709)] = 81762, - [SMALL_STATE(2710)] = 81785, - [SMALL_STATE(2711)] = 81804, - [SMALL_STATE(2712)] = 81827, - [SMALL_STATE(2713)] = 81850, - [SMALL_STATE(2714)] = 81873, - [SMALL_STATE(2715)] = 81896, - [SMALL_STATE(2716)] = 81917, - [SMALL_STATE(2717)] = 81940, - [SMALL_STATE(2718)] = 81963, - [SMALL_STATE(2719)] = 81986, - [SMALL_STATE(2720)] = 82005, - [SMALL_STATE(2721)] = 82028, - [SMALL_STATE(2722)] = 82051, - [SMALL_STATE(2723)] = 82074, - [SMALL_STATE(2724)] = 82097, - [SMALL_STATE(2725)] = 82120, - [SMALL_STATE(2726)] = 82143, - [SMALL_STATE(2727)] = 82166, - [SMALL_STATE(2728)] = 82189, - [SMALL_STATE(2729)] = 82212, - [SMALL_STATE(2730)] = 82235, - [SMALL_STATE(2731)] = 82258, - [SMALL_STATE(2732)] = 82279, - [SMALL_STATE(2733)] = 82298, - [SMALL_STATE(2734)] = 82321, - [SMALL_STATE(2735)] = 82340, - [SMALL_STATE(2736)] = 82363, - [SMALL_STATE(2737)] = 82386, - [SMALL_STATE(2738)] = 82409, - [SMALL_STATE(2739)] = 82432, - [SMALL_STATE(2740)] = 82455, - [SMALL_STATE(2741)] = 82478, - [SMALL_STATE(2742)] = 82501, - [SMALL_STATE(2743)] = 82524, - [SMALL_STATE(2744)] = 82545, - [SMALL_STATE(2745)] = 82568, - [SMALL_STATE(2746)] = 82591, - [SMALL_STATE(2747)] = 82614, - [SMALL_STATE(2748)] = 82637, - [SMALL_STATE(2749)] = 82660, - [SMALL_STATE(2750)] = 82683, - [SMALL_STATE(2751)] = 82704, - [SMALL_STATE(2752)] = 82727, - [SMALL_STATE(2753)] = 82750, - [SMALL_STATE(2754)] = 82773, - [SMALL_STATE(2755)] = 82796, - [SMALL_STATE(2756)] = 82819, - [SMALL_STATE(2757)] = 82842, - [SMALL_STATE(2758)] = 82859, - [SMALL_STATE(2759)] = 82882, - [SMALL_STATE(2760)] = 82903, - [SMALL_STATE(2761)] = 82926, - [SMALL_STATE(2762)] = 82949, - [SMALL_STATE(2763)] = 82972, - [SMALL_STATE(2764)] = 82993, - [SMALL_STATE(2765)] = 83016, - [SMALL_STATE(2766)] = 83039, - [SMALL_STATE(2767)] = 83062, - [SMALL_STATE(2768)] = 83085, - [SMALL_STATE(2769)] = 83108, - [SMALL_STATE(2770)] = 83127, - [SMALL_STATE(2771)] = 83148, - [SMALL_STATE(2772)] = 83169, - [SMALL_STATE(2773)] = 83192, - [SMALL_STATE(2774)] = 83215, - [SMALL_STATE(2775)] = 83234, - [SMALL_STATE(2776)] = 83251, - [SMALL_STATE(2777)] = 83274, - [SMALL_STATE(2778)] = 83293, - [SMALL_STATE(2779)] = 83316, - [SMALL_STATE(2780)] = 83335, - [SMALL_STATE(2781)] = 83358, - [SMALL_STATE(2782)] = 83381, - [SMALL_STATE(2783)] = 83404, - [SMALL_STATE(2784)] = 83427, - [SMALL_STATE(2785)] = 83450, - [SMALL_STATE(2786)] = 83471, - [SMALL_STATE(2787)] = 83494, - [SMALL_STATE(2788)] = 83517, - [SMALL_STATE(2789)] = 83540, - [SMALL_STATE(2790)] = 83559, - [SMALL_STATE(2791)] = 83582, - [SMALL_STATE(2792)] = 83605, - [SMALL_STATE(2793)] = 83628, - [SMALL_STATE(2794)] = 83651, - [SMALL_STATE(2795)] = 83670, - [SMALL_STATE(2796)] = 83693, - [SMALL_STATE(2797)] = 83712, - [SMALL_STATE(2798)] = 83731, - [SMALL_STATE(2799)] = 83750, - [SMALL_STATE(2800)] = 83773, - [SMALL_STATE(2801)] = 83796, - [SMALL_STATE(2802)] = 83815, - [SMALL_STATE(2803)] = 83838, - [SMALL_STATE(2804)] = 83859, - [SMALL_STATE(2805)] = 83880, - [SMALL_STATE(2806)] = 83899, - [SMALL_STATE(2807)] = 83922, - [SMALL_STATE(2808)] = 83945, - [SMALL_STATE(2809)] = 83968, - [SMALL_STATE(2810)] = 83987, - [SMALL_STATE(2811)] = 84006, - [SMALL_STATE(2812)] = 84025, - [SMALL_STATE(2813)] = 84048, - [SMALL_STATE(2814)] = 84071, - [SMALL_STATE(2815)] = 84094, - [SMALL_STATE(2816)] = 84117, - [SMALL_STATE(2817)] = 84138, - [SMALL_STATE(2818)] = 84161, - [SMALL_STATE(2819)] = 84184, - [SMALL_STATE(2820)] = 84207, - [SMALL_STATE(2821)] = 84230, - [SMALL_STATE(2822)] = 84253, - [SMALL_STATE(2823)] = 84276, - [SMALL_STATE(2824)] = 84299, - [SMALL_STATE(2825)] = 84320, - [SMALL_STATE(2826)] = 84341, - [SMALL_STATE(2827)] = 84364, - [SMALL_STATE(2828)] = 84387, - [SMALL_STATE(2829)] = 84410, - [SMALL_STATE(2830)] = 84431, - [SMALL_STATE(2831)] = 84454, - [SMALL_STATE(2832)] = 84477, - [SMALL_STATE(2833)] = 84496, - [SMALL_STATE(2834)] = 84519, - [SMALL_STATE(2835)] = 84542, - [SMALL_STATE(2836)] = 84561, - [SMALL_STATE(2837)] = 84584, - [SMALL_STATE(2838)] = 84607, - [SMALL_STATE(2839)] = 84626, - [SMALL_STATE(2840)] = 84649, - [SMALL_STATE(2841)] = 84672, - [SMALL_STATE(2842)] = 84695, - [SMALL_STATE(2843)] = 84718, - [SMALL_STATE(2844)] = 84741, - [SMALL_STATE(2845)] = 84764, - [SMALL_STATE(2846)] = 84787, - [SMALL_STATE(2847)] = 84807, - [SMALL_STATE(2848)] = 84827, - [SMALL_STATE(2849)] = 84843, - [SMALL_STATE(2850)] = 84863, - [SMALL_STATE(2851)] = 84883, - [SMALL_STATE(2852)] = 84903, - [SMALL_STATE(2853)] = 84919, - [SMALL_STATE(2854)] = 84939, - [SMALL_STATE(2855)] = 84955, - [SMALL_STATE(2856)] = 84975, - [SMALL_STATE(2857)] = 84991, - [SMALL_STATE(2858)] = 85007, - [SMALL_STATE(2859)] = 85023, - [SMALL_STATE(2860)] = 85043, - [SMALL_STATE(2861)] = 85059, - [SMALL_STATE(2862)] = 85075, - [SMALL_STATE(2863)] = 85095, - [SMALL_STATE(2864)] = 85115, - [SMALL_STATE(2865)] = 85131, - [SMALL_STATE(2866)] = 85151, - [SMALL_STATE(2867)] = 85171, - [SMALL_STATE(2868)] = 85191, - [SMALL_STATE(2869)] = 85211, - [SMALL_STATE(2870)] = 85227, - [SMALL_STATE(2871)] = 85243, - [SMALL_STATE(2872)] = 85263, - [SMALL_STATE(2873)] = 85283, - [SMALL_STATE(2874)] = 85299, - [SMALL_STATE(2875)] = 85319, - [SMALL_STATE(2876)] = 85335, - [SMALL_STATE(2877)] = 85353, - [SMALL_STATE(2878)] = 85373, - [SMALL_STATE(2879)] = 85393, - [SMALL_STATE(2880)] = 85413, - [SMALL_STATE(2881)] = 85429, - [SMALL_STATE(2882)] = 85449, - [SMALL_STATE(2883)] = 85469, - [SMALL_STATE(2884)] = 85485, - [SMALL_STATE(2885)] = 85505, - [SMALL_STATE(2886)] = 85525, - [SMALL_STATE(2887)] = 85541, - [SMALL_STATE(2888)] = 85559, - [SMALL_STATE(2889)] = 85579, - [SMALL_STATE(2890)] = 85599, - [SMALL_STATE(2891)] = 85619, - [SMALL_STATE(2892)] = 85639, - [SMALL_STATE(2893)] = 85659, - [SMALL_STATE(2894)] = 85677, - [SMALL_STATE(2895)] = 85695, - [SMALL_STATE(2896)] = 85713, - [SMALL_STATE(2897)] = 85733, - [SMALL_STATE(2898)] = 85753, - [SMALL_STATE(2899)] = 85773, - [SMALL_STATE(2900)] = 85793, - [SMALL_STATE(2901)] = 85813, - [SMALL_STATE(2902)] = 85833, - [SMALL_STATE(2903)] = 85853, - [SMALL_STATE(2904)] = 85873, - [SMALL_STATE(2905)] = 85893, - [SMALL_STATE(2906)] = 85913, - [SMALL_STATE(2907)] = 85933, - [SMALL_STATE(2908)] = 85953, - [SMALL_STATE(2909)] = 85973, - [SMALL_STATE(2910)] = 85993, - [SMALL_STATE(2911)] = 86013, - [SMALL_STATE(2912)] = 86033, - [SMALL_STATE(2913)] = 86053, - [SMALL_STATE(2914)] = 86073, - [SMALL_STATE(2915)] = 86093, - [SMALL_STATE(2916)] = 86113, - [SMALL_STATE(2917)] = 86133, - [SMALL_STATE(2918)] = 86151, - [SMALL_STATE(2919)] = 86171, - [SMALL_STATE(2920)] = 86191, - [SMALL_STATE(2921)] = 86211, - [SMALL_STATE(2922)] = 86227, - [SMALL_STATE(2923)] = 86247, - [SMALL_STATE(2924)] = 86265, - [SMALL_STATE(2925)] = 86281, - [SMALL_STATE(2926)] = 86301, - [SMALL_STATE(2927)] = 86321, - [SMALL_STATE(2928)] = 86341, - [SMALL_STATE(2929)] = 86359, - [SMALL_STATE(2930)] = 86379, - [SMALL_STATE(2931)] = 86399, - [SMALL_STATE(2932)] = 86419, - [SMALL_STATE(2933)] = 86435, - [SMALL_STATE(2934)] = 86451, - [SMALL_STATE(2935)] = 86471, - [SMALL_STATE(2936)] = 86491, - [SMALL_STATE(2937)] = 86511, - [SMALL_STATE(2938)] = 86527, - [SMALL_STATE(2939)] = 86547, - [SMALL_STATE(2940)] = 86567, - [SMALL_STATE(2941)] = 86587, - [SMALL_STATE(2942)] = 86605, - [SMALL_STATE(2943)] = 86625, - [SMALL_STATE(2944)] = 86645, - [SMALL_STATE(2945)] = 86661, - [SMALL_STATE(2946)] = 86681, - [SMALL_STATE(2947)] = 86697, - [SMALL_STATE(2948)] = 86717, - [SMALL_STATE(2949)] = 86737, - [SMALL_STATE(2950)] = 86755, - [SMALL_STATE(2951)] = 86771, - [SMALL_STATE(2952)] = 86791, - [SMALL_STATE(2953)] = 86807, - [SMALL_STATE(2954)] = 86827, - [SMALL_STATE(2955)] = 86845, - [SMALL_STATE(2956)] = 86861, - [SMALL_STATE(2957)] = 86881, - [SMALL_STATE(2958)] = 86901, - [SMALL_STATE(2959)] = 86917, - [SMALL_STATE(2960)] = 86937, - [SMALL_STATE(2961)] = 86957, - [SMALL_STATE(2962)] = 86977, - [SMALL_STATE(2963)] = 86997, - [SMALL_STATE(2964)] = 87017, - [SMALL_STATE(2965)] = 87037, - [SMALL_STATE(2966)] = 87057, - [SMALL_STATE(2967)] = 87077, - [SMALL_STATE(2968)] = 87097, - [SMALL_STATE(2969)] = 87117, - [SMALL_STATE(2970)] = 87135, - [SMALL_STATE(2971)] = 87155, - [SMALL_STATE(2972)] = 87175, - [SMALL_STATE(2973)] = 87193, - [SMALL_STATE(2974)] = 87211, - [SMALL_STATE(2975)] = 87231, - [SMALL_STATE(2976)] = 87251, - [SMALL_STATE(2977)] = 87269, - [SMALL_STATE(2978)] = 87289, - [SMALL_STATE(2979)] = 87309, - [SMALL_STATE(2980)] = 87329, - [SMALL_STATE(2981)] = 87347, - [SMALL_STATE(2982)] = 87363, - [SMALL_STATE(2983)] = 87383, - [SMALL_STATE(2984)] = 87401, - [SMALL_STATE(2985)] = 87421, - [SMALL_STATE(2986)] = 87441, - [SMALL_STATE(2987)] = 87461, - [SMALL_STATE(2988)] = 87481, - [SMALL_STATE(2989)] = 87501, - [SMALL_STATE(2990)] = 87517, - [SMALL_STATE(2991)] = 87533, - [SMALL_STATE(2992)] = 87553, - [SMALL_STATE(2993)] = 87571, - [SMALL_STATE(2994)] = 87591, - [SMALL_STATE(2995)] = 87609, - [SMALL_STATE(2996)] = 87629, - [SMALL_STATE(2997)] = 87649, - [SMALL_STATE(2998)] = 87669, - [SMALL_STATE(2999)] = 87689, - [SMALL_STATE(3000)] = 87707, - [SMALL_STATE(3001)] = 87727, - [SMALL_STATE(3002)] = 87747, - [SMALL_STATE(3003)] = 87767, - [SMALL_STATE(3004)] = 87787, - [SMALL_STATE(3005)] = 87805, - [SMALL_STATE(3006)] = 87825, - [SMALL_STATE(3007)] = 87845, - [SMALL_STATE(3008)] = 87865, - [SMALL_STATE(3009)] = 87885, - [SMALL_STATE(3010)] = 87905, - [SMALL_STATE(3011)] = 87925, - [SMALL_STATE(3012)] = 87945, - [SMALL_STATE(3013)] = 87961, - [SMALL_STATE(3014)] = 87981, - [SMALL_STATE(3015)] = 88001, - [SMALL_STATE(3016)] = 88021, - [SMALL_STATE(3017)] = 88041, - [SMALL_STATE(3018)] = 88061, - [SMALL_STATE(3019)] = 88081, - [SMALL_STATE(3020)] = 88097, - [SMALL_STATE(3021)] = 88117, - [SMALL_STATE(3022)] = 88137, - [SMALL_STATE(3023)] = 88157, - [SMALL_STATE(3024)] = 88177, - [SMALL_STATE(3025)] = 88197, - [SMALL_STATE(3026)] = 88217, - [SMALL_STATE(3027)] = 88233, - [SMALL_STATE(3028)] = 88249, - [SMALL_STATE(3029)] = 88269, - [SMALL_STATE(3030)] = 88289, - [SMALL_STATE(3031)] = 88309, - [SMALL_STATE(3032)] = 88329, - [SMALL_STATE(3033)] = 88349, - [SMALL_STATE(3034)] = 88367, - [SMALL_STATE(3035)] = 88387, - [SMALL_STATE(3036)] = 88403, - [SMALL_STATE(3037)] = 88423, - [SMALL_STATE(3038)] = 88439, - [SMALL_STATE(3039)] = 88459, - [SMALL_STATE(3040)] = 88479, - [SMALL_STATE(3041)] = 88497, - [SMALL_STATE(3042)] = 88515, - [SMALL_STATE(3043)] = 88535, - [SMALL_STATE(3044)] = 88555, - [SMALL_STATE(3045)] = 88575, - [SMALL_STATE(3046)] = 88595, - [SMALL_STATE(3047)] = 88611, - [SMALL_STATE(3048)] = 88627, - [SMALL_STATE(3049)] = 88647, - [SMALL_STATE(3050)] = 88667, - [SMALL_STATE(3051)] = 88687, - [SMALL_STATE(3052)] = 88707, - [SMALL_STATE(3053)] = 88727, - [SMALL_STATE(3054)] = 88745, - [SMALL_STATE(3055)] = 88765, - [SMALL_STATE(3056)] = 88783, - [SMALL_STATE(3057)] = 88799, - [SMALL_STATE(3058)] = 88819, - [SMALL_STATE(3059)] = 88839, - [SMALL_STATE(3060)] = 88857, - [SMALL_STATE(3061)] = 88877, - [SMALL_STATE(3062)] = 88897, - [SMALL_STATE(3063)] = 88917, - [SMALL_STATE(3064)] = 88935, - [SMALL_STATE(3065)] = 88955, - [SMALL_STATE(3066)] = 88971, - [SMALL_STATE(3067)] = 88991, - [SMALL_STATE(3068)] = 89011, - [SMALL_STATE(3069)] = 89031, - [SMALL_STATE(3070)] = 89051, - [SMALL_STATE(3071)] = 89069, - [SMALL_STATE(3072)] = 89089, - [SMALL_STATE(3073)] = 89107, - [SMALL_STATE(3074)] = 89125, - [SMALL_STATE(3075)] = 89145, - [SMALL_STATE(3076)] = 89163, - [SMALL_STATE(3077)] = 89179, - [SMALL_STATE(3078)] = 89195, - [SMALL_STATE(3079)] = 89215, - [SMALL_STATE(3080)] = 89235, - [SMALL_STATE(3081)] = 89255, - [SMALL_STATE(3082)] = 89275, - [SMALL_STATE(3083)] = 89291, - [SMALL_STATE(3084)] = 89311, - [SMALL_STATE(3085)] = 89331, - [SMALL_STATE(3086)] = 89351, - [SMALL_STATE(3087)] = 89367, - [SMALL_STATE(3088)] = 89387, - [SMALL_STATE(3089)] = 89407, - [SMALL_STATE(3090)] = 89423, - [SMALL_STATE(3091)] = 89443, - [SMALL_STATE(3092)] = 89463, - [SMALL_STATE(3093)] = 89479, - [SMALL_STATE(3094)] = 89495, - [SMALL_STATE(3095)] = 89511, - [SMALL_STATE(3096)] = 89531, - [SMALL_STATE(3097)] = 89551, - [SMALL_STATE(3098)] = 89571, - [SMALL_STATE(3099)] = 89591, - [SMALL_STATE(3100)] = 89609, - [SMALL_STATE(3101)] = 89625, - [SMALL_STATE(3102)] = 89643, - [SMALL_STATE(3103)] = 89659, - [SMALL_STATE(3104)] = 89675, - [SMALL_STATE(3105)] = 89695, - [SMALL_STATE(3106)] = 89715, - [SMALL_STATE(3107)] = 89735, - [SMALL_STATE(3108)] = 89751, - [SMALL_STATE(3109)] = 89767, - [SMALL_STATE(3110)] = 89785, - [SMALL_STATE(3111)] = 89805, - [SMALL_STATE(3112)] = 89825, - [SMALL_STATE(3113)] = 89845, - [SMALL_STATE(3114)] = 89865, - [SMALL_STATE(3115)] = 89885, - [SMALL_STATE(3116)] = 89905, - [SMALL_STATE(3117)] = 89925, - [SMALL_STATE(3118)] = 89945, - [SMALL_STATE(3119)] = 89963, - [SMALL_STATE(3120)] = 89983, - [SMALL_STATE(3121)] = 90003, - [SMALL_STATE(3122)] = 90021, - [SMALL_STATE(3123)] = 90041, - [SMALL_STATE(3124)] = 90061, - [SMALL_STATE(3125)] = 90081, - [SMALL_STATE(3126)] = 90101, - [SMALL_STATE(3127)] = 90121, - [SMALL_STATE(3128)] = 90141, - [SMALL_STATE(3129)] = 90159, - [SMALL_STATE(3130)] = 90179, - [SMALL_STATE(3131)] = 90199, - [SMALL_STATE(3132)] = 90219, - [SMALL_STATE(3133)] = 90235, - [SMALL_STATE(3134)] = 90255, - [SMALL_STATE(3135)] = 90273, - [SMALL_STATE(3136)] = 90293, - [SMALL_STATE(3137)] = 90313, - [SMALL_STATE(3138)] = 90333, - [SMALL_STATE(3139)] = 90351, - [SMALL_STATE(3140)] = 90371, - [SMALL_STATE(3141)] = 90387, - [SMALL_STATE(3142)] = 90407, - [SMALL_STATE(3143)] = 90425, - [SMALL_STATE(3144)] = 90445, - [SMALL_STATE(3145)] = 90465, - [SMALL_STATE(3146)] = 90485, - [SMALL_STATE(3147)] = 90505, - [SMALL_STATE(3148)] = 90525, - [SMALL_STATE(3149)] = 90545, - [SMALL_STATE(3150)] = 90565, - [SMALL_STATE(3151)] = 90585, - [SMALL_STATE(3152)] = 90605, - [SMALL_STATE(3153)] = 90621, - [SMALL_STATE(3154)] = 90641, - [SMALL_STATE(3155)] = 90661, - [SMALL_STATE(3156)] = 90681, - [SMALL_STATE(3157)] = 90698, - [SMALL_STATE(3158)] = 90715, - [SMALL_STATE(3159)] = 90732, - [SMALL_STATE(3160)] = 90749, - [SMALL_STATE(3161)] = 90766, - [SMALL_STATE(3162)] = 90783, - [SMALL_STATE(3163)] = 90800, - [SMALL_STATE(3164)] = 90815, - [SMALL_STATE(3165)] = 90832, - [SMALL_STATE(3166)] = 90849, - [SMALL_STATE(3167)] = 90866, - [SMALL_STATE(3168)] = 90883, - [SMALL_STATE(3169)] = 90900, - [SMALL_STATE(3170)] = 90917, - [SMALL_STATE(3171)] = 90932, - [SMALL_STATE(3172)] = 90949, - [SMALL_STATE(3173)] = 90966, - [SMALL_STATE(3174)] = 90983, - [SMALL_STATE(3175)] = 91000, - [SMALL_STATE(3176)] = 91017, - [SMALL_STATE(3177)] = 91034, - [SMALL_STATE(3178)] = 91049, - [SMALL_STATE(3179)] = 91066, - [SMALL_STATE(3180)] = 91083, - [SMALL_STATE(3181)] = 91100, - [SMALL_STATE(3182)] = 91115, - [SMALL_STATE(3183)] = 91132, - [SMALL_STATE(3184)] = 91147, - [SMALL_STATE(3185)] = 91162, - [SMALL_STATE(3186)] = 91179, - [SMALL_STATE(3187)] = 91196, - [SMALL_STATE(3188)] = 91213, - [SMALL_STATE(3189)] = 91228, - [SMALL_STATE(3190)] = 91245, - [SMALL_STATE(3191)] = 91262, - [SMALL_STATE(3192)] = 91277, - [SMALL_STATE(3193)] = 91294, - [SMALL_STATE(3194)] = 91311, - [SMALL_STATE(3195)] = 91328, - [SMALL_STATE(3196)] = 91345, - [SMALL_STATE(3197)] = 91362, - [SMALL_STATE(3198)] = 91379, - [SMALL_STATE(3199)] = 91396, - [SMALL_STATE(3200)] = 91411, - [SMALL_STATE(3201)] = 91428, - [SMALL_STATE(3202)] = 91445, - [SMALL_STATE(3203)] = 91462, - [SMALL_STATE(3204)] = 91479, - [SMALL_STATE(3205)] = 91496, - [SMALL_STATE(3206)] = 91513, - [SMALL_STATE(3207)] = 91528, - [SMALL_STATE(3208)] = 91545, - [SMALL_STATE(3209)] = 91562, - [SMALL_STATE(3210)] = 91579, - [SMALL_STATE(3211)] = 91596, - [SMALL_STATE(3212)] = 91613, - [SMALL_STATE(3213)] = 91630, - [SMALL_STATE(3214)] = 91647, - [SMALL_STATE(3215)] = 91664, - [SMALL_STATE(3216)] = 91679, - [SMALL_STATE(3217)] = 91694, - [SMALL_STATE(3218)] = 91711, - [SMALL_STATE(3219)] = 91728, - [SMALL_STATE(3220)] = 91743, - [SMALL_STATE(3221)] = 91758, - [SMALL_STATE(3222)] = 91775, - [SMALL_STATE(3223)] = 91790, - [SMALL_STATE(3224)] = 91807, - [SMALL_STATE(3225)] = 91822, - [SMALL_STATE(3226)] = 91839, - [SMALL_STATE(3227)] = 91856, - [SMALL_STATE(3228)] = 91873, - [SMALL_STATE(3229)] = 91890, - [SMALL_STATE(3230)] = 91907, - [SMALL_STATE(3231)] = 91924, - [SMALL_STATE(3232)] = 91941, - [SMALL_STATE(3233)] = 91958, - [SMALL_STATE(3234)] = 91975, - [SMALL_STATE(3235)] = 91990, - [SMALL_STATE(3236)] = 92007, - [SMALL_STATE(3237)] = 92024, - [SMALL_STATE(3238)] = 92041, - [SMALL_STATE(3239)] = 92056, - [SMALL_STATE(3240)] = 92073, - [SMALL_STATE(3241)] = 92090, - [SMALL_STATE(3242)] = 92107, - [SMALL_STATE(3243)] = 92124, - [SMALL_STATE(3244)] = 92141, - [SMALL_STATE(3245)] = 92156, - [SMALL_STATE(3246)] = 92173, - [SMALL_STATE(3247)] = 92190, - [SMALL_STATE(3248)] = 92207, - [SMALL_STATE(3249)] = 92224, - [SMALL_STATE(3250)] = 92241, - [SMALL_STATE(3251)] = 92258, - [SMALL_STATE(3252)] = 92275, - [SMALL_STATE(3253)] = 92292, - [SMALL_STATE(3254)] = 92309, - [SMALL_STATE(3255)] = 92326, - [SMALL_STATE(3256)] = 92343, - [SMALL_STATE(3257)] = 92360, - [SMALL_STATE(3258)] = 92375, - [SMALL_STATE(3259)] = 92390, - [SMALL_STATE(3260)] = 92405, - [SMALL_STATE(3261)] = 92422, - [SMALL_STATE(3262)] = 92439, - [SMALL_STATE(3263)] = 92456, - [SMALL_STATE(3264)] = 92473, - [SMALL_STATE(3265)] = 92490, - [SMALL_STATE(3266)] = 92507, - [SMALL_STATE(3267)] = 92524, - [SMALL_STATE(3268)] = 92541, - [SMALL_STATE(3269)] = 92558, - [SMALL_STATE(3270)] = 92573, - [SMALL_STATE(3271)] = 92588, - [SMALL_STATE(3272)] = 92605, - [SMALL_STATE(3273)] = 92620, - [SMALL_STATE(3274)] = 92637, - [SMALL_STATE(3275)] = 92654, - [SMALL_STATE(3276)] = 92671, - [SMALL_STATE(3277)] = 92688, - [SMALL_STATE(3278)] = 92705, - [SMALL_STATE(3279)] = 92720, - [SMALL_STATE(3280)] = 92737, - [SMALL_STATE(3281)] = 92754, - [SMALL_STATE(3282)] = 92771, - [SMALL_STATE(3283)] = 92788, - [SMALL_STATE(3284)] = 92805, - [SMALL_STATE(3285)] = 92822, - [SMALL_STATE(3286)] = 92839, - [SMALL_STATE(3287)] = 92856, - [SMALL_STATE(3288)] = 92873, - [SMALL_STATE(3289)] = 92890, - [SMALL_STATE(3290)] = 92907, - [SMALL_STATE(3291)] = 92924, - [SMALL_STATE(3292)] = 92941, - [SMALL_STATE(3293)] = 92958, - [SMALL_STATE(3294)] = 92975, - [SMALL_STATE(3295)] = 92992, - [SMALL_STATE(3296)] = 93009, - [SMALL_STATE(3297)] = 93026, - [SMALL_STATE(3298)] = 93041, - [SMALL_STATE(3299)] = 93058, - [SMALL_STATE(3300)] = 93075, - [SMALL_STATE(3301)] = 93090, - [SMALL_STATE(3302)] = 93107, - [SMALL_STATE(3303)] = 93124, - [SMALL_STATE(3304)] = 93141, - [SMALL_STATE(3305)] = 93156, - [SMALL_STATE(3306)] = 93173, - [SMALL_STATE(3307)] = 93190, - [SMALL_STATE(3308)] = 93207, - [SMALL_STATE(3309)] = 93224, - [SMALL_STATE(3310)] = 93241, - [SMALL_STATE(3311)] = 93258, - [SMALL_STATE(3312)] = 93273, - [SMALL_STATE(3313)] = 93290, - [SMALL_STATE(3314)] = 93307, - [SMALL_STATE(3315)] = 93324, - [SMALL_STATE(3316)] = 93341, - [SMALL_STATE(3317)] = 93356, - [SMALL_STATE(3318)] = 93373, - [SMALL_STATE(3319)] = 93390, - [SMALL_STATE(3320)] = 93407, - [SMALL_STATE(3321)] = 93424, - [SMALL_STATE(3322)] = 93441, - [SMALL_STATE(3323)] = 93456, - [SMALL_STATE(3324)] = 93473, - [SMALL_STATE(3325)] = 93490, - [SMALL_STATE(3326)] = 93507, - [SMALL_STATE(3327)] = 93522, - [SMALL_STATE(3328)] = 93539, - [SMALL_STATE(3329)] = 93556, - [SMALL_STATE(3330)] = 93573, - [SMALL_STATE(3331)] = 93590, - [SMALL_STATE(3332)] = 93607, - [SMALL_STATE(3333)] = 93624, - [SMALL_STATE(3334)] = 93639, - [SMALL_STATE(3335)] = 93656, - [SMALL_STATE(3336)] = 93673, - [SMALL_STATE(3337)] = 93690, - [SMALL_STATE(3338)] = 93707, - [SMALL_STATE(3339)] = 93724, - [SMALL_STATE(3340)] = 93739, - [SMALL_STATE(3341)] = 93756, - [SMALL_STATE(3342)] = 93771, - [SMALL_STATE(3343)] = 93788, - [SMALL_STATE(3344)] = 93805, - [SMALL_STATE(3345)] = 93822, - [SMALL_STATE(3346)] = 93839, - [SMALL_STATE(3347)] = 93856, - [SMALL_STATE(3348)] = 93873, - [SMALL_STATE(3349)] = 93888, - [SMALL_STATE(3350)] = 93905, - [SMALL_STATE(3351)] = 93922, - [SMALL_STATE(3352)] = 93939, - [SMALL_STATE(3353)] = 93956, - [SMALL_STATE(3354)] = 93973, - [SMALL_STATE(3355)] = 93990, - [SMALL_STATE(3356)] = 94007, - [SMALL_STATE(3357)] = 94024, - [SMALL_STATE(3358)] = 94041, - [SMALL_STATE(3359)] = 94058, - [SMALL_STATE(3360)] = 94075, - [SMALL_STATE(3361)] = 94092, - [SMALL_STATE(3362)] = 94107, - [SMALL_STATE(3363)] = 94124, - [SMALL_STATE(3364)] = 94139, - [SMALL_STATE(3365)] = 94156, - [SMALL_STATE(3366)] = 94171, - [SMALL_STATE(3367)] = 94188, - [SMALL_STATE(3368)] = 94205, - [SMALL_STATE(3369)] = 94222, - [SMALL_STATE(3370)] = 94239, - [SMALL_STATE(3371)] = 94254, - [SMALL_STATE(3372)] = 94271, - [SMALL_STATE(3373)] = 94286, - [SMALL_STATE(3374)] = 94303, - [SMALL_STATE(3375)] = 94320, - [SMALL_STATE(3376)] = 94337, - [SMALL_STATE(3377)] = 94354, - [SMALL_STATE(3378)] = 94371, - [SMALL_STATE(3379)] = 94388, - [SMALL_STATE(3380)] = 94403, - [SMALL_STATE(3381)] = 94420, - [SMALL_STATE(3382)] = 94437, - [SMALL_STATE(3383)] = 94452, - [SMALL_STATE(3384)] = 94469, - [SMALL_STATE(3385)] = 94486, - [SMALL_STATE(3386)] = 94503, - [SMALL_STATE(3387)] = 94520, - [SMALL_STATE(3388)] = 94537, - [SMALL_STATE(3389)] = 94554, - [SMALL_STATE(3390)] = 94571, - [SMALL_STATE(3391)] = 94586, - [SMALL_STATE(3392)] = 94603, - [SMALL_STATE(3393)] = 94618, - [SMALL_STATE(3394)] = 94635, - [SMALL_STATE(3395)] = 94652, - [SMALL_STATE(3396)] = 94669, - [SMALL_STATE(3397)] = 94686, - [SMALL_STATE(3398)] = 94701, - [SMALL_STATE(3399)] = 94718, - [SMALL_STATE(3400)] = 94735, - [SMALL_STATE(3401)] = 94752, - [SMALL_STATE(3402)] = 94769, - [SMALL_STATE(3403)] = 94786, - [SMALL_STATE(3404)] = 94803, - [SMALL_STATE(3405)] = 94820, - [SMALL_STATE(3406)] = 94837, - [SMALL_STATE(3407)] = 94854, - [SMALL_STATE(3408)] = 94871, - [SMALL_STATE(3409)] = 94888, - [SMALL_STATE(3410)] = 94903, - [SMALL_STATE(3411)] = 94920, - [SMALL_STATE(3412)] = 94935, - [SMALL_STATE(3413)] = 94950, - [SMALL_STATE(3414)] = 94967, - [SMALL_STATE(3415)] = 94982, - [SMALL_STATE(3416)] = 94999, - [SMALL_STATE(3417)] = 95014, - [SMALL_STATE(3418)] = 95031, - [SMALL_STATE(3419)] = 95048, - [SMALL_STATE(3420)] = 95065, - [SMALL_STATE(3421)] = 95082, - [SMALL_STATE(3422)] = 95099, - [SMALL_STATE(3423)] = 95116, - [SMALL_STATE(3424)] = 95133, - [SMALL_STATE(3425)] = 95150, - [SMALL_STATE(3426)] = 95167, - [SMALL_STATE(3427)] = 95184, - [SMALL_STATE(3428)] = 95201, - [SMALL_STATE(3429)] = 95216, - [SMALL_STATE(3430)] = 95233, - [SMALL_STATE(3431)] = 95250, - [SMALL_STATE(3432)] = 95267, - [SMALL_STATE(3433)] = 95284, - [SMALL_STATE(3434)] = 95301, - [SMALL_STATE(3435)] = 95318, - [SMALL_STATE(3436)] = 95333, - [SMALL_STATE(3437)] = 95350, - [SMALL_STATE(3438)] = 95367, - [SMALL_STATE(3439)] = 95384, - [SMALL_STATE(3440)] = 95401, - [SMALL_STATE(3441)] = 95418, - [SMALL_STATE(3442)] = 95435, - [SMALL_STATE(3443)] = 95452, - [SMALL_STATE(3444)] = 95469, - [SMALL_STATE(3445)] = 95486, - [SMALL_STATE(3446)] = 95503, - [SMALL_STATE(3447)] = 95520, - [SMALL_STATE(3448)] = 95535, - [SMALL_STATE(3449)] = 95550, - [SMALL_STATE(3450)] = 95567, - [SMALL_STATE(3451)] = 95584, - [SMALL_STATE(3452)] = 95599, - [SMALL_STATE(3453)] = 95616, - [SMALL_STATE(3454)] = 95633, - [SMALL_STATE(3455)] = 95650, - [SMALL_STATE(3456)] = 95667, - [SMALL_STATE(3457)] = 95684, - [SMALL_STATE(3458)] = 95701, - [SMALL_STATE(3459)] = 95716, - [SMALL_STATE(3460)] = 95730, - [SMALL_STATE(3461)] = 95744, - [SMALL_STATE(3462)] = 95758, - [SMALL_STATE(3463)] = 95772, - [SMALL_STATE(3464)] = 95786, - [SMALL_STATE(3465)] = 95800, - [SMALL_STATE(3466)] = 95814, - [SMALL_STATE(3467)] = 95828, - [SMALL_STATE(3468)] = 95842, - [SMALL_STATE(3469)] = 95856, - [SMALL_STATE(3470)] = 95870, - [SMALL_STATE(3471)] = 95884, - [SMALL_STATE(3472)] = 95898, - [SMALL_STATE(3473)] = 95912, - [SMALL_STATE(3474)] = 95926, - [SMALL_STATE(3475)] = 95940, - [SMALL_STATE(3476)] = 95954, - [SMALL_STATE(3477)] = 95968, - [SMALL_STATE(3478)] = 95982, - [SMALL_STATE(3479)] = 95996, - [SMALL_STATE(3480)] = 96010, - [SMALL_STATE(3481)] = 96024, - [SMALL_STATE(3482)] = 96038, - [SMALL_STATE(3483)] = 96052, - [SMALL_STATE(3484)] = 96066, - [SMALL_STATE(3485)] = 96080, - [SMALL_STATE(3486)] = 96094, - [SMALL_STATE(3487)] = 96108, - [SMALL_STATE(3488)] = 96122, - [SMALL_STATE(3489)] = 96136, - [SMALL_STATE(3490)] = 96150, - [SMALL_STATE(3491)] = 96164, - [SMALL_STATE(3492)] = 96178, - [SMALL_STATE(3493)] = 96192, - [SMALL_STATE(3494)] = 96206, - [SMALL_STATE(3495)] = 96220, - [SMALL_STATE(3496)] = 96234, - [SMALL_STATE(3497)] = 96248, - [SMALL_STATE(3498)] = 96262, - [SMALL_STATE(3499)] = 96276, - [SMALL_STATE(3500)] = 96290, - [SMALL_STATE(3501)] = 96304, - [SMALL_STATE(3502)] = 96318, - [SMALL_STATE(3503)] = 96332, - [SMALL_STATE(3504)] = 96346, - [SMALL_STATE(3505)] = 96360, - [SMALL_STATE(3506)] = 96374, - [SMALL_STATE(3507)] = 96388, - [SMALL_STATE(3508)] = 96402, - [SMALL_STATE(3509)] = 96416, - [SMALL_STATE(3510)] = 96430, - [SMALL_STATE(3511)] = 96444, - [SMALL_STATE(3512)] = 96458, - [SMALL_STATE(3513)] = 96472, - [SMALL_STATE(3514)] = 96486, - [SMALL_STATE(3515)] = 96500, - [SMALL_STATE(3516)] = 96514, - [SMALL_STATE(3517)] = 96528, - [SMALL_STATE(3518)] = 96542, - [SMALL_STATE(3519)] = 96556, - [SMALL_STATE(3520)] = 96570, - [SMALL_STATE(3521)] = 96584, - [SMALL_STATE(3522)] = 96598, - [SMALL_STATE(3523)] = 96612, - [SMALL_STATE(3524)] = 96626, - [SMALL_STATE(3525)] = 96640, - [SMALL_STATE(3526)] = 96654, - [SMALL_STATE(3527)] = 96668, - [SMALL_STATE(3528)] = 96682, - [SMALL_STATE(3529)] = 96696, - [SMALL_STATE(3530)] = 96710, - [SMALL_STATE(3531)] = 96724, - [SMALL_STATE(3532)] = 96738, - [SMALL_STATE(3533)] = 96752, - [SMALL_STATE(3534)] = 96766, - [SMALL_STATE(3535)] = 96780, - [SMALL_STATE(3536)] = 96794, - [SMALL_STATE(3537)] = 96808, - [SMALL_STATE(3538)] = 96822, - [SMALL_STATE(3539)] = 96836, - [SMALL_STATE(3540)] = 96850, - [SMALL_STATE(3541)] = 96864, - [SMALL_STATE(3542)] = 96878, - [SMALL_STATE(3543)] = 96892, - [SMALL_STATE(3544)] = 96906, - [SMALL_STATE(3545)] = 96920, - [SMALL_STATE(3546)] = 96934, - [SMALL_STATE(3547)] = 96948, - [SMALL_STATE(3548)] = 96962, - [SMALL_STATE(3549)] = 96976, - [SMALL_STATE(3550)] = 96990, - [SMALL_STATE(3551)] = 97004, - [SMALL_STATE(3552)] = 97018, - [SMALL_STATE(3553)] = 97032, - [SMALL_STATE(3554)] = 97046, - [SMALL_STATE(3555)] = 97060, - [SMALL_STATE(3556)] = 97074, - [SMALL_STATE(3557)] = 97088, - [SMALL_STATE(3558)] = 97102, - [SMALL_STATE(3559)] = 97116, - [SMALL_STATE(3560)] = 97130, - [SMALL_STATE(3561)] = 97144, - [SMALL_STATE(3562)] = 97158, - [SMALL_STATE(3563)] = 97172, - [SMALL_STATE(3564)] = 97186, - [SMALL_STATE(3565)] = 97200, - [SMALL_STATE(3566)] = 97214, - [SMALL_STATE(3567)] = 97228, - [SMALL_STATE(3568)] = 97242, - [SMALL_STATE(3569)] = 97256, - [SMALL_STATE(3570)] = 97270, - [SMALL_STATE(3571)] = 97284, - [SMALL_STATE(3572)] = 97298, - [SMALL_STATE(3573)] = 97312, - [SMALL_STATE(3574)] = 97326, - [SMALL_STATE(3575)] = 97340, - [SMALL_STATE(3576)] = 97354, - [SMALL_STATE(3577)] = 97368, - [SMALL_STATE(3578)] = 97382, - [SMALL_STATE(3579)] = 97396, - [SMALL_STATE(3580)] = 97410, - [SMALL_STATE(3581)] = 97424, - [SMALL_STATE(3582)] = 97438, - [SMALL_STATE(3583)] = 97452, - [SMALL_STATE(3584)] = 97466, - [SMALL_STATE(3585)] = 97480, - [SMALL_STATE(3586)] = 97494, - [SMALL_STATE(3587)] = 97508, - [SMALL_STATE(3588)] = 97522, - [SMALL_STATE(3589)] = 97536, - [SMALL_STATE(3590)] = 97550, - [SMALL_STATE(3591)] = 97564, - [SMALL_STATE(3592)] = 97578, - [SMALL_STATE(3593)] = 97592, - [SMALL_STATE(3594)] = 97606, - [SMALL_STATE(3595)] = 97620, - [SMALL_STATE(3596)] = 97634, - [SMALL_STATE(3597)] = 97648, - [SMALL_STATE(3598)] = 97662, - [SMALL_STATE(3599)] = 97676, - [SMALL_STATE(3600)] = 97690, - [SMALL_STATE(3601)] = 97704, - [SMALL_STATE(3602)] = 97718, - [SMALL_STATE(3603)] = 97732, - [SMALL_STATE(3604)] = 97746, - [SMALL_STATE(3605)] = 97760, - [SMALL_STATE(3606)] = 97774, - [SMALL_STATE(3607)] = 97788, - [SMALL_STATE(3608)] = 97802, - [SMALL_STATE(3609)] = 97816, - [SMALL_STATE(3610)] = 97830, - [SMALL_STATE(3611)] = 97844, - [SMALL_STATE(3612)] = 97858, - [SMALL_STATE(3613)] = 97872, - [SMALL_STATE(3614)] = 97886, - [SMALL_STATE(3615)] = 97900, - [SMALL_STATE(3616)] = 97914, - [SMALL_STATE(3617)] = 97928, - [SMALL_STATE(3618)] = 97942, - [SMALL_STATE(3619)] = 97956, - [SMALL_STATE(3620)] = 97970, - [SMALL_STATE(3621)] = 97984, - [SMALL_STATE(3622)] = 97998, - [SMALL_STATE(3623)] = 98012, - [SMALL_STATE(3624)] = 98026, - [SMALL_STATE(3625)] = 98040, - [SMALL_STATE(3626)] = 98054, - [SMALL_STATE(3627)] = 98068, - [SMALL_STATE(3628)] = 98082, - [SMALL_STATE(3629)] = 98096, - [SMALL_STATE(3630)] = 98110, - [SMALL_STATE(3631)] = 98124, - [SMALL_STATE(3632)] = 98138, - [SMALL_STATE(3633)] = 98152, - [SMALL_STATE(3634)] = 98166, - [SMALL_STATE(3635)] = 98180, - [SMALL_STATE(3636)] = 98194, - [SMALL_STATE(3637)] = 98208, - [SMALL_STATE(3638)] = 98222, - [SMALL_STATE(3639)] = 98236, - [SMALL_STATE(3640)] = 98250, - [SMALL_STATE(3641)] = 98264, - [SMALL_STATE(3642)] = 98278, - [SMALL_STATE(3643)] = 98292, - [SMALL_STATE(3644)] = 98306, - [SMALL_STATE(3645)] = 98320, - [SMALL_STATE(3646)] = 98334, - [SMALL_STATE(3647)] = 98348, - [SMALL_STATE(3648)] = 98362, - [SMALL_STATE(3649)] = 98376, - [SMALL_STATE(3650)] = 98390, - [SMALL_STATE(3651)] = 98404, - [SMALL_STATE(3652)] = 98418, - [SMALL_STATE(3653)] = 98432, - [SMALL_STATE(3654)] = 98446, - [SMALL_STATE(3655)] = 98460, - [SMALL_STATE(3656)] = 98474, - [SMALL_STATE(3657)] = 98488, - [SMALL_STATE(3658)] = 98502, - [SMALL_STATE(3659)] = 98516, - [SMALL_STATE(3660)] = 98530, - [SMALL_STATE(3661)] = 98544, - [SMALL_STATE(3662)] = 98558, - [SMALL_STATE(3663)] = 98572, - [SMALL_STATE(3664)] = 98586, - [SMALL_STATE(3665)] = 98600, - [SMALL_STATE(3666)] = 98614, - [SMALL_STATE(3667)] = 98628, - [SMALL_STATE(3668)] = 98642, - [SMALL_STATE(3669)] = 98656, - [SMALL_STATE(3670)] = 98670, - [SMALL_STATE(3671)] = 98684, - [SMALL_STATE(3672)] = 98698, - [SMALL_STATE(3673)] = 98712, - [SMALL_STATE(3674)] = 98726, - [SMALL_STATE(3675)] = 98740, - [SMALL_STATE(3676)] = 98754, - [SMALL_STATE(3677)] = 98768, - [SMALL_STATE(3678)] = 98782, - [SMALL_STATE(3679)] = 98796, - [SMALL_STATE(3680)] = 98810, - [SMALL_STATE(3681)] = 98824, - [SMALL_STATE(3682)] = 98838, - [SMALL_STATE(3683)] = 98852, - [SMALL_STATE(3684)] = 98866, - [SMALL_STATE(3685)] = 98880, - [SMALL_STATE(3686)] = 98894, - [SMALL_STATE(3687)] = 98908, - [SMALL_STATE(3688)] = 98922, - [SMALL_STATE(3689)] = 98936, - [SMALL_STATE(3690)] = 98950, - [SMALL_STATE(3691)] = 98964, - [SMALL_STATE(3692)] = 98978, - [SMALL_STATE(3693)] = 98992, - [SMALL_STATE(3694)] = 99006, - [SMALL_STATE(3695)] = 99020, - [SMALL_STATE(3696)] = 99034, - [SMALL_STATE(3697)] = 99048, - [SMALL_STATE(3698)] = 99062, - [SMALL_STATE(3699)] = 99076, - [SMALL_STATE(3700)] = 99090, - [SMALL_STATE(3701)] = 99104, - [SMALL_STATE(3702)] = 99118, - [SMALL_STATE(3703)] = 99132, - [SMALL_STATE(3704)] = 99146, - [SMALL_STATE(3705)] = 99160, - [SMALL_STATE(3706)] = 99174, - [SMALL_STATE(3707)] = 99188, - [SMALL_STATE(3708)] = 99202, - [SMALL_STATE(3709)] = 99216, - [SMALL_STATE(3710)] = 99230, - [SMALL_STATE(3711)] = 99244, - [SMALL_STATE(3712)] = 99258, - [SMALL_STATE(3713)] = 99272, - [SMALL_STATE(3714)] = 99286, - [SMALL_STATE(3715)] = 99300, - [SMALL_STATE(3716)] = 99314, - [SMALL_STATE(3717)] = 99328, - [SMALL_STATE(3718)] = 99342, - [SMALL_STATE(3719)] = 99356, - [SMALL_STATE(3720)] = 99370, - [SMALL_STATE(3721)] = 99384, - [SMALL_STATE(3722)] = 99398, - [SMALL_STATE(3723)] = 99412, - [SMALL_STATE(3724)] = 99426, - [SMALL_STATE(3725)] = 99440, - [SMALL_STATE(3726)] = 99454, - [SMALL_STATE(3727)] = 99468, - [SMALL_STATE(3728)] = 99482, - [SMALL_STATE(3729)] = 99496, - [SMALL_STATE(3730)] = 99510, - [SMALL_STATE(3731)] = 99524, - [SMALL_STATE(3732)] = 99538, - [SMALL_STATE(3733)] = 99552, - [SMALL_STATE(3734)] = 99566, - [SMALL_STATE(3735)] = 99580, - [SMALL_STATE(3736)] = 99594, - [SMALL_STATE(3737)] = 99608, - [SMALL_STATE(3738)] = 99622, - [SMALL_STATE(3739)] = 99636, - [SMALL_STATE(3740)] = 99650, - [SMALL_STATE(3741)] = 99664, - [SMALL_STATE(3742)] = 99678, - [SMALL_STATE(3743)] = 99692, - [SMALL_STATE(3744)] = 99706, - [SMALL_STATE(3745)] = 99720, - [SMALL_STATE(3746)] = 99734, - [SMALL_STATE(3747)] = 99748, - [SMALL_STATE(3748)] = 99762, - [SMALL_STATE(3749)] = 99776, - [SMALL_STATE(3750)] = 99790, - [SMALL_STATE(3751)] = 99804, - [SMALL_STATE(3752)] = 99818, - [SMALL_STATE(3753)] = 99832, - [SMALL_STATE(3754)] = 99846, - [SMALL_STATE(3755)] = 99860, - [SMALL_STATE(3756)] = 99874, - [SMALL_STATE(3757)] = 99888, - [SMALL_STATE(3758)] = 99902, - [SMALL_STATE(3759)] = 99916, - [SMALL_STATE(3760)] = 99930, - [SMALL_STATE(3761)] = 99944, - [SMALL_STATE(3762)] = 99958, - [SMALL_STATE(3763)] = 99972, - [SMALL_STATE(3764)] = 99986, - [SMALL_STATE(3765)] = 100000, - [SMALL_STATE(3766)] = 100014, - [SMALL_STATE(3767)] = 100028, - [SMALL_STATE(3768)] = 100042, - [SMALL_STATE(3769)] = 100056, - [SMALL_STATE(3770)] = 100070, - [SMALL_STATE(3771)] = 100084, - [SMALL_STATE(3772)] = 100098, - [SMALL_STATE(3773)] = 100112, - [SMALL_STATE(3774)] = 100126, - [SMALL_STATE(3775)] = 100140, - [SMALL_STATE(3776)] = 100154, - [SMALL_STATE(3777)] = 100168, - [SMALL_STATE(3778)] = 100182, - [SMALL_STATE(3779)] = 100186, - [SMALL_STATE(3780)] = 100190, - [SMALL_STATE(3781)] = 100194, - [SMALL_STATE(3782)] = 100198, - [SMALL_STATE(3783)] = 100202, - [SMALL_STATE(3784)] = 100206, + [SMALL_STATE(1058)] = 0, + [SMALL_STATE(1059)] = 75, + [SMALL_STATE(1060)] = 148, + [SMALL_STATE(1061)] = 219, + [SMALL_STATE(1062)] = 319, + [SMALL_STATE(1063)] = 419, + [SMALL_STATE(1064)] = 519, + [SMALL_STATE(1065)] = 598, + [SMALL_STATE(1066)] = 675, + [SMALL_STATE(1067)] = 752, + [SMALL_STATE(1068)] = 829, + [SMALL_STATE(1069)] = 903, + [SMALL_STATE(1070)] = 967, + [SMALL_STATE(1071)] = 1031, + [SMALL_STATE(1072)] = 1095, + [SMALL_STATE(1073)] = 1159, + [SMALL_STATE(1074)] = 1223, + [SMALL_STATE(1075)] = 1287, + [SMALL_STATE(1076)] = 1351, + [SMALL_STATE(1077)] = 1419, + [SMALL_STATE(1078)] = 1483, + [SMALL_STATE(1079)] = 1547, + [SMALL_STATE(1080)] = 1610, + [SMALL_STATE(1081)] = 1711, + [SMALL_STATE(1082)] = 1774, + [SMALL_STATE(1083)] = 1841, + [SMALL_STATE(1084)] = 1908, + [SMALL_STATE(1085)] = 1975, + [SMALL_STATE(1086)] = 2046, + [SMALL_STATE(1087)] = 2117, + [SMALL_STATE(1088)] = 2184, + [SMALL_STATE(1089)] = 2247, + [SMALL_STATE(1090)] = 2348, + [SMALL_STATE(1091)] = 2411, + [SMALL_STATE(1092)] = 2482, + [SMALL_STATE(1093)] = 2545, + [SMALL_STATE(1094)] = 2616, + [SMALL_STATE(1095)] = 2683, + [SMALL_STATE(1096)] = 2784, + [SMALL_STATE(1097)] = 2846, + [SMALL_STATE(1098)] = 2910, + [SMALL_STATE(1099)] = 2974, + [SMALL_STATE(1100)] = 3044, + [SMALL_STATE(1101)] = 3106, + [SMALL_STATE(1102)] = 3168, + [SMALL_STATE(1103)] = 3230, + [SMALL_STATE(1104)] = 3292, + [SMALL_STATE(1105)] = 3360, + [SMALL_STATE(1106)] = 3422, + [SMALL_STATE(1107)] = 3484, + [SMALL_STATE(1108)] = 3546, + [SMALL_STATE(1109)] = 3607, + [SMALL_STATE(1110)] = 3670, + [SMALL_STATE(1111)] = 3745, + [SMALL_STATE(1112)] = 3808, + [SMALL_STATE(1113)] = 3869, + [SMALL_STATE(1114)] = 3932, + [SMALL_STATE(1115)] = 3993, + [SMALL_STATE(1116)] = 4054, + [SMALL_STATE(1117)] = 4115, + [SMALL_STATE(1118)] = 4178, + [SMALL_STATE(1119)] = 4239, + [SMALL_STATE(1120)] = 4300, + [SMALL_STATE(1121)] = 4361, + [SMALL_STATE(1122)] = 4422, + [SMALL_STATE(1123)] = 4515, + [SMALL_STATE(1124)] = 4578, + [SMALL_STATE(1125)] = 4641, + [SMALL_STATE(1126)] = 4704, + [SMALL_STATE(1127)] = 4765, + [SMALL_STATE(1128)] = 4826, + [SMALL_STATE(1129)] = 4919, + [SMALL_STATE(1130)] = 4980, + [SMALL_STATE(1131)] = 5073, + [SMALL_STATE(1132)] = 5134, + [SMALL_STATE(1133)] = 5195, + [SMALL_STATE(1134)] = 5256, + [SMALL_STATE(1135)] = 5319, + [SMALL_STATE(1136)] = 5382, + [SMALL_STATE(1137)] = 5445, + [SMALL_STATE(1138)] = 5508, + [SMALL_STATE(1139)] = 5571, + [SMALL_STATE(1140)] = 5632, + [SMALL_STATE(1141)] = 5697, + [SMALL_STATE(1142)] = 5758, + [SMALL_STATE(1143)] = 5819, + [SMALL_STATE(1144)] = 5880, + [SMALL_STATE(1145)] = 5941, + [SMALL_STATE(1146)] = 6002, + [SMALL_STATE(1147)] = 6063, + [SMALL_STATE(1148)] = 6124, + [SMALL_STATE(1149)] = 6185, + [SMALL_STATE(1150)] = 6246, + [SMALL_STATE(1151)] = 6307, + [SMALL_STATE(1152)] = 6368, + [SMALL_STATE(1153)] = 6429, + [SMALL_STATE(1154)] = 6490, + [SMALL_STATE(1155)] = 6551, + [SMALL_STATE(1156)] = 6612, + [SMALL_STATE(1157)] = 6673, + [SMALL_STATE(1158)] = 6734, + [SMALL_STATE(1159)] = 6795, + [SMALL_STATE(1160)] = 6858, + [SMALL_STATE(1161)] = 6921, + [SMALL_STATE(1162)] = 6984, + [SMALL_STATE(1163)] = 7045, + [SMALL_STATE(1164)] = 7106, + [SMALL_STATE(1165)] = 7167, + [SMALL_STATE(1166)] = 7228, + [SMALL_STATE(1167)] = 7289, + [SMALL_STATE(1168)] = 7350, + [SMALL_STATE(1169)] = 7411, + [SMALL_STATE(1170)] = 7472, + [SMALL_STATE(1171)] = 7533, + [SMALL_STATE(1172)] = 7594, + [SMALL_STATE(1173)] = 7655, + [SMALL_STATE(1174)] = 7716, + [SMALL_STATE(1175)] = 7777, + [SMALL_STATE(1176)] = 7838, + [SMALL_STATE(1177)] = 7899, + [SMALL_STATE(1178)] = 7960, + [SMALL_STATE(1179)] = 8021, + [SMALL_STATE(1180)] = 8082, + [SMALL_STATE(1181)] = 8143, + [SMALL_STATE(1182)] = 8204, + [SMALL_STATE(1183)] = 8265, + [SMALL_STATE(1184)] = 8326, + [SMALL_STATE(1185)] = 8387, + [SMALL_STATE(1186)] = 8448, + [SMALL_STATE(1187)] = 8509, + [SMALL_STATE(1188)] = 8570, + [SMALL_STATE(1189)] = 8631, + [SMALL_STATE(1190)] = 8692, + [SMALL_STATE(1191)] = 8753, + [SMALL_STATE(1192)] = 8814, + [SMALL_STATE(1193)] = 8875, + [SMALL_STATE(1194)] = 8936, + [SMALL_STATE(1195)] = 8997, + [SMALL_STATE(1196)] = 9058, + [SMALL_STATE(1197)] = 9119, + [SMALL_STATE(1198)] = 9180, + [SMALL_STATE(1199)] = 9241, + [SMALL_STATE(1200)] = 9302, + [SMALL_STATE(1201)] = 9365, + [SMALL_STATE(1202)] = 9428, + [SMALL_STATE(1203)] = 9489, + [SMALL_STATE(1204)] = 9550, + [SMALL_STATE(1205)] = 9611, + [SMALL_STATE(1206)] = 9672, + [SMALL_STATE(1207)] = 9733, + [SMALL_STATE(1208)] = 9794, + [SMALL_STATE(1209)] = 9855, + [SMALL_STATE(1210)] = 9916, + [SMALL_STATE(1211)] = 9977, + [SMALL_STATE(1212)] = 10038, + [SMALL_STATE(1213)] = 10099, + [SMALL_STATE(1214)] = 10160, + [SMALL_STATE(1215)] = 10221, + [SMALL_STATE(1216)] = 10282, + [SMALL_STATE(1217)] = 10343, + [SMALL_STATE(1218)] = 10404, + [SMALL_STATE(1219)] = 10465, + [SMALL_STATE(1220)] = 10526, + [SMALL_STATE(1221)] = 10587, + [SMALL_STATE(1222)] = 10648, + [SMALL_STATE(1223)] = 10709, + [SMALL_STATE(1224)] = 10770, + [SMALL_STATE(1225)] = 10831, + [SMALL_STATE(1226)] = 10892, + [SMALL_STATE(1227)] = 10953, + [SMALL_STATE(1228)] = 11014, + [SMALL_STATE(1229)] = 11075, + [SMALL_STATE(1230)] = 11136, + [SMALL_STATE(1231)] = 11197, + [SMALL_STATE(1232)] = 11258, + [SMALL_STATE(1233)] = 11319, + [SMALL_STATE(1234)] = 11380, + [SMALL_STATE(1235)] = 11441, + [SMALL_STATE(1236)] = 11502, + [SMALL_STATE(1237)] = 11563, + [SMALL_STATE(1238)] = 11624, + [SMALL_STATE(1239)] = 11685, + [SMALL_STATE(1240)] = 11746, + [SMALL_STATE(1241)] = 11807, + [SMALL_STATE(1242)] = 11868, + [SMALL_STATE(1243)] = 11929, + [SMALL_STATE(1244)] = 11990, + [SMALL_STATE(1245)] = 12051, + [SMALL_STATE(1246)] = 12112, + [SMALL_STATE(1247)] = 12173, + [SMALL_STATE(1248)] = 12234, + [SMALL_STATE(1249)] = 12295, + [SMALL_STATE(1250)] = 12356, + [SMALL_STATE(1251)] = 12417, + [SMALL_STATE(1252)] = 12478, + [SMALL_STATE(1253)] = 12539, + [SMALL_STATE(1254)] = 12600, + [SMALL_STATE(1255)] = 12661, + [SMALL_STATE(1256)] = 12722, + [SMALL_STATE(1257)] = 12783, + [SMALL_STATE(1258)] = 12844, + [SMALL_STATE(1259)] = 12905, + [SMALL_STATE(1260)] = 12966, + [SMALL_STATE(1261)] = 13027, + [SMALL_STATE(1262)] = 13088, + [SMALL_STATE(1263)] = 13149, + [SMALL_STATE(1264)] = 13210, + [SMALL_STATE(1265)] = 13271, + [SMALL_STATE(1266)] = 13332, + [SMALL_STATE(1267)] = 13393, + [SMALL_STATE(1268)] = 13454, + [SMALL_STATE(1269)] = 13515, + [SMALL_STATE(1270)] = 13576, + [SMALL_STATE(1271)] = 13637, + [SMALL_STATE(1272)] = 13698, + [SMALL_STATE(1273)] = 13759, + [SMALL_STATE(1274)] = 13820, + [SMALL_STATE(1275)] = 13881, + [SMALL_STATE(1276)] = 13942, + [SMALL_STATE(1277)] = 14003, + [SMALL_STATE(1278)] = 14064, + [SMALL_STATE(1279)] = 14125, + [SMALL_STATE(1280)] = 14186, + [SMALL_STATE(1281)] = 14247, + [SMALL_STATE(1282)] = 14308, + [SMALL_STATE(1283)] = 14369, + [SMALL_STATE(1284)] = 14430, + [SMALL_STATE(1285)] = 14491, + [SMALL_STATE(1286)] = 14552, + [SMALL_STATE(1287)] = 14613, + [SMALL_STATE(1288)] = 14674, + [SMALL_STATE(1289)] = 14735, + [SMALL_STATE(1290)] = 14796, + [SMALL_STATE(1291)] = 14857, + [SMALL_STATE(1292)] = 14918, + [SMALL_STATE(1293)] = 14979, + [SMALL_STATE(1294)] = 15040, + [SMALL_STATE(1295)] = 15101, + [SMALL_STATE(1296)] = 15162, + [SMALL_STATE(1297)] = 15223, + [SMALL_STATE(1298)] = 15284, + [SMALL_STATE(1299)] = 15345, + [SMALL_STATE(1300)] = 15406, + [SMALL_STATE(1301)] = 15467, + [SMALL_STATE(1302)] = 15528, + [SMALL_STATE(1303)] = 15589, + [SMALL_STATE(1304)] = 15650, + [SMALL_STATE(1305)] = 15711, + [SMALL_STATE(1306)] = 15772, + [SMALL_STATE(1307)] = 15833, + [SMALL_STATE(1308)] = 15894, + [SMALL_STATE(1309)] = 15955, + [SMALL_STATE(1310)] = 16016, + [SMALL_STATE(1311)] = 16077, + [SMALL_STATE(1312)] = 16138, + [SMALL_STATE(1313)] = 16199, + [SMALL_STATE(1314)] = 16260, + [SMALL_STATE(1315)] = 16321, + [SMALL_STATE(1316)] = 16382, + [SMALL_STATE(1317)] = 16443, + [SMALL_STATE(1318)] = 16504, + [SMALL_STATE(1319)] = 16565, + [SMALL_STATE(1320)] = 16626, + [SMALL_STATE(1321)] = 16687, + [SMALL_STATE(1322)] = 16748, + [SMALL_STATE(1323)] = 16809, + [SMALL_STATE(1324)] = 16870, + [SMALL_STATE(1325)] = 16931, + [SMALL_STATE(1326)] = 16992, + [SMALL_STATE(1327)] = 17053, + [SMALL_STATE(1328)] = 17114, + [SMALL_STATE(1329)] = 17175, + [SMALL_STATE(1330)] = 17236, + [SMALL_STATE(1331)] = 17297, + [SMALL_STATE(1332)] = 17358, + [SMALL_STATE(1333)] = 17419, + [SMALL_STATE(1334)] = 17480, + [SMALL_STATE(1335)] = 17541, + [SMALL_STATE(1336)] = 17602, + [SMALL_STATE(1337)] = 17663, + [SMALL_STATE(1338)] = 17724, + [SMALL_STATE(1339)] = 17785, + [SMALL_STATE(1340)] = 17846, + [SMALL_STATE(1341)] = 17907, + [SMALL_STATE(1342)] = 17968, + [SMALL_STATE(1343)] = 18029, + [SMALL_STATE(1344)] = 18090, + [SMALL_STATE(1345)] = 18151, + [SMALL_STATE(1346)] = 18212, + [SMALL_STATE(1347)] = 18273, + [SMALL_STATE(1348)] = 18334, + [SMALL_STATE(1349)] = 18395, + [SMALL_STATE(1350)] = 18456, + [SMALL_STATE(1351)] = 18517, + [SMALL_STATE(1352)] = 18578, + [SMALL_STATE(1353)] = 18639, + [SMALL_STATE(1354)] = 18700, + [SMALL_STATE(1355)] = 18761, + [SMALL_STATE(1356)] = 18822, + [SMALL_STATE(1357)] = 18883, + [SMALL_STATE(1358)] = 18944, + [SMALL_STATE(1359)] = 19005, + [SMALL_STATE(1360)] = 19066, + [SMALL_STATE(1361)] = 19127, + [SMALL_STATE(1362)] = 19188, + [SMALL_STATE(1363)] = 19249, + [SMALL_STATE(1364)] = 19310, + [SMALL_STATE(1365)] = 19371, + [SMALL_STATE(1366)] = 19432, + [SMALL_STATE(1367)] = 19493, + [SMALL_STATE(1368)] = 19554, + [SMALL_STATE(1369)] = 19615, + [SMALL_STATE(1370)] = 19676, + [SMALL_STATE(1371)] = 19737, + [SMALL_STATE(1372)] = 19798, + [SMALL_STATE(1373)] = 19859, + [SMALL_STATE(1374)] = 19920, + [SMALL_STATE(1375)] = 19981, + [SMALL_STATE(1376)] = 20042, + [SMALL_STATE(1377)] = 20103, + [SMALL_STATE(1378)] = 20164, + [SMALL_STATE(1379)] = 20225, + [SMALL_STATE(1380)] = 20286, + [SMALL_STATE(1381)] = 20347, + [SMALL_STATE(1382)] = 20408, + [SMALL_STATE(1383)] = 20469, + [SMALL_STATE(1384)] = 20530, + [SMALL_STATE(1385)] = 20591, + [SMALL_STATE(1386)] = 20652, + [SMALL_STATE(1387)] = 20713, + [SMALL_STATE(1388)] = 20774, + [SMALL_STATE(1389)] = 20835, + [SMALL_STATE(1390)] = 20896, + [SMALL_STATE(1391)] = 20957, + [SMALL_STATE(1392)] = 21018, + [SMALL_STATE(1393)] = 21079, + [SMALL_STATE(1394)] = 21140, + [SMALL_STATE(1395)] = 21201, + [SMALL_STATE(1396)] = 21262, + [SMALL_STATE(1397)] = 21323, + [SMALL_STATE(1398)] = 21384, + [SMALL_STATE(1399)] = 21445, + [SMALL_STATE(1400)] = 21506, + [SMALL_STATE(1401)] = 21567, + [SMALL_STATE(1402)] = 21628, + [SMALL_STATE(1403)] = 21689, + [SMALL_STATE(1404)] = 21750, + [SMALL_STATE(1405)] = 21811, + [SMALL_STATE(1406)] = 21872, + [SMALL_STATE(1407)] = 21933, + [SMALL_STATE(1408)] = 21994, + [SMALL_STATE(1409)] = 22055, + [SMALL_STATE(1410)] = 22116, + [SMALL_STATE(1411)] = 22177, + [SMALL_STATE(1412)] = 22238, + [SMALL_STATE(1413)] = 22299, + [SMALL_STATE(1414)] = 22360, + [SMALL_STATE(1415)] = 22421, + [SMALL_STATE(1416)] = 22482, + [SMALL_STATE(1417)] = 22543, + [SMALL_STATE(1418)] = 22604, + [SMALL_STATE(1419)] = 22665, + [SMALL_STATE(1420)] = 22730, + [SMALL_STATE(1421)] = 22805, + [SMALL_STATE(1422)] = 22870, + [SMALL_STATE(1423)] = 22933, + [SMALL_STATE(1424)] = 22994, + [SMALL_STATE(1425)] = 23054, + [SMALL_STATE(1426)] = 23122, + [SMALL_STATE(1427)] = 23182, + [SMALL_STATE(1428)] = 23242, + [SMALL_STATE(1429)] = 23302, + [SMALL_STATE(1430)] = 23362, + [SMALL_STATE(1431)] = 23422, + [SMALL_STATE(1432)] = 23482, + [SMALL_STATE(1433)] = 23542, + [SMALL_STATE(1434)] = 23602, + [SMALL_STATE(1435)] = 23662, + [SMALL_STATE(1436)] = 23722, + [SMALL_STATE(1437)] = 23782, + [SMALL_STATE(1438)] = 23842, + [SMALL_STATE(1439)] = 23902, + [SMALL_STATE(1440)] = 23962, + [SMALL_STATE(1441)] = 24022, + [SMALL_STATE(1442)] = 24084, + [SMALL_STATE(1443)] = 24144, + [SMALL_STATE(1444)] = 24204, + [SMALL_STATE(1445)] = 24264, + [SMALL_STATE(1446)] = 24324, + [SMALL_STATE(1447)] = 24384, + [SMALL_STATE(1448)] = 24444, + [SMALL_STATE(1449)] = 24504, + [SMALL_STATE(1450)] = 24564, + [SMALL_STATE(1451)] = 24624, + [SMALL_STATE(1452)] = 24684, + [SMALL_STATE(1453)] = 24744, + [SMALL_STATE(1454)] = 24804, + [SMALL_STATE(1455)] = 24864, + [SMALL_STATE(1456)] = 24924, + [SMALL_STATE(1457)] = 24984, + [SMALL_STATE(1458)] = 25044, + [SMALL_STATE(1459)] = 25104, + [SMALL_STATE(1460)] = 25164, + [SMALL_STATE(1461)] = 25230, + [SMALL_STATE(1462)] = 25296, + [SMALL_STATE(1463)] = 25356, + [SMALL_STATE(1464)] = 25416, + [SMALL_STATE(1465)] = 25476, + [SMALL_STATE(1466)] = 25542, + [SMALL_STATE(1467)] = 25602, + [SMALL_STATE(1468)] = 25662, + [SMALL_STATE(1469)] = 25722, + [SMALL_STATE(1470)] = 25782, + [SMALL_STATE(1471)] = 25842, + [SMALL_STATE(1472)] = 25902, + [SMALL_STATE(1473)] = 25962, + [SMALL_STATE(1474)] = 26022, + [SMALL_STATE(1475)] = 26082, + [SMALL_STATE(1476)] = 26142, + [SMALL_STATE(1477)] = 26202, + [SMALL_STATE(1478)] = 26262, + [SMALL_STATE(1479)] = 26322, + [SMALL_STATE(1480)] = 26382, + [SMALL_STATE(1481)] = 26442, + [SMALL_STATE(1482)] = 26502, + [SMALL_STATE(1483)] = 26562, + [SMALL_STATE(1484)] = 26622, + [SMALL_STATE(1485)] = 26682, + [SMALL_STATE(1486)] = 26742, + [SMALL_STATE(1487)] = 26802, + [SMALL_STATE(1488)] = 26862, + [SMALL_STATE(1489)] = 26922, + [SMALL_STATE(1490)] = 26982, + [SMALL_STATE(1491)] = 27042, + [SMALL_STATE(1492)] = 27102, + [SMALL_STATE(1493)] = 27162, + [SMALL_STATE(1494)] = 27222, + [SMALL_STATE(1495)] = 27282, + [SMALL_STATE(1496)] = 27342, + [SMALL_STATE(1497)] = 27402, + [SMALL_STATE(1498)] = 27462, + [SMALL_STATE(1499)] = 27522, + [SMALL_STATE(1500)] = 27582, + [SMALL_STATE(1501)] = 27678, + [SMALL_STATE(1502)] = 27738, + [SMALL_STATE(1503)] = 27798, + [SMALL_STATE(1504)] = 27858, + [SMALL_STATE(1505)] = 27922, + [SMALL_STATE(1506)] = 27984, + [SMALL_STATE(1507)] = 28044, + [SMALL_STATE(1508)] = 28104, + [SMALL_STATE(1509)] = 28164, + [SMALL_STATE(1510)] = 28224, + [SMALL_STATE(1511)] = 28298, + [SMALL_STATE(1512)] = 28358, + [SMALL_STATE(1513)] = 28418, + [SMALL_STATE(1514)] = 28478, + [SMALL_STATE(1515)] = 28538, + [SMALL_STATE(1516)] = 28598, + [SMALL_STATE(1517)] = 28658, + [SMALL_STATE(1518)] = 28718, + [SMALL_STATE(1519)] = 28778, + [SMALL_STATE(1520)] = 28838, + [SMALL_STATE(1521)] = 28898, + [SMALL_STATE(1522)] = 28958, + [SMALL_STATE(1523)] = 29018, + [SMALL_STATE(1524)] = 29078, + [SMALL_STATE(1525)] = 29138, + [SMALL_STATE(1526)] = 29198, + [SMALL_STATE(1527)] = 29258, + [SMALL_STATE(1528)] = 29318, + [SMALL_STATE(1529)] = 29378, + [SMALL_STATE(1530)] = 29438, + [SMALL_STATE(1531)] = 29498, + [SMALL_STATE(1532)] = 29558, + [SMALL_STATE(1533)] = 29618, + [SMALL_STATE(1534)] = 29678, + [SMALL_STATE(1535)] = 29738, + [SMALL_STATE(1536)] = 29802, + [SMALL_STATE(1537)] = 29862, + [SMALL_STATE(1538)] = 29922, + [SMALL_STATE(1539)] = 29982, + [SMALL_STATE(1540)] = 30042, + [SMALL_STATE(1541)] = 30102, + [SMALL_STATE(1542)] = 30168, + [SMALL_STATE(1543)] = 30228, + [SMALL_STATE(1544)] = 30288, + [SMALL_STATE(1545)] = 30387, + [SMALL_STATE(1546)] = 30486, + [SMALL_STATE(1547)] = 30585, + [SMALL_STATE(1548)] = 30646, + [SMALL_STATE(1549)] = 30707, + [SMALL_STATE(1550)] = 30806, + [SMALL_STATE(1551)] = 30875, + [SMALL_STATE(1552)] = 30946, + [SMALL_STATE(1553)] = 31032, + [SMALL_STATE(1554)] = 31124, + [SMALL_STATE(1555)] = 31182, + [SMALL_STATE(1556)] = 31268, + [SMALL_STATE(1557)] = 31360, + [SMALL_STATE(1558)] = 31446, + [SMALL_STATE(1559)] = 31532, + [SMALL_STATE(1560)] = 31618, + [SMALL_STATE(1561)] = 31708, + [SMALL_STATE(1562)] = 31766, + [SMALL_STATE(1563)] = 31824, + [SMALL_STATE(1564)] = 31892, + [SMALL_STATE(1565)] = 31966, + [SMALL_STATE(1566)] = 32038, + [SMALL_STATE(1567)] = 32114, + [SMALL_STATE(1568)] = 32174, + [SMALL_STATE(1569)] = 32258, + [SMALL_STATE(1570)] = 32328, + [SMALL_STATE(1571)] = 32418, + [SMALL_STATE(1572)] = 32508, + [SMALL_STATE(1573)] = 32586, + [SMALL_STATE(1574)] = 32676, + [SMALL_STATE(1575)] = 32762, + [SMALL_STATE(1576)] = 32828, + [SMALL_STATE(1577)] = 32898, + [SMALL_STATE(1578)] = 32984, + [SMALL_STATE(1579)] = 33054, + [SMALL_STATE(1580)] = 33124, + [SMALL_STATE(1581)] = 33214, + [SMALL_STATE(1582)] = 33306, + [SMALL_STATE(1583)] = 33366, + [SMALL_STATE(1584)] = 33456, + [SMALL_STATE(1585)] = 33542, + [SMALL_STATE(1586)] = 33624, + [SMALL_STATE(1587)] = 33687, + [SMALL_STATE(1588)] = 33750, + [SMALL_STATE(1589)] = 33817, + [SMALL_STATE(1590)] = 33882, + [SMALL_STATE(1591)] = 33942, + [SMALL_STATE(1592)] = 34006, + [SMALL_STATE(1593)] = 34064, + [SMALL_STATE(1594)] = 34122, + [SMALL_STATE(1595)] = 34178, + [SMALL_STATE(1596)] = 34242, + [SMALL_STATE(1597)] = 34306, + [SMALL_STATE(1598)] = 34364, + [SMALL_STATE(1599)] = 34420, + [SMALL_STATE(1600)] = 34478, + [SMALL_STATE(1601)] = 34538, + [SMALL_STATE(1602)] = 34598, + [SMALL_STATE(1603)] = 34658, + [SMALL_STATE(1604)] = 34718, + [SMALL_STATE(1605)] = 34774, + [SMALL_STATE(1606)] = 34834, + [SMALL_STATE(1607)] = 34898, + [SMALL_STATE(1608)] = 34958, + [SMALL_STATE(1609)] = 35014, + [SMALL_STATE(1610)] = 35071, + [SMALL_STATE(1611)] = 35130, + [SMALL_STATE(1612)] = 35185, + [SMALL_STATE(1613)] = 35244, + [SMALL_STATE(1614)] = 35339, + [SMALL_STATE(1615)] = 35394, + [SMALL_STATE(1616)] = 35449, + [SMALL_STATE(1617)] = 35504, + [SMALL_STATE(1618)] = 35563, + [SMALL_STATE(1619)] = 35658, + [SMALL_STATE(1620)] = 35747, + [SMALL_STATE(1621)] = 35806, + [SMALL_STATE(1622)] = 35901, + [SMALL_STATE(1623)] = 35956, + [SMALL_STATE(1624)] = 36051, + [SMALL_STATE(1625)] = 36106, + [SMALL_STATE(1626)] = 36163, + [SMALL_STATE(1627)] = 36258, + [SMALL_STATE(1628)] = 36353, + [SMALL_STATE(1629)] = 36448, + [SMALL_STATE(1630)] = 36505, + [SMALL_STATE(1631)] = 36560, + [SMALL_STATE(1632)] = 36655, + [SMALL_STATE(1633)] = 36750, + [SMALL_STATE(1634)] = 36845, + [SMALL_STATE(1635)] = 36940, + [SMALL_STATE(1636)] = 36997, + [SMALL_STATE(1637)] = 37054, + [SMALL_STATE(1638)] = 37111, + [SMALL_STATE(1639)] = 37200, + [SMALL_STATE(1640)] = 37289, + [SMALL_STATE(1641)] = 37346, + [SMALL_STATE(1642)] = 37401, + [SMALL_STATE(1643)] = 37490, + [SMALL_STATE(1644)] = 37585, + [SMALL_STATE(1645)] = 37673, + [SMALL_STATE(1646)] = 37727, + [SMALL_STATE(1647)] = 37783, + [SMALL_STATE(1648)] = 37837, + [SMALL_STATE(1649)] = 37901, + [SMALL_STATE(1650)] = 37981, + [SMALL_STATE(1651)] = 38037, + [SMALL_STATE(1652)] = 38107, + [SMALL_STATE(1653)] = 38175, + [SMALL_STATE(1654)] = 38247, + [SMALL_STATE(1655)] = 38303, + [SMALL_STATE(1656)] = 38381, + [SMALL_STATE(1657)] = 38435, + [SMALL_STATE(1658)] = 38491, + [SMALL_STATE(1659)] = 38545, + [SMALL_STATE(1660)] = 38599, + [SMALL_STATE(1661)] = 38679, + [SMALL_STATE(1662)] = 38733, + [SMALL_STATE(1663)] = 38787, + [SMALL_STATE(1664)] = 38843, + [SMALL_STATE(1665)] = 38899, + [SMALL_STATE(1666)] = 38991, + [SMALL_STATE(1667)] = 39077, + [SMALL_STATE(1668)] = 39133, + [SMALL_STATE(1669)] = 39191, + [SMALL_STATE(1670)] = 39257, + [SMALL_STATE(1671)] = 39343, + [SMALL_STATE(1672)] = 39425, + [SMALL_STATE(1673)] = 39481, + [SMALL_STATE(1674)] = 39567, + [SMALL_STATE(1675)] = 39653, + [SMALL_STATE(1676)] = 39739, + [SMALL_STATE(1677)] = 39813, + [SMALL_STATE(1678)] = 39901, + [SMALL_STATE(1679)] = 39993, + [SMALL_STATE(1680)] = 40085, + [SMALL_STATE(1681)] = 40139, + [SMALL_STATE(1682)] = 40231, + [SMALL_STATE(1683)] = 40285, + [SMALL_STATE(1684)] = 40339, + [SMALL_STATE(1685)] = 40393, + [SMALL_STATE(1686)] = 40475, + [SMALL_STATE(1687)] = 40567, + [SMALL_STATE(1688)] = 40623, + [SMALL_STATE(1689)] = 40679, + [SMALL_STATE(1690)] = 40735, + [SMALL_STATE(1691)] = 40789, + [SMALL_STATE(1692)] = 40843, + [SMALL_STATE(1693)] = 40897, + [SMALL_STATE(1694)] = 40989, + [SMALL_STATE(1695)] = 41043, + [SMALL_STATE(1696)] = 41099, + [SMALL_STATE(1697)] = 41155, + [SMALL_STATE(1698)] = 41211, + [SMALL_STATE(1699)] = 41299, + [SMALL_STATE(1700)] = 41355, + [SMALL_STATE(1701)] = 41443, + [SMALL_STATE(1702)] = 41499, + [SMALL_STATE(1703)] = 41553, + [SMALL_STATE(1704)] = 41641, + [SMALL_STATE(1705)] = 41727, + [SMALL_STATE(1706)] = 41780, + [SMALL_STATE(1707)] = 41833, + [SMALL_STATE(1708)] = 41886, + [SMALL_STATE(1709)] = 41939, + [SMALL_STATE(1710)] = 42024, + [SMALL_STATE(1711)] = 42111, + [SMALL_STATE(1712)] = 42164, + [SMALL_STATE(1713)] = 42217, + [SMALL_STATE(1714)] = 42270, + [SMALL_STATE(1715)] = 42323, + [SMALL_STATE(1716)] = 42376, + [SMALL_STATE(1717)] = 42463, + [SMALL_STATE(1718)] = 42552, + [SMALL_STATE(1719)] = 42605, + [SMALL_STATE(1720)] = 42658, + [SMALL_STATE(1721)] = 42711, + [SMALL_STATE(1722)] = 42764, + [SMALL_STATE(1723)] = 42817, + [SMALL_STATE(1724)] = 42902, + [SMALL_STATE(1725)] = 42989, + [SMALL_STATE(1726)] = 43042, + [SMALL_STATE(1727)] = 43095, + [SMALL_STATE(1728)] = 43148, + [SMALL_STATE(1729)] = 43201, + [SMALL_STATE(1730)] = 43264, + [SMALL_STATE(1731)] = 43333, + [SMALL_STATE(1732)] = 43400, + [SMALL_STATE(1733)] = 43471, + [SMALL_STATE(1734)] = 43548, + [SMALL_STATE(1735)] = 43627, + [SMALL_STATE(1736)] = 43692, + [SMALL_STATE(1737)] = 43777, + [SMALL_STATE(1738)] = 43862, + [SMALL_STATE(1739)] = 43935, + [SMALL_STATE(1740)] = 44016, + [SMALL_STATE(1741)] = 44069, + [SMALL_STATE(1742)] = 44128, + [SMALL_STATE(1743)] = 44181, + [SMALL_STATE(1744)] = 44234, + [SMALL_STATE(1745)] = 44287, + [SMALL_STATE(1746)] = 44340, + [SMALL_STATE(1747)] = 44393, + [SMALL_STATE(1748)] = 44446, + [SMALL_STATE(1749)] = 44535, + [SMALL_STATE(1750)] = 44622, + [SMALL_STATE(1751)] = 44711, + [SMALL_STATE(1752)] = 44764, + [SMALL_STATE(1753)] = 44853, + [SMALL_STATE(1754)] = 44906, + [SMALL_STATE(1755)] = 44959, + [SMALL_STATE(1756)] = 45048, + [SMALL_STATE(1757)] = 45101, + [SMALL_STATE(1758)] = 45154, + [SMALL_STATE(1759)] = 45207, + [SMALL_STATE(1760)] = 45260, + [SMALL_STATE(1761)] = 45313, + [SMALL_STATE(1762)] = 45366, + [SMALL_STATE(1763)] = 45419, + [SMALL_STATE(1764)] = 45472, + [SMALL_STATE(1765)] = 45525, + [SMALL_STATE(1766)] = 45578, + [SMALL_STATE(1767)] = 45631, + [SMALL_STATE(1768)] = 45684, + [SMALL_STATE(1769)] = 45737, + [SMALL_STATE(1770)] = 45822, + [SMALL_STATE(1771)] = 45899, + [SMALL_STATE(1772)] = 45952, + [SMALL_STATE(1773)] = 46005, + [SMALL_STATE(1774)] = 46058, + [SMALL_STATE(1775)] = 46111, + [SMALL_STATE(1776)] = 46200, + [SMALL_STATE(1777)] = 46253, + [SMALL_STATE(1778)] = 46306, + [SMALL_STATE(1779)] = 46359, + [SMALL_STATE(1780)] = 46412, + [SMALL_STATE(1781)] = 46465, + [SMALL_STATE(1782)] = 46518, + [SMALL_STATE(1783)] = 46571, + [SMALL_STATE(1784)] = 46658, + [SMALL_STATE(1785)] = 46747, + [SMALL_STATE(1786)] = 46800, + [SMALL_STATE(1787)] = 46853, + [SMALL_STATE(1788)] = 46938, + [SMALL_STATE(1789)] = 46991, + [SMALL_STATE(1790)] = 47044, + [SMALL_STATE(1791)] = 47131, + [SMALL_STATE(1792)] = 47184, + [SMALL_STATE(1793)] = 47245, + [SMALL_STATE(1794)] = 47332, + [SMALL_STATE(1795)] = 47395, + [SMALL_STATE(1796)] = 47464, + [SMALL_STATE(1797)] = 47531, + [SMALL_STATE(1798)] = 47602, + [SMALL_STATE(1799)] = 47679, + [SMALL_STATE(1800)] = 47758, + [SMALL_STATE(1801)] = 47823, + [SMALL_STATE(1802)] = 47908, + [SMALL_STATE(1803)] = 47993, + [SMALL_STATE(1804)] = 48066, + [SMALL_STATE(1805)] = 48147, + [SMALL_STATE(1806)] = 48200, + [SMALL_STATE(1807)] = 48253, + [SMALL_STATE(1808)] = 48306, + [SMALL_STATE(1809)] = 48359, + [SMALL_STATE(1810)] = 48446, + [SMALL_STATE(1811)] = 48499, + [SMALL_STATE(1812)] = 48552, + [SMALL_STATE(1813)] = 48605, + [SMALL_STATE(1814)] = 48658, + [SMALL_STATE(1815)] = 48711, + [SMALL_STATE(1816)] = 48764, + [SMALL_STATE(1817)] = 48817, + [SMALL_STATE(1818)] = 48870, + [SMALL_STATE(1819)] = 48923, + [SMALL_STATE(1820)] = 48976, + [SMALL_STATE(1821)] = 49029, + [SMALL_STATE(1822)] = 49116, + [SMALL_STATE(1823)] = 49169, + [SMALL_STATE(1824)] = 49256, + [SMALL_STATE(1825)] = 49309, + [SMALL_STATE(1826)] = 49362, + [SMALL_STATE(1827)] = 49449, + [SMALL_STATE(1828)] = 49502, + [SMALL_STATE(1829)] = 49555, + [SMALL_STATE(1830)] = 49642, + [SMALL_STATE(1831)] = 49729, + [SMALL_STATE(1832)] = 49782, + [SMALL_STATE(1833)] = 49835, + [SMALL_STATE(1834)] = 49888, + [SMALL_STATE(1835)] = 49941, + [SMALL_STATE(1836)] = 50000, + [SMALL_STATE(1837)] = 50059, + [SMALL_STATE(1838)] = 50146, + [SMALL_STATE(1839)] = 50233, + [SMALL_STATE(1840)] = 50286, + [SMALL_STATE(1841)] = 50339, + [SMALL_STATE(1842)] = 50392, + [SMALL_STATE(1843)] = 50481, + [SMALL_STATE(1844)] = 50570, + [SMALL_STATE(1845)] = 50623, + [SMALL_STATE(1846)] = 50712, + [SMALL_STATE(1847)] = 50765, + [SMALL_STATE(1848)] = 50854, + [SMALL_STATE(1849)] = 50935, + [SMALL_STATE(1850)] = 51022, + [SMALL_STATE(1851)] = 51075, + [SMALL_STATE(1852)] = 51164, + [SMALL_STATE(1853)] = 51217, + [SMALL_STATE(1854)] = 51306, + [SMALL_STATE(1855)] = 51383, + [SMALL_STATE(1856)] = 51436, + [SMALL_STATE(1857)] = 51525, + [SMALL_STATE(1858)] = 51578, + [SMALL_STATE(1859)] = 51667, + [SMALL_STATE(1860)] = 51754, + [SMALL_STATE(1861)] = 51843, + [SMALL_STATE(1862)] = 51932, + [SMALL_STATE(1863)] = 52021, + [SMALL_STATE(1864)] = 52110, + [SMALL_STATE(1865)] = 52199, + [SMALL_STATE(1866)] = 52288, + [SMALL_STATE(1867)] = 52377, + [SMALL_STATE(1868)] = 52466, + [SMALL_STATE(1869)] = 52519, + [SMALL_STATE(1870)] = 52572, + [SMALL_STATE(1871)] = 52625, + [SMALL_STATE(1872)] = 52678, + [SMALL_STATE(1873)] = 52759, + [SMALL_STATE(1874)] = 52844, + [SMALL_STATE(1875)] = 52933, + [SMALL_STATE(1876)] = 53018, + [SMALL_STATE(1877)] = 53103, + [SMALL_STATE(1878)] = 53192, + [SMALL_STATE(1879)] = 53245, + [SMALL_STATE(1880)] = 53332, + [SMALL_STATE(1881)] = 53421, + [SMALL_STATE(1882)] = 53510, + [SMALL_STATE(1883)] = 53563, + [SMALL_STATE(1884)] = 53616, + [SMALL_STATE(1885)] = 53701, + [SMALL_STATE(1886)] = 53790, + [SMALL_STATE(1887)] = 53849, + [SMALL_STATE(1888)] = 53938, + [SMALL_STATE(1889)] = 54027, + [SMALL_STATE(1890)] = 54116, + [SMALL_STATE(1891)] = 54205, + [SMALL_STATE(1892)] = 54294, + [SMALL_STATE(1893)] = 54347, + [SMALL_STATE(1894)] = 54436, + [SMALL_STATE(1895)] = 54525, + [SMALL_STATE(1896)] = 54614, + [SMALL_STATE(1897)] = 54703, + [SMALL_STATE(1898)] = 54756, + [SMALL_STATE(1899)] = 54845, + [SMALL_STATE(1900)] = 54934, + [SMALL_STATE(1901)] = 55023, + [SMALL_STATE(1902)] = 55112, + [SMALL_STATE(1903)] = 55201, + [SMALL_STATE(1904)] = 55290, + [SMALL_STATE(1905)] = 55379, + [SMALL_STATE(1906)] = 55468, + [SMALL_STATE(1907)] = 55557, + [SMALL_STATE(1908)] = 55646, + [SMALL_STATE(1909)] = 55735, + [SMALL_STATE(1910)] = 55824, + [SMALL_STATE(1911)] = 55877, + [SMALL_STATE(1912)] = 55930, + [SMALL_STATE(1913)] = 55983, + [SMALL_STATE(1914)] = 56036, + [SMALL_STATE(1915)] = 56089, + [SMALL_STATE(1916)] = 56174, + [SMALL_STATE(1917)] = 56259, + [SMALL_STATE(1918)] = 56346, + [SMALL_STATE(1919)] = 56435, + [SMALL_STATE(1920)] = 56488, + [SMALL_STATE(1921)] = 56541, + [SMALL_STATE(1922)] = 56627, + [SMALL_STATE(1923)] = 56713, + [SMALL_STATE(1924)] = 56797, + [SMALL_STATE(1925)] = 56883, + [SMALL_STATE(1926)] = 56969, + [SMALL_STATE(1927)] = 57055, + [SMALL_STATE(1928)] = 57141, + [SMALL_STATE(1929)] = 57227, + [SMALL_STATE(1930)] = 57301, + [SMALL_STATE(1931)] = 57387, + [SMALL_STATE(1932)] = 57473, + [SMALL_STATE(1933)] = 57559, + [SMALL_STATE(1934)] = 57645, + [SMALL_STATE(1935)] = 57731, + [SMALL_STATE(1936)] = 57805, + [SMALL_STATE(1937)] = 57889, + [SMALL_STATE(1938)] = 57975, + [SMALL_STATE(1939)] = 58061, + [SMALL_STATE(1940)] = 58147, + [SMALL_STATE(1941)] = 58233, + [SMALL_STATE(1942)] = 58319, + [SMALL_STATE(1943)] = 58405, + [SMALL_STATE(1944)] = 58479, + [SMALL_STATE(1945)] = 58565, + [SMALL_STATE(1946)] = 58651, + [SMALL_STATE(1947)] = 58725, + [SMALL_STATE(1948)] = 58811, + [SMALL_STATE(1949)] = 58897, + [SMALL_STATE(1950)] = 58983, + [SMALL_STATE(1951)] = 59069, + [SMALL_STATE(1952)] = 59155, + [SMALL_STATE(1953)] = 59241, + [SMALL_STATE(1954)] = 59315, + [SMALL_STATE(1955)] = 59401, + [SMALL_STATE(1956)] = 59487, + [SMALL_STATE(1957)] = 59573, + [SMALL_STATE(1958)] = 59659, + [SMALL_STATE(1959)] = 59734, + [SMALL_STATE(1960)] = 59809, + [SMALL_STATE(1961)] = 59884, + [SMALL_STATE(1962)] = 59959, + [SMALL_STATE(1963)] = 60034, + [SMALL_STATE(1964)] = 60109, + [SMALL_STATE(1965)] = 60184, + [SMALL_STATE(1966)] = 60259, + [SMALL_STATE(1967)] = 60306, + [SMALL_STATE(1968)] = 60353, + [SMALL_STATE(1969)] = 60400, + [SMALL_STATE(1970)] = 60462, + [SMALL_STATE(1971)] = 60524, + [SMALL_STATE(1972)] = 60586, + [SMALL_STATE(1973)] = 60648, + [SMALL_STATE(1974)] = 60710, + [SMALL_STATE(1975)] = 60772, + [SMALL_STATE(1976)] = 60834, + [SMALL_STATE(1977)] = 60896, + [SMALL_STATE(1978)] = 60958, + [SMALL_STATE(1979)] = 61017, + [SMALL_STATE(1980)] = 61076, + [SMALL_STATE(1981)] = 61112, + [SMALL_STATE(1982)] = 61148, + [SMALL_STATE(1983)] = 61185, + [SMALL_STATE(1984)] = 61222, + [SMALL_STATE(1985)] = 61259, + [SMALL_STATE(1986)] = 61312, + [SMALL_STATE(1987)] = 61349, + [SMALL_STATE(1988)] = 61393, + [SMALL_STATE(1989)] = 61427, + [SMALL_STATE(1990)] = 61463, + [SMALL_STATE(1991)] = 61499, + [SMALL_STATE(1992)] = 61533, + [SMALL_STATE(1993)] = 61569, + [SMALL_STATE(1994)] = 61603, + [SMALL_STATE(1995)] = 61647, + [SMALL_STATE(1996)] = 61683, + [SMALL_STATE(1997)] = 61717, + [SMALL_STATE(1998)] = 61761, + [SMALL_STATE(1999)] = 61792, + [SMALL_STATE(2000)] = 61825, + [SMALL_STATE(2001)] = 61858, + [SMALL_STATE(2002)] = 61891, + [SMALL_STATE(2003)] = 61924, + [SMALL_STATE(2004)] = 61965, + [SMALL_STATE(2005)] = 62016, + [SMALL_STATE(2006)] = 62076, + [SMALL_STATE(2007)] = 62136, + [SMALL_STATE(2008)] = 62168, + [SMALL_STATE(2009)] = 62212, + [SMALL_STATE(2010)] = 62250, + [SMALL_STATE(2011)] = 62288, + [SMALL_STATE(2012)] = 62326, + [SMALL_STATE(2013)] = 62364, + [SMALL_STATE(2014)] = 62396, + [SMALL_STATE(2015)] = 62442, + [SMALL_STATE(2016)] = 62474, + [SMALL_STATE(2017)] = 62505, + [SMALL_STATE(2018)] = 62534, + [SMALL_STATE(2019)] = 62567, + [SMALL_STATE(2020)] = 62608, + [SMALL_STATE(2021)] = 62641, + [SMALL_STATE(2022)] = 62674, + [SMALL_STATE(2023)] = 62703, + [SMALL_STATE(2024)] = 62756, + [SMALL_STATE(2025)] = 62789, + [SMALL_STATE(2026)] = 62818, + [SMALL_STATE(2027)] = 62847, + [SMALL_STATE(2028)] = 62876, + [SMALL_STATE(2029)] = 62905, + [SMALL_STATE(2030)] = 62938, + [SMALL_STATE(2031)] = 62991, + [SMALL_STATE(2032)] = 63020, + [SMALL_STATE(2033)] = 63049, + [SMALL_STATE(2034)] = 63082, + [SMALL_STATE(2035)] = 63137, + [SMALL_STATE(2036)] = 63180, + [SMALL_STATE(2037)] = 63209, + [SMALL_STATE(2038)] = 63237, + [SMALL_STATE(2039)] = 63265, + [SMALL_STATE(2040)] = 63293, + [SMALL_STATE(2041)] = 63321, + [SMALL_STATE(2042)] = 63349, + [SMALL_STATE(2043)] = 63377, + [SMALL_STATE(2044)] = 63407, + [SMALL_STATE(2045)] = 63435, + [SMALL_STATE(2046)] = 63463, + [SMALL_STATE(2047)] = 63491, + [SMALL_STATE(2048)] = 63519, + [SMALL_STATE(2049)] = 63549, + [SMALL_STATE(2050)] = 63577, + [SMALL_STATE(2051)] = 63605, + [SMALL_STATE(2052)] = 63633, + [SMALL_STATE(2053)] = 63661, + [SMALL_STATE(2054)] = 63689, + [SMALL_STATE(2055)] = 63717, + [SMALL_STATE(2056)] = 63745, + [SMALL_STATE(2057)] = 63773, + [SMALL_STATE(2058)] = 63801, + [SMALL_STATE(2059)] = 63829, + [SMALL_STATE(2060)] = 63857, + [SMALL_STATE(2061)] = 63885, + [SMALL_STATE(2062)] = 63913, + [SMALL_STATE(2063)] = 63941, + [SMALL_STATE(2064)] = 63969, + [SMALL_STATE(2065)] = 63997, + [SMALL_STATE(2066)] = 64025, + [SMALL_STATE(2067)] = 64053, + [SMALL_STATE(2068)] = 64081, + [SMALL_STATE(2069)] = 64109, + [SMALL_STATE(2070)] = 64137, + [SMALL_STATE(2071)] = 64165, + [SMALL_STATE(2072)] = 64193, + [SMALL_STATE(2073)] = 64221, + [SMALL_STATE(2074)] = 64265, + [SMALL_STATE(2075)] = 64293, + [SMALL_STATE(2076)] = 64322, + [SMALL_STATE(2077)] = 64351, + [SMALL_STATE(2078)] = 64380, + [SMALL_STATE(2079)] = 64409, + [SMALL_STATE(2080)] = 64444, + [SMALL_STATE(2081)] = 64475, + [SMALL_STATE(2082)] = 64504, + [SMALL_STATE(2083)] = 64533, + [SMALL_STATE(2084)] = 64562, + [SMALL_STATE(2085)] = 64591, + [SMALL_STATE(2086)] = 64620, + [SMALL_STATE(2087)] = 64649, + [SMALL_STATE(2088)] = 64681, + [SMALL_STATE(2089)] = 64713, + [SMALL_STATE(2090)] = 64745, + [SMALL_STATE(2091)] = 64777, + [SMALL_STATE(2092)] = 64809, + [SMALL_STATE(2093)] = 64841, + [SMALL_STATE(2094)] = 64873, + [SMALL_STATE(2095)] = 64901, + [SMALL_STATE(2096)] = 64947, + [SMALL_STATE(2097)] = 64979, + [SMALL_STATE(2098)] = 65009, + [SMALL_STATE(2099)] = 65041, + [SMALL_STATE(2100)] = 65085, + [SMALL_STATE(2101)] = 65117, + [SMALL_STATE(2102)] = 65149, + [SMALL_STATE(2103)] = 65181, + [SMALL_STATE(2104)] = 65218, + [SMALL_STATE(2105)] = 65261, + [SMALL_STATE(2106)] = 65304, + [SMALL_STATE(2107)] = 65347, + [SMALL_STATE(2108)] = 65390, + [SMALL_STATE(2109)] = 65433, + [SMALL_STATE(2110)] = 65462, + [SMALL_STATE(2111)] = 65491, + [SMALL_STATE(2112)] = 65534, + [SMALL_STATE(2113)] = 65572, + [SMALL_STATE(2114)] = 65602, + [SMALL_STATE(2115)] = 65630, + [SMALL_STATE(2116)] = 65668, + [SMALL_STATE(2117)] = 65706, + [SMALL_STATE(2118)] = 65744, + [SMALL_STATE(2119)] = 65782, + [SMALL_STATE(2120)] = 65816, + [SMALL_STATE(2121)] = 65840, + [SMALL_STATE(2122)] = 65878, + [SMALL_STATE(2123)] = 65906, + [SMALL_STATE(2124)] = 65934, + [SMALL_STATE(2125)] = 65974, + [SMALL_STATE(2126)] = 66014, + [SMALL_STATE(2127)] = 66038, + [SMALL_STATE(2128)] = 66066, + [SMALL_STATE(2129)] = 66094, + [SMALL_STATE(2130)] = 66122, + [SMALL_STATE(2131)] = 66150, + [SMALL_STATE(2132)] = 66190, + [SMALL_STATE(2133)] = 66230, + [SMALL_STATE(2134)] = 66270, + [SMALL_STATE(2135)] = 66308, + [SMALL_STATE(2136)] = 66336, + [SMALL_STATE(2137)] = 66376, + [SMALL_STATE(2138)] = 66404, + [SMALL_STATE(2139)] = 66442, + [SMALL_STATE(2140)] = 66480, + [SMALL_STATE(2141)] = 66510, + [SMALL_STATE(2142)] = 66550, + [SMALL_STATE(2143)] = 66578, + [SMALL_STATE(2144)] = 66608, + [SMALL_STATE(2145)] = 66648, + [SMALL_STATE(2146)] = 66672, + [SMALL_STATE(2147)] = 66702, + [SMALL_STATE(2148)] = 66742, + [SMALL_STATE(2149)] = 66766, + [SMALL_STATE(2150)] = 66804, + [SMALL_STATE(2151)] = 66842, + [SMALL_STATE(2152)] = 66870, + [SMALL_STATE(2153)] = 66908, + [SMALL_STATE(2154)] = 66936, + [SMALL_STATE(2155)] = 66960, + [SMALL_STATE(2156)] = 66988, + [SMALL_STATE(2157)] = 67016, + [SMALL_STATE(2158)] = 67044, + [SMALL_STATE(2159)] = 67084, + [SMALL_STATE(2160)] = 67112, + [SMALL_STATE(2161)] = 67146, + [SMALL_STATE(2162)] = 67169, + [SMALL_STATE(2163)] = 67192, + [SMALL_STATE(2164)] = 67223, + [SMALL_STATE(2165)] = 67246, + [SMALL_STATE(2166)] = 67269, + [SMALL_STATE(2167)] = 67302, + [SMALL_STATE(2168)] = 67333, + [SMALL_STATE(2169)] = 67356, + [SMALL_STATE(2170)] = 67379, + [SMALL_STATE(2171)] = 67416, + [SMALL_STATE(2172)] = 67439, + [SMALL_STATE(2173)] = 67462, + [SMALL_STATE(2174)] = 67485, + [SMALL_STATE(2175)] = 67526, + [SMALL_STATE(2176)] = 67567, + [SMALL_STATE(2177)] = 67590, + [SMALL_STATE(2178)] = 67613, + [SMALL_STATE(2179)] = 67644, + [SMALL_STATE(2180)] = 67675, + [SMALL_STATE(2181)] = 67698, + [SMALL_STATE(2182)] = 67721, + [SMALL_STATE(2183)] = 67756, + [SMALL_STATE(2184)] = 67779, + [SMALL_STATE(2185)] = 67802, + [SMALL_STATE(2186)] = 67825, + [SMALL_STATE(2187)] = 67848, + [SMALL_STATE(2188)] = 67885, + [SMALL_STATE(2189)] = 67926, + [SMALL_STATE(2190)] = 67949, + [SMALL_STATE(2191)] = 67984, + [SMALL_STATE(2192)] = 68007, + [SMALL_STATE(2193)] = 68030, + [SMALL_STATE(2194)] = 68053, + [SMALL_STATE(2195)] = 68084, + [SMALL_STATE(2196)] = 68107, + [SMALL_STATE(2197)] = 68138, + [SMALL_STATE(2198)] = 68179, + [SMALL_STATE(2199)] = 68202, + [SMALL_STATE(2200)] = 68239, + [SMALL_STATE(2201)] = 68262, + [SMALL_STATE(2202)] = 68285, + [SMALL_STATE(2203)] = 68308, + [SMALL_STATE(2204)] = 68331, + [SMALL_STATE(2205)] = 68354, + [SMALL_STATE(2206)] = 68391, + [SMALL_STATE(2207)] = 68414, + [SMALL_STATE(2208)] = 68437, + [SMALL_STATE(2209)] = 68460, + [SMALL_STATE(2210)] = 68483, + [SMALL_STATE(2211)] = 68518, + [SMALL_STATE(2212)] = 68541, + [SMALL_STATE(2213)] = 68564, + [SMALL_STATE(2214)] = 68587, + [SMALL_STATE(2215)] = 68622, + [SMALL_STATE(2216)] = 68645, + [SMALL_STATE(2217)] = 68673, + [SMALL_STATE(2218)] = 68711, + [SMALL_STATE(2219)] = 68749, + [SMALL_STATE(2220)] = 68777, + [SMALL_STATE(2221)] = 68815, + [SMALL_STATE(2222)] = 68853, + [SMALL_STATE(2223)] = 68891, + [SMALL_STATE(2224)] = 68929, + [SMALL_STATE(2225)] = 68967, + [SMALL_STATE(2226)] = 68995, + [SMALL_STATE(2227)] = 69029, + [SMALL_STATE(2228)] = 69061, + [SMALL_STATE(2229)] = 69089, + [SMALL_STATE(2230)] = 69121, + [SMALL_STATE(2231)] = 69151, + [SMALL_STATE(2232)] = 69175, + [SMALL_STATE(2233)] = 69207, + [SMALL_STATE(2234)] = 69233, + [SMALL_STATE(2235)] = 69271, + [SMALL_STATE(2236)] = 69297, + [SMALL_STATE(2237)] = 69323, + [SMALL_STATE(2238)] = 69351, + [SMALL_STATE(2239)] = 69383, + [SMALL_STATE(2240)] = 69421, + [SMALL_STATE(2241)] = 69445, + [SMALL_STATE(2242)] = 69475, + [SMALL_STATE(2243)] = 69511, + [SMALL_STATE(2244)] = 69543, + [SMALL_STATE(2245)] = 69581, + [SMALL_STATE(2246)] = 69619, + [SMALL_STATE(2247)] = 69657, + [SMALL_STATE(2248)] = 69685, + [SMALL_STATE(2249)] = 69717, + [SMALL_STATE(2250)] = 69745, + [SMALL_STATE(2251)] = 69775, + [SMALL_STATE(2252)] = 69809, + [SMALL_STATE(2253)] = 69847, + [SMALL_STATE(2254)] = 69879, + [SMALL_STATE(2255)] = 69917, + [SMALL_STATE(2256)] = 69941, + [SMALL_STATE(2257)] = 69965, + [SMALL_STATE(2258)] = 69997, + [SMALL_STATE(2259)] = 70021, + [SMALL_STATE(2260)] = 70059, + [SMALL_STATE(2261)] = 70097, + [SMALL_STATE(2262)] = 70129, + [SMALL_STATE(2263)] = 70159, + [SMALL_STATE(2264)] = 70191, + [SMALL_STATE(2265)] = 70223, + [SMALL_STATE(2266)] = 70255, + [SMALL_STATE(2267)] = 70287, + [SMALL_STATE(2268)] = 70322, + [SMALL_STATE(2269)] = 70357, + [SMALL_STATE(2270)] = 70392, + [SMALL_STATE(2271)] = 70425, + [SMALL_STATE(2272)] = 70460, + [SMALL_STATE(2273)] = 70495, + [SMALL_STATE(2274)] = 70530, + [SMALL_STATE(2275)] = 70551, + [SMALL_STATE(2276)] = 70572, + [SMALL_STATE(2277)] = 70607, + [SMALL_STATE(2278)] = 70642, + [SMALL_STATE(2279)] = 70677, + [SMALL_STATE(2280)] = 70712, + [SMALL_STATE(2281)] = 70741, + [SMALL_STATE(2282)] = 70776, + [SMALL_STATE(2283)] = 70811, + [SMALL_STATE(2284)] = 70844, + [SMALL_STATE(2285)] = 70879, + [SMALL_STATE(2286)] = 70914, + [SMALL_STATE(2287)] = 70949, + [SMALL_STATE(2288)] = 70984, + [SMALL_STATE(2289)] = 71019, + [SMALL_STATE(2290)] = 71054, + [SMALL_STATE(2291)] = 71087, + [SMALL_STATE(2292)] = 71122, + [SMALL_STATE(2293)] = 71157, + [SMALL_STATE(2294)] = 71192, + [SMALL_STATE(2295)] = 71227, + [SMALL_STATE(2296)] = 71254, + [SMALL_STATE(2297)] = 71289, + [SMALL_STATE(2298)] = 71324, + [SMALL_STATE(2299)] = 71357, + [SMALL_STATE(2300)] = 71390, + [SMALL_STATE(2301)] = 71425, + [SMALL_STATE(2302)] = 71460, + [SMALL_STATE(2303)] = 71495, + [SMALL_STATE(2304)] = 71530, + [SMALL_STATE(2305)] = 71565, + [SMALL_STATE(2306)] = 71600, + [SMALL_STATE(2307)] = 71635, + [SMALL_STATE(2308)] = 71670, + [SMALL_STATE(2309)] = 71705, + [SMALL_STATE(2310)] = 71740, + [SMALL_STATE(2311)] = 71775, + [SMALL_STATE(2312)] = 71800, + [SMALL_STATE(2313)] = 71825, + [SMALL_STATE(2314)] = 71860, + [SMALL_STATE(2315)] = 71895, + [SMALL_STATE(2316)] = 71920, + [SMALL_STATE(2317)] = 71955, + [SMALL_STATE(2318)] = 71990, + [SMALL_STATE(2319)] = 72011, + [SMALL_STATE(2320)] = 72032, + [SMALL_STATE(2321)] = 72067, + [SMALL_STATE(2322)] = 72099, + [SMALL_STATE(2323)] = 72125, + [SMALL_STATE(2324)] = 72157, + [SMALL_STATE(2325)] = 72189, + [SMALL_STATE(2326)] = 72221, + [SMALL_STATE(2327)] = 72251, + [SMALL_STATE(2328)] = 72283, + [SMALL_STATE(2329)] = 72309, + [SMALL_STATE(2330)] = 72341, + [SMALL_STATE(2331)] = 72371, + [SMALL_STATE(2332)] = 72403, + [SMALL_STATE(2333)] = 72433, + [SMALL_STATE(2334)] = 72465, + [SMALL_STATE(2335)] = 72497, + [SMALL_STATE(2336)] = 72527, + [SMALL_STATE(2337)] = 72557, + [SMALL_STATE(2338)] = 72587, + [SMALL_STATE(2339)] = 72617, + [SMALL_STATE(2340)] = 72649, + [SMALL_STATE(2341)] = 72681, + [SMALL_STATE(2342)] = 72713, + [SMALL_STATE(2343)] = 72745, + [SMALL_STATE(2344)] = 72775, + [SMALL_STATE(2345)] = 72807, + [SMALL_STATE(2346)] = 72835, + [SMALL_STATE(2347)] = 72867, + [SMALL_STATE(2348)] = 72899, + [SMALL_STATE(2349)] = 72931, + [SMALL_STATE(2350)] = 72953, + [SMALL_STATE(2351)] = 72985, + [SMALL_STATE(2352)] = 73013, + [SMALL_STATE(2353)] = 73039, + [SMALL_STATE(2354)] = 73069, + [SMALL_STATE(2355)] = 73097, + [SMALL_STATE(2356)] = 73129, + [SMALL_STATE(2357)] = 73161, + [SMALL_STATE(2358)] = 73193, + [SMALL_STATE(2359)] = 73225, + [SMALL_STATE(2360)] = 73257, + [SMALL_STATE(2361)] = 73285, + [SMALL_STATE(2362)] = 73317, + [SMALL_STATE(2363)] = 73349, + [SMALL_STATE(2364)] = 73381, + [SMALL_STATE(2365)] = 73413, + [SMALL_STATE(2366)] = 73435, + [SMALL_STATE(2367)] = 73461, + [SMALL_STATE(2368)] = 73491, + [SMALL_STATE(2369)] = 73523, + [SMALL_STATE(2370)] = 73555, + [SMALL_STATE(2371)] = 73587, + [SMALL_STATE(2372)] = 73615, + [SMALL_STATE(2373)] = 73637, + [SMALL_STATE(2374)] = 73659, + [SMALL_STATE(2375)] = 73681, + [SMALL_STATE(2376)] = 73713, + [SMALL_STATE(2377)] = 73745, + [SMALL_STATE(2378)] = 73767, + [SMALL_STATE(2379)] = 73799, + [SMALL_STATE(2380)] = 73820, + [SMALL_STATE(2381)] = 73849, + [SMALL_STATE(2382)] = 73870, + [SMALL_STATE(2383)] = 73893, + [SMALL_STATE(2384)] = 73920, + [SMALL_STATE(2385)] = 73941, + [SMALL_STATE(2386)] = 73962, + [SMALL_STATE(2387)] = 73985, + [SMALL_STATE(2388)] = 74014, + [SMALL_STATE(2389)] = 74035, + [SMALL_STATE(2390)] = 74058, + [SMALL_STATE(2391)] = 74085, + [SMALL_STATE(2392)] = 74114, + [SMALL_STATE(2393)] = 74143, + [SMALL_STATE(2394)] = 74164, + [SMALL_STATE(2395)] = 74189, + [SMALL_STATE(2396)] = 74210, + [SMALL_STATE(2397)] = 74229, + [SMALL_STATE(2398)] = 74258, + [SMALL_STATE(2399)] = 74281, + [SMALL_STATE(2400)] = 74304, + [SMALL_STATE(2401)] = 74327, + [SMALL_STATE(2402)] = 74356, + [SMALL_STATE(2403)] = 74385, + [SMALL_STATE(2404)] = 74414, + [SMALL_STATE(2405)] = 74437, + [SMALL_STATE(2406)] = 74458, + [SMALL_STATE(2407)] = 74487, + [SMALL_STATE(2408)] = 74512, + [SMALL_STATE(2409)] = 74541, + [SMALL_STATE(2410)] = 74564, + [SMALL_STATE(2411)] = 74593, + [SMALL_STATE(2412)] = 74614, + [SMALL_STATE(2413)] = 74643, + [SMALL_STATE(2414)] = 74672, + [SMALL_STATE(2415)] = 74701, + [SMALL_STATE(2416)] = 74730, + [SMALL_STATE(2417)] = 74753, + [SMALL_STATE(2418)] = 74782, + [SMALL_STATE(2419)] = 74811, + [SMALL_STATE(2420)] = 74840, + [SMALL_STATE(2421)] = 74869, + [SMALL_STATE(2422)] = 74898, + [SMALL_STATE(2423)] = 74927, + [SMALL_STATE(2424)] = 74956, + [SMALL_STATE(2425)] = 74985, + [SMALL_STATE(2426)] = 75014, + [SMALL_STATE(2427)] = 75043, + [SMALL_STATE(2428)] = 75072, + [SMALL_STATE(2429)] = 75093, + [SMALL_STATE(2430)] = 75122, + [SMALL_STATE(2431)] = 75147, + [SMALL_STATE(2432)] = 75176, + [SMALL_STATE(2433)] = 75203, + [SMALL_STATE(2434)] = 75232, + [SMALL_STATE(2435)] = 75261, + [SMALL_STATE(2436)] = 75290, + [SMALL_STATE(2437)] = 75319, + [SMALL_STATE(2438)] = 75348, + [SMALL_STATE(2439)] = 75377, + [SMALL_STATE(2440)] = 75402, + [SMALL_STATE(2441)] = 75425, + [SMALL_STATE(2442)] = 75454, + [SMALL_STATE(2443)] = 75473, + [SMALL_STATE(2444)] = 75502, + [SMALL_STATE(2445)] = 75525, + [SMALL_STATE(2446)] = 75552, + [SMALL_STATE(2447)] = 75573, + [SMALL_STATE(2448)] = 75594, + [SMALL_STATE(2449)] = 75623, + [SMALL_STATE(2450)] = 75652, + [SMALL_STATE(2451)] = 75679, + [SMALL_STATE(2452)] = 75708, + [SMALL_STATE(2453)] = 75731, + [SMALL_STATE(2454)] = 75760, + [SMALL_STATE(2455)] = 75789, + [SMALL_STATE(2456)] = 75812, + [SMALL_STATE(2457)] = 75841, + [SMALL_STATE(2458)] = 75870, + [SMALL_STATE(2459)] = 75899, + [SMALL_STATE(2460)] = 75928, + [SMALL_STATE(2461)] = 75957, + [SMALL_STATE(2462)] = 75980, + [SMALL_STATE(2463)] = 76009, + [SMALL_STATE(2464)] = 76038, + [SMALL_STATE(2465)] = 76067, + [SMALL_STATE(2466)] = 76088, + [SMALL_STATE(2467)] = 76109, + [SMALL_STATE(2468)] = 76138, + [SMALL_STATE(2469)] = 76161, + [SMALL_STATE(2470)] = 76190, + [SMALL_STATE(2471)] = 76219, + [SMALL_STATE(2472)] = 76242, + [SMALL_STATE(2473)] = 76263, + [SMALL_STATE(2474)] = 76284, + [SMALL_STATE(2475)] = 76313, + [SMALL_STATE(2476)] = 76342, + [SMALL_STATE(2477)] = 76371, + [SMALL_STATE(2478)] = 76400, + [SMALL_STATE(2479)] = 76427, + [SMALL_STATE(2480)] = 76456, + [SMALL_STATE(2481)] = 76482, + [SMALL_STATE(2482)] = 76508, + [SMALL_STATE(2483)] = 76534, + [SMALL_STATE(2484)] = 76560, + [SMALL_STATE(2485)] = 76578, + [SMALL_STATE(2486)] = 76604, + [SMALL_STATE(2487)] = 76626, + [SMALL_STATE(2488)] = 76650, + [SMALL_STATE(2489)] = 76672, + [SMALL_STATE(2490)] = 76696, + [SMALL_STATE(2491)] = 76720, + [SMALL_STATE(2492)] = 76738, + [SMALL_STATE(2493)] = 76760, + [SMALL_STATE(2494)] = 76778, + [SMALL_STATE(2495)] = 76796, + [SMALL_STATE(2496)] = 76814, + [SMALL_STATE(2497)] = 76840, + [SMALL_STATE(2498)] = 76858, + [SMALL_STATE(2499)] = 76876, + [SMALL_STATE(2500)] = 76902, + [SMALL_STATE(2501)] = 76924, + [SMALL_STATE(2502)] = 76942, + [SMALL_STATE(2503)] = 76960, + [SMALL_STATE(2504)] = 76978, + [SMALL_STATE(2505)] = 77004, + [SMALL_STATE(2506)] = 77030, + [SMALL_STATE(2507)] = 77048, + [SMALL_STATE(2508)] = 77066, + [SMALL_STATE(2509)] = 77088, + [SMALL_STATE(2510)] = 77114, + [SMALL_STATE(2511)] = 77132, + [SMALL_STATE(2512)] = 77158, + [SMALL_STATE(2513)] = 77176, + [SMALL_STATE(2514)] = 77202, + [SMALL_STATE(2515)] = 77220, + [SMALL_STATE(2516)] = 77244, + [SMALL_STATE(2517)] = 77270, + [SMALL_STATE(2518)] = 77288, + [SMALL_STATE(2519)] = 77306, + [SMALL_STATE(2520)] = 77332, + [SMALL_STATE(2521)] = 77358, + [SMALL_STATE(2522)] = 77384, + [SMALL_STATE(2523)] = 77410, + [SMALL_STATE(2524)] = 77436, + [SMALL_STATE(2525)] = 77460, + [SMALL_STATE(2526)] = 77486, + [SMALL_STATE(2527)] = 77512, + [SMALL_STATE(2528)] = 77538, + [SMALL_STATE(2529)] = 77562, + [SMALL_STATE(2530)] = 77588, + [SMALL_STATE(2531)] = 77614, + [SMALL_STATE(2532)] = 77640, + [SMALL_STATE(2533)] = 77664, + [SMALL_STATE(2534)] = 77690, + [SMALL_STATE(2535)] = 77708, + [SMALL_STATE(2536)] = 77734, + [SMALL_STATE(2537)] = 77758, + [SMALL_STATE(2538)] = 77784, + [SMALL_STATE(2539)] = 77804, + [SMALL_STATE(2540)] = 77830, + [SMALL_STATE(2541)] = 77856, + [SMALL_STATE(2542)] = 77882, + [SMALL_STATE(2543)] = 77908, + [SMALL_STATE(2544)] = 77934, + [SMALL_STATE(2545)] = 77960, + [SMALL_STATE(2546)] = 77986, + [SMALL_STATE(2547)] = 78012, + [SMALL_STATE(2548)] = 78038, + [SMALL_STATE(2549)] = 78064, + [SMALL_STATE(2550)] = 78090, + [SMALL_STATE(2551)] = 78116, + [SMALL_STATE(2552)] = 78142, + [SMALL_STATE(2553)] = 78168, + [SMALL_STATE(2554)] = 78194, + [SMALL_STATE(2555)] = 78218, + [SMALL_STATE(2556)] = 78242, + [SMALL_STATE(2557)] = 78268, + [SMALL_STATE(2558)] = 78294, + [SMALL_STATE(2559)] = 78318, + [SMALL_STATE(2560)] = 78342, + [SMALL_STATE(2561)] = 78362, + [SMALL_STATE(2562)] = 78388, + [SMALL_STATE(2563)] = 78412, + [SMALL_STATE(2564)] = 78436, + [SMALL_STATE(2565)] = 78462, + [SMALL_STATE(2566)] = 78480, + [SMALL_STATE(2567)] = 78500, + [SMALL_STATE(2568)] = 78518, + [SMALL_STATE(2569)] = 78536, + [SMALL_STATE(2570)] = 78554, + [SMALL_STATE(2571)] = 78574, + [SMALL_STATE(2572)] = 78598, + [SMALL_STATE(2573)] = 78624, + [SMALL_STATE(2574)] = 78642, + [SMALL_STATE(2575)] = 78660, + [SMALL_STATE(2576)] = 78684, + [SMALL_STATE(2577)] = 78706, + [SMALL_STATE(2578)] = 78732, + [SMALL_STATE(2579)] = 78758, + [SMALL_STATE(2580)] = 78784, + [SMALL_STATE(2581)] = 78806, + [SMALL_STATE(2582)] = 78824, + [SMALL_STATE(2583)] = 78850, + [SMALL_STATE(2584)] = 78872, + [SMALL_STATE(2585)] = 78898, + [SMALL_STATE(2586)] = 78924, + [SMALL_STATE(2587)] = 78950, + [SMALL_STATE(2588)] = 78976, + [SMALL_STATE(2589)] = 78994, + [SMALL_STATE(2590)] = 79017, + [SMALL_STATE(2591)] = 79038, + [SMALL_STATE(2592)] = 79061, + [SMALL_STATE(2593)] = 79082, + [SMALL_STATE(2594)] = 79105, + [SMALL_STATE(2595)] = 79128, + [SMALL_STATE(2596)] = 79151, + [SMALL_STATE(2597)] = 79170, + [SMALL_STATE(2598)] = 79189, + [SMALL_STATE(2599)] = 79210, + [SMALL_STATE(2600)] = 79229, + [SMALL_STATE(2601)] = 79252, + [SMALL_STATE(2602)] = 79275, + [SMALL_STATE(2603)] = 79296, + [SMALL_STATE(2604)] = 79319, + [SMALL_STATE(2605)] = 79340, + [SMALL_STATE(2606)] = 79361, + [SMALL_STATE(2607)] = 79384, + [SMALL_STATE(2608)] = 79407, + [SMALL_STATE(2609)] = 79430, + [SMALL_STATE(2610)] = 79453, + [SMALL_STATE(2611)] = 79476, + [SMALL_STATE(2612)] = 79499, + [SMALL_STATE(2613)] = 79522, + [SMALL_STATE(2614)] = 79545, + [SMALL_STATE(2615)] = 79568, + [SMALL_STATE(2616)] = 79591, + [SMALL_STATE(2617)] = 79614, + [SMALL_STATE(2618)] = 79637, + [SMALL_STATE(2619)] = 79660, + [SMALL_STATE(2620)] = 79683, + [SMALL_STATE(2621)] = 79706, + [SMALL_STATE(2622)] = 79729, + [SMALL_STATE(2623)] = 79752, + [SMALL_STATE(2624)] = 79775, + [SMALL_STATE(2625)] = 79794, + [SMALL_STATE(2626)] = 79817, + [SMALL_STATE(2627)] = 79840, + [SMALL_STATE(2628)] = 79859, + [SMALL_STATE(2629)] = 79882, + [SMALL_STATE(2630)] = 79905, + [SMALL_STATE(2631)] = 79928, + [SMALL_STATE(2632)] = 79947, + [SMALL_STATE(2633)] = 79970, + [SMALL_STATE(2634)] = 79993, + [SMALL_STATE(2635)] = 80016, + [SMALL_STATE(2636)] = 80039, + [SMALL_STATE(2637)] = 80062, + [SMALL_STATE(2638)] = 80085, + [SMALL_STATE(2639)] = 80108, + [SMALL_STATE(2640)] = 80131, + [SMALL_STATE(2641)] = 80152, + [SMALL_STATE(2642)] = 80169, + [SMALL_STATE(2643)] = 80192, + [SMALL_STATE(2644)] = 80215, + [SMALL_STATE(2645)] = 80238, + [SMALL_STATE(2646)] = 80261, + [SMALL_STATE(2647)] = 80280, + [SMALL_STATE(2648)] = 80303, + [SMALL_STATE(2649)] = 80326, + [SMALL_STATE(2650)] = 80349, + [SMALL_STATE(2651)] = 80372, + [SMALL_STATE(2652)] = 80391, + [SMALL_STATE(2653)] = 80410, + [SMALL_STATE(2654)] = 80433, + [SMALL_STATE(2655)] = 80456, + [SMALL_STATE(2656)] = 80473, + [SMALL_STATE(2657)] = 80496, + [SMALL_STATE(2658)] = 80519, + [SMALL_STATE(2659)] = 80542, + [SMALL_STATE(2660)] = 80565, + [SMALL_STATE(2661)] = 80588, + [SMALL_STATE(2662)] = 80611, + [SMALL_STATE(2663)] = 80630, + [SMALL_STATE(2664)] = 80653, + [SMALL_STATE(2665)] = 80672, + [SMALL_STATE(2666)] = 80691, + [SMALL_STATE(2667)] = 80710, + [SMALL_STATE(2668)] = 80731, + [SMALL_STATE(2669)] = 80754, + [SMALL_STATE(2670)] = 80777, + [SMALL_STATE(2671)] = 80800, + [SMALL_STATE(2672)] = 80823, + [SMALL_STATE(2673)] = 80846, + [SMALL_STATE(2674)] = 80869, + [SMALL_STATE(2675)] = 80892, + [SMALL_STATE(2676)] = 80915, + [SMALL_STATE(2677)] = 80938, + [SMALL_STATE(2678)] = 80959, + [SMALL_STATE(2679)] = 80980, + [SMALL_STATE(2680)] = 81003, + [SMALL_STATE(2681)] = 81026, + [SMALL_STATE(2682)] = 81049, + [SMALL_STATE(2683)] = 81068, + [SMALL_STATE(2684)] = 81091, + [SMALL_STATE(2685)] = 81114, + [SMALL_STATE(2686)] = 81137, + [SMALL_STATE(2687)] = 81160, + [SMALL_STATE(2688)] = 81183, + [SMALL_STATE(2689)] = 81206, + [SMALL_STATE(2690)] = 81229, + [SMALL_STATE(2691)] = 81250, + [SMALL_STATE(2692)] = 81273, + [SMALL_STATE(2693)] = 81296, + [SMALL_STATE(2694)] = 81319, + [SMALL_STATE(2695)] = 81342, + [SMALL_STATE(2696)] = 81365, + [SMALL_STATE(2697)] = 81388, + [SMALL_STATE(2698)] = 81409, + [SMALL_STATE(2699)] = 81432, + [SMALL_STATE(2700)] = 81455, + [SMALL_STATE(2701)] = 81478, + [SMALL_STATE(2702)] = 81501, + [SMALL_STATE(2703)] = 81524, + [SMALL_STATE(2704)] = 81547, + [SMALL_STATE(2705)] = 81570, + [SMALL_STATE(2706)] = 81593, + [SMALL_STATE(2707)] = 81616, + [SMALL_STATE(2708)] = 81639, + [SMALL_STATE(2709)] = 81662, + [SMALL_STATE(2710)] = 81685, + [SMALL_STATE(2711)] = 81704, + [SMALL_STATE(2712)] = 81727, + [SMALL_STATE(2713)] = 81750, + [SMALL_STATE(2714)] = 81773, + [SMALL_STATE(2715)] = 81796, + [SMALL_STATE(2716)] = 81819, + [SMALL_STATE(2717)] = 81842, + [SMALL_STATE(2718)] = 81865, + [SMALL_STATE(2719)] = 81888, + [SMALL_STATE(2720)] = 81911, + [SMALL_STATE(2721)] = 81934, + [SMALL_STATE(2722)] = 81957, + [SMALL_STATE(2723)] = 81978, + [SMALL_STATE(2724)] = 82001, + [SMALL_STATE(2725)] = 82024, + [SMALL_STATE(2726)] = 82047, + [SMALL_STATE(2727)] = 82070, + [SMALL_STATE(2728)] = 82093, + [SMALL_STATE(2729)] = 82116, + [SMALL_STATE(2730)] = 82137, + [SMALL_STATE(2731)] = 82160, + [SMALL_STATE(2732)] = 82183, + [SMALL_STATE(2733)] = 82200, + [SMALL_STATE(2734)] = 82223, + [SMALL_STATE(2735)] = 82246, + [SMALL_STATE(2736)] = 82269, + [SMALL_STATE(2737)] = 82288, + [SMALL_STATE(2738)] = 82311, + [SMALL_STATE(2739)] = 82334, + [SMALL_STATE(2740)] = 82357, + [SMALL_STATE(2741)] = 82378, + [SMALL_STATE(2742)] = 82401, + [SMALL_STATE(2743)] = 82424, + [SMALL_STATE(2744)] = 82445, + [SMALL_STATE(2745)] = 82468, + [SMALL_STATE(2746)] = 82491, + [SMALL_STATE(2747)] = 82514, + [SMALL_STATE(2748)] = 82537, + [SMALL_STATE(2749)] = 82560, + [SMALL_STATE(2750)] = 82583, + [SMALL_STATE(2751)] = 82606, + [SMALL_STATE(2752)] = 82627, + [SMALL_STATE(2753)] = 82648, + [SMALL_STATE(2754)] = 82671, + [SMALL_STATE(2755)] = 82694, + [SMALL_STATE(2756)] = 82713, + [SMALL_STATE(2757)] = 82732, + [SMALL_STATE(2758)] = 82749, + [SMALL_STATE(2759)] = 82772, + [SMALL_STATE(2760)] = 82795, + [SMALL_STATE(2761)] = 82818, + [SMALL_STATE(2762)] = 82837, + [SMALL_STATE(2763)] = 82860, + [SMALL_STATE(2764)] = 82883, + [SMALL_STATE(2765)] = 82906, + [SMALL_STATE(2766)] = 82927, + [SMALL_STATE(2767)] = 82950, + [SMALL_STATE(2768)] = 82969, + [SMALL_STATE(2769)] = 82988, + [SMALL_STATE(2770)] = 83011, + [SMALL_STATE(2771)] = 83034, + [SMALL_STATE(2772)] = 83057, + [SMALL_STATE(2773)] = 83080, + [SMALL_STATE(2774)] = 83103, + [SMALL_STATE(2775)] = 83126, + [SMALL_STATE(2776)] = 83149, + [SMALL_STATE(2777)] = 83168, + [SMALL_STATE(2778)] = 83191, + [SMALL_STATE(2779)] = 83214, + [SMALL_STATE(2780)] = 83233, + [SMALL_STATE(2781)] = 83256, + [SMALL_STATE(2782)] = 83279, + [SMALL_STATE(2783)] = 83298, + [SMALL_STATE(2784)] = 83317, + [SMALL_STATE(2785)] = 83336, + [SMALL_STATE(2786)] = 83359, + [SMALL_STATE(2787)] = 83382, + [SMALL_STATE(2788)] = 83405, + [SMALL_STATE(2789)] = 83428, + [SMALL_STATE(2790)] = 83451, + [SMALL_STATE(2791)] = 83472, + [SMALL_STATE(2792)] = 83495, + [SMALL_STATE(2793)] = 83516, + [SMALL_STATE(2794)] = 83539, + [SMALL_STATE(2795)] = 83558, + [SMALL_STATE(2796)] = 83577, + [SMALL_STATE(2797)] = 83596, + [SMALL_STATE(2798)] = 83619, + [SMALL_STATE(2799)] = 83642, + [SMALL_STATE(2800)] = 83661, + [SMALL_STATE(2801)] = 83684, + [SMALL_STATE(2802)] = 83707, + [SMALL_STATE(2803)] = 83724, + [SMALL_STATE(2804)] = 83745, + [SMALL_STATE(2805)] = 83768, + [SMALL_STATE(2806)] = 83791, + [SMALL_STATE(2807)] = 83814, + [SMALL_STATE(2808)] = 83837, + [SMALL_STATE(2809)] = 83860, + [SMALL_STATE(2810)] = 83883, + [SMALL_STATE(2811)] = 83906, + [SMALL_STATE(2812)] = 83927, + [SMALL_STATE(2813)] = 83950, + [SMALL_STATE(2814)] = 83973, + [SMALL_STATE(2815)] = 83996, + [SMALL_STATE(2816)] = 84019, + [SMALL_STATE(2817)] = 84042, + [SMALL_STATE(2818)] = 84063, + [SMALL_STATE(2819)] = 84086, + [SMALL_STATE(2820)] = 84109, + [SMALL_STATE(2821)] = 84132, + [SMALL_STATE(2822)] = 84155, + [SMALL_STATE(2823)] = 84178, + [SMALL_STATE(2824)] = 84201, + [SMALL_STATE(2825)] = 84222, + [SMALL_STATE(2826)] = 84245, + [SMALL_STATE(2827)] = 84268, + [SMALL_STATE(2828)] = 84291, + [SMALL_STATE(2829)] = 84310, + [SMALL_STATE(2830)] = 84333, + [SMALL_STATE(2831)] = 84354, + [SMALL_STATE(2832)] = 84377, + [SMALL_STATE(2833)] = 84400, + [SMALL_STATE(2834)] = 84423, + [SMALL_STATE(2835)] = 84446, + [SMALL_STATE(2836)] = 84469, + [SMALL_STATE(2837)] = 84492, + [SMALL_STATE(2838)] = 84515, + [SMALL_STATE(2839)] = 84538, + [SMALL_STATE(2840)] = 84561, + [SMALL_STATE(2841)] = 84584, + [SMALL_STATE(2842)] = 84607, + [SMALL_STATE(2843)] = 84630, + [SMALL_STATE(2844)] = 84653, + [SMALL_STATE(2845)] = 84676, + [SMALL_STATE(2846)] = 84699, + [SMALL_STATE(2847)] = 84718, + [SMALL_STATE(2848)] = 84741, + [SMALL_STATE(2849)] = 84764, + [SMALL_STATE(2850)] = 84787, + [SMALL_STATE(2851)] = 84807, + [SMALL_STATE(2852)] = 84823, + [SMALL_STATE(2853)] = 84843, + [SMALL_STATE(2854)] = 84863, + [SMALL_STATE(2855)] = 84883, + [SMALL_STATE(2856)] = 84903, + [SMALL_STATE(2857)] = 84923, + [SMALL_STATE(2858)] = 84943, + [SMALL_STATE(2859)] = 84959, + [SMALL_STATE(2860)] = 84975, + [SMALL_STATE(2861)] = 84995, + [SMALL_STATE(2862)] = 85011, + [SMALL_STATE(2863)] = 85031, + [SMALL_STATE(2864)] = 85051, + [SMALL_STATE(2865)] = 85067, + [SMALL_STATE(2866)] = 85087, + [SMALL_STATE(2867)] = 85103, + [SMALL_STATE(2868)] = 85119, + [SMALL_STATE(2869)] = 85139, + [SMALL_STATE(2870)] = 85159, + [SMALL_STATE(2871)] = 85175, + [SMALL_STATE(2872)] = 85195, + [SMALL_STATE(2873)] = 85215, + [SMALL_STATE(2874)] = 85235, + [SMALL_STATE(2875)] = 85255, + [SMALL_STATE(2876)] = 85271, + [SMALL_STATE(2877)] = 85287, + [SMALL_STATE(2878)] = 85307, + [SMALL_STATE(2879)] = 85327, + [SMALL_STATE(2880)] = 85347, + [SMALL_STATE(2881)] = 85363, + [SMALL_STATE(2882)] = 85383, + [SMALL_STATE(2883)] = 85399, + [SMALL_STATE(2884)] = 85419, + [SMALL_STATE(2885)] = 85435, + [SMALL_STATE(2886)] = 85451, + [SMALL_STATE(2887)] = 85471, + [SMALL_STATE(2888)] = 85487, + [SMALL_STATE(2889)] = 85507, + [SMALL_STATE(2890)] = 85527, + [SMALL_STATE(2891)] = 85547, + [SMALL_STATE(2892)] = 85567, + [SMALL_STATE(2893)] = 85587, + [SMALL_STATE(2894)] = 85607, + [SMALL_STATE(2895)] = 85627, + [SMALL_STATE(2896)] = 85645, + [SMALL_STATE(2897)] = 85665, + [SMALL_STATE(2898)] = 85685, + [SMALL_STATE(2899)] = 85705, + [SMALL_STATE(2900)] = 85725, + [SMALL_STATE(2901)] = 85745, + [SMALL_STATE(2902)] = 85765, + [SMALL_STATE(2903)] = 85785, + [SMALL_STATE(2904)] = 85805, + [SMALL_STATE(2905)] = 85825, + [SMALL_STATE(2906)] = 85845, + [SMALL_STATE(2907)] = 85865, + [SMALL_STATE(2908)] = 85885, + [SMALL_STATE(2909)] = 85905, + [SMALL_STATE(2910)] = 85925, + [SMALL_STATE(2911)] = 85941, + [SMALL_STATE(2912)] = 85961, + [SMALL_STATE(2913)] = 85981, + [SMALL_STATE(2914)] = 86001, + [SMALL_STATE(2915)] = 86019, + [SMALL_STATE(2916)] = 86039, + [SMALL_STATE(2917)] = 86059, + [SMALL_STATE(2918)] = 86079, + [SMALL_STATE(2919)] = 86099, + [SMALL_STATE(2920)] = 86119, + [SMALL_STATE(2921)] = 86139, + [SMALL_STATE(2922)] = 86159, + [SMALL_STATE(2923)] = 86179, + [SMALL_STATE(2924)] = 86199, + [SMALL_STATE(2925)] = 86219, + [SMALL_STATE(2926)] = 86237, + [SMALL_STATE(2927)] = 86257, + [SMALL_STATE(2928)] = 86277, + [SMALL_STATE(2929)] = 86297, + [SMALL_STATE(2930)] = 86317, + [SMALL_STATE(2931)] = 86337, + [SMALL_STATE(2932)] = 86357, + [SMALL_STATE(2933)] = 86377, + [SMALL_STATE(2934)] = 86397, + [SMALL_STATE(2935)] = 86417, + [SMALL_STATE(2936)] = 86437, + [SMALL_STATE(2937)] = 86453, + [SMALL_STATE(2938)] = 86471, + [SMALL_STATE(2939)] = 86491, + [SMALL_STATE(2940)] = 86511, + [SMALL_STATE(2941)] = 86531, + [SMALL_STATE(2942)] = 86549, + [SMALL_STATE(2943)] = 86569, + [SMALL_STATE(2944)] = 86589, + [SMALL_STATE(2945)] = 86609, + [SMALL_STATE(2946)] = 86625, + [SMALL_STATE(2947)] = 86641, + [SMALL_STATE(2948)] = 86661, + [SMALL_STATE(2949)] = 86677, + [SMALL_STATE(2950)] = 86697, + [SMALL_STATE(2951)] = 86713, + [SMALL_STATE(2952)] = 86729, + [SMALL_STATE(2953)] = 86745, + [SMALL_STATE(2954)] = 86761, + [SMALL_STATE(2955)] = 86781, + [SMALL_STATE(2956)] = 86797, + [SMALL_STATE(2957)] = 86813, + [SMALL_STATE(2958)] = 86833, + [SMALL_STATE(2959)] = 86853, + [SMALL_STATE(2960)] = 86869, + [SMALL_STATE(2961)] = 86885, + [SMALL_STATE(2962)] = 86905, + [SMALL_STATE(2963)] = 86925, + [SMALL_STATE(2964)] = 86941, + [SMALL_STATE(2965)] = 86961, + [SMALL_STATE(2966)] = 86981, + [SMALL_STATE(2967)] = 86999, + [SMALL_STATE(2968)] = 87015, + [SMALL_STATE(2969)] = 87035, + [SMALL_STATE(2970)] = 87055, + [SMALL_STATE(2971)] = 87073, + [SMALL_STATE(2972)] = 87089, + [SMALL_STATE(2973)] = 87109, + [SMALL_STATE(2974)] = 87129, + [SMALL_STATE(2975)] = 87149, + [SMALL_STATE(2976)] = 87167, + [SMALL_STATE(2977)] = 87187, + [SMALL_STATE(2978)] = 87207, + [SMALL_STATE(2979)] = 87223, + [SMALL_STATE(2980)] = 87243, + [SMALL_STATE(2981)] = 87261, + [SMALL_STATE(2982)] = 87277, + [SMALL_STATE(2983)] = 87295, + [SMALL_STATE(2984)] = 87315, + [SMALL_STATE(2985)] = 87335, + [SMALL_STATE(2986)] = 87355, + [SMALL_STATE(2987)] = 87371, + [SMALL_STATE(2988)] = 87391, + [SMALL_STATE(2989)] = 87411, + [SMALL_STATE(2990)] = 87431, + [SMALL_STATE(2991)] = 87451, + [SMALL_STATE(2992)] = 87467, + [SMALL_STATE(2993)] = 87485, + [SMALL_STATE(2994)] = 87503, + [SMALL_STATE(2995)] = 87523, + [SMALL_STATE(2996)] = 87543, + [SMALL_STATE(2997)] = 87563, + [SMALL_STATE(2998)] = 87583, + [SMALL_STATE(2999)] = 87601, + [SMALL_STATE(3000)] = 87619, + [SMALL_STATE(3001)] = 87637, + [SMALL_STATE(3002)] = 87653, + [SMALL_STATE(3003)] = 87673, + [SMALL_STATE(3004)] = 87693, + [SMALL_STATE(3005)] = 87713, + [SMALL_STATE(3006)] = 87733, + [SMALL_STATE(3007)] = 87751, + [SMALL_STATE(3008)] = 87771, + [SMALL_STATE(3009)] = 87791, + [SMALL_STATE(3010)] = 87811, + [SMALL_STATE(3011)] = 87831, + [SMALL_STATE(3012)] = 87851, + [SMALL_STATE(3013)] = 87871, + [SMALL_STATE(3014)] = 87891, + [SMALL_STATE(3015)] = 87909, + [SMALL_STATE(3016)] = 87927, + [SMALL_STATE(3017)] = 87947, + [SMALL_STATE(3018)] = 87965, + [SMALL_STATE(3019)] = 87985, + [SMALL_STATE(3020)] = 88005, + [SMALL_STATE(3021)] = 88025, + [SMALL_STATE(3022)] = 88043, + [SMALL_STATE(3023)] = 88063, + [SMALL_STATE(3024)] = 88083, + [SMALL_STATE(3025)] = 88103, + [SMALL_STATE(3026)] = 88121, + [SMALL_STATE(3027)] = 88141, + [SMALL_STATE(3028)] = 88159, + [SMALL_STATE(3029)] = 88179, + [SMALL_STATE(3030)] = 88199, + [SMALL_STATE(3031)] = 88219, + [SMALL_STATE(3032)] = 88239, + [SMALL_STATE(3033)] = 88259, + [SMALL_STATE(3034)] = 88279, + [SMALL_STATE(3035)] = 88299, + [SMALL_STATE(3036)] = 88319, + [SMALL_STATE(3037)] = 88335, + [SMALL_STATE(3038)] = 88355, + [SMALL_STATE(3039)] = 88373, + [SMALL_STATE(3040)] = 88393, + [SMALL_STATE(3041)] = 88413, + [SMALL_STATE(3042)] = 88431, + [SMALL_STATE(3043)] = 88451, + [SMALL_STATE(3044)] = 88467, + [SMALL_STATE(3045)] = 88487, + [SMALL_STATE(3046)] = 88507, + [SMALL_STATE(3047)] = 88523, + [SMALL_STATE(3048)] = 88543, + [SMALL_STATE(3049)] = 88563, + [SMALL_STATE(3050)] = 88583, + [SMALL_STATE(3051)] = 88603, + [SMALL_STATE(3052)] = 88623, + [SMALL_STATE(3053)] = 88643, + [SMALL_STATE(3054)] = 88663, + [SMALL_STATE(3055)] = 88681, + [SMALL_STATE(3056)] = 88701, + [SMALL_STATE(3057)] = 88721, + [SMALL_STATE(3058)] = 88741, + [SMALL_STATE(3059)] = 88761, + [SMALL_STATE(3060)] = 88781, + [SMALL_STATE(3061)] = 88799, + [SMALL_STATE(3062)] = 88819, + [SMALL_STATE(3063)] = 88837, + [SMALL_STATE(3064)] = 88857, + [SMALL_STATE(3065)] = 88877, + [SMALL_STATE(3066)] = 88897, + [SMALL_STATE(3067)] = 88917, + [SMALL_STATE(3068)] = 88937, + [SMALL_STATE(3069)] = 88955, + [SMALL_STATE(3070)] = 88973, + [SMALL_STATE(3071)] = 88991, + [SMALL_STATE(3072)] = 89009, + [SMALL_STATE(3073)] = 89029, + [SMALL_STATE(3074)] = 89049, + [SMALL_STATE(3075)] = 89067, + [SMALL_STATE(3076)] = 89087, + [SMALL_STATE(3077)] = 89107, + [SMALL_STATE(3078)] = 89127, + [SMALL_STATE(3079)] = 89143, + [SMALL_STATE(3080)] = 89159, + [SMALL_STATE(3081)] = 89179, + [SMALL_STATE(3082)] = 89199, + [SMALL_STATE(3083)] = 89219, + [SMALL_STATE(3084)] = 89235, + [SMALL_STATE(3085)] = 89255, + [SMALL_STATE(3086)] = 89275, + [SMALL_STATE(3087)] = 89291, + [SMALL_STATE(3088)] = 89311, + [SMALL_STATE(3089)] = 89331, + [SMALL_STATE(3090)] = 89349, + [SMALL_STATE(3091)] = 89369, + [SMALL_STATE(3092)] = 89385, + [SMALL_STATE(3093)] = 89401, + [SMALL_STATE(3094)] = 89417, + [SMALL_STATE(3095)] = 89433, + [SMALL_STATE(3096)] = 89453, + [SMALL_STATE(3097)] = 89469, + [SMALL_STATE(3098)] = 89489, + [SMALL_STATE(3099)] = 89509, + [SMALL_STATE(3100)] = 89527, + [SMALL_STATE(3101)] = 89543, + [SMALL_STATE(3102)] = 89563, + [SMALL_STATE(3103)] = 89583, + [SMALL_STATE(3104)] = 89603, + [SMALL_STATE(3105)] = 89619, + [SMALL_STATE(3106)] = 89637, + [SMALL_STATE(3107)] = 89657, + [SMALL_STATE(3108)] = 89677, + [SMALL_STATE(3109)] = 89693, + [SMALL_STATE(3110)] = 89709, + [SMALL_STATE(3111)] = 89725, + [SMALL_STATE(3112)] = 89743, + [SMALL_STATE(3113)] = 89763, + [SMALL_STATE(3114)] = 89783, + [SMALL_STATE(3115)] = 89803, + [SMALL_STATE(3116)] = 89819, + [SMALL_STATE(3117)] = 89839, + [SMALL_STATE(3118)] = 89859, + [SMALL_STATE(3119)] = 89877, + [SMALL_STATE(3120)] = 89897, + [SMALL_STATE(3121)] = 89917, + [SMALL_STATE(3122)] = 89937, + [SMALL_STATE(3123)] = 89955, + [SMALL_STATE(3124)] = 89975, + [SMALL_STATE(3125)] = 89995, + [SMALL_STATE(3126)] = 90013, + [SMALL_STATE(3127)] = 90033, + [SMALL_STATE(3128)] = 90053, + [SMALL_STATE(3129)] = 90073, + [SMALL_STATE(3130)] = 90093, + [SMALL_STATE(3131)] = 90109, + [SMALL_STATE(3132)] = 90129, + [SMALL_STATE(3133)] = 90149, + [SMALL_STATE(3134)] = 90169, + [SMALL_STATE(3135)] = 90189, + [SMALL_STATE(3136)] = 90209, + [SMALL_STATE(3137)] = 90229, + [SMALL_STATE(3138)] = 90249, + [SMALL_STATE(3139)] = 90269, + [SMALL_STATE(3140)] = 90285, + [SMALL_STATE(3141)] = 90305, + [SMALL_STATE(3142)] = 90325, + [SMALL_STATE(3143)] = 90345, + [SMALL_STATE(3144)] = 90365, + [SMALL_STATE(3145)] = 90385, + [SMALL_STATE(3146)] = 90405, + [SMALL_STATE(3147)] = 90425, + [SMALL_STATE(3148)] = 90445, + [SMALL_STATE(3149)] = 90465, + [SMALL_STATE(3150)] = 90485, + [SMALL_STATE(3151)] = 90505, + [SMALL_STATE(3152)] = 90523, + [SMALL_STATE(3153)] = 90543, + [SMALL_STATE(3154)] = 90563, + [SMALL_STATE(3155)] = 90581, + [SMALL_STATE(3156)] = 90601, + [SMALL_STATE(3157)] = 90621, + [SMALL_STATE(3158)] = 90641, + [SMALL_STATE(3159)] = 90661, + [SMALL_STATE(3160)] = 90681, + [SMALL_STATE(3161)] = 90696, + [SMALL_STATE(3162)] = 90713, + [SMALL_STATE(3163)] = 90730, + [SMALL_STATE(3164)] = 90747, + [SMALL_STATE(3165)] = 90762, + [SMALL_STATE(3166)] = 90779, + [SMALL_STATE(3167)] = 90794, + [SMALL_STATE(3168)] = 90811, + [SMALL_STATE(3169)] = 90828, + [SMALL_STATE(3170)] = 90845, + [SMALL_STATE(3171)] = 90862, + [SMALL_STATE(3172)] = 90879, + [SMALL_STATE(3173)] = 90896, + [SMALL_STATE(3174)] = 90911, + [SMALL_STATE(3175)] = 90928, + [SMALL_STATE(3176)] = 90943, + [SMALL_STATE(3177)] = 90960, + [SMALL_STATE(3178)] = 90977, + [SMALL_STATE(3179)] = 90994, + [SMALL_STATE(3180)] = 91011, + [SMALL_STATE(3181)] = 91028, + [SMALL_STATE(3182)] = 91045, + [SMALL_STATE(3183)] = 91060, + [SMALL_STATE(3184)] = 91077, + [SMALL_STATE(3185)] = 91094, + [SMALL_STATE(3186)] = 91111, + [SMALL_STATE(3187)] = 91126, + [SMALL_STATE(3188)] = 91141, + [SMALL_STATE(3189)] = 91158, + [SMALL_STATE(3190)] = 91175, + [SMALL_STATE(3191)] = 91192, + [SMALL_STATE(3192)] = 91209, + [SMALL_STATE(3193)] = 91224, + [SMALL_STATE(3194)] = 91241, + [SMALL_STATE(3195)] = 91256, + [SMALL_STATE(3196)] = 91271, + [SMALL_STATE(3197)] = 91288, + [SMALL_STATE(3198)] = 91305, + [SMALL_STATE(3199)] = 91322, + [SMALL_STATE(3200)] = 91339, + [SMALL_STATE(3201)] = 91356, + [SMALL_STATE(3202)] = 91373, + [SMALL_STATE(3203)] = 91388, + [SMALL_STATE(3204)] = 91405, + [SMALL_STATE(3205)] = 91422, + [SMALL_STATE(3206)] = 91439, + [SMALL_STATE(3207)] = 91456, + [SMALL_STATE(3208)] = 91471, + [SMALL_STATE(3209)] = 91488, + [SMALL_STATE(3210)] = 91505, + [SMALL_STATE(3211)] = 91522, + [SMALL_STATE(3212)] = 91537, + [SMALL_STATE(3213)] = 91552, + [SMALL_STATE(3214)] = 91567, + [SMALL_STATE(3215)] = 91584, + [SMALL_STATE(3216)] = 91601, + [SMALL_STATE(3217)] = 91618, + [SMALL_STATE(3218)] = 91635, + [SMALL_STATE(3219)] = 91652, + [SMALL_STATE(3220)] = 91669, + [SMALL_STATE(3221)] = 91686, + [SMALL_STATE(3222)] = 91703, + [SMALL_STATE(3223)] = 91720, + [SMALL_STATE(3224)] = 91735, + [SMALL_STATE(3225)] = 91752, + [SMALL_STATE(3226)] = 91769, + [SMALL_STATE(3227)] = 91786, + [SMALL_STATE(3228)] = 91803, + [SMALL_STATE(3229)] = 91820, + [SMALL_STATE(3230)] = 91835, + [SMALL_STATE(3231)] = 91852, + [SMALL_STATE(3232)] = 91869, + [SMALL_STATE(3233)] = 91886, + [SMALL_STATE(3234)] = 91903, + [SMALL_STATE(3235)] = 91920, + [SMALL_STATE(3236)] = 91935, + [SMALL_STATE(3237)] = 91952, + [SMALL_STATE(3238)] = 91969, + [SMALL_STATE(3239)] = 91986, + [SMALL_STATE(3240)] = 92001, + [SMALL_STATE(3241)] = 92018, + [SMALL_STATE(3242)] = 92035, + [SMALL_STATE(3243)] = 92052, + [SMALL_STATE(3244)] = 92069, + [SMALL_STATE(3245)] = 92086, + [SMALL_STATE(3246)] = 92103, + [SMALL_STATE(3247)] = 92118, + [SMALL_STATE(3248)] = 92135, + [SMALL_STATE(3249)] = 92150, + [SMALL_STATE(3250)] = 92167, + [SMALL_STATE(3251)] = 92184, + [SMALL_STATE(3252)] = 92201, + [SMALL_STATE(3253)] = 92218, + [SMALL_STATE(3254)] = 92233, + [SMALL_STATE(3255)] = 92250, + [SMALL_STATE(3256)] = 92267, + [SMALL_STATE(3257)] = 92284, + [SMALL_STATE(3258)] = 92301, + [SMALL_STATE(3259)] = 92316, + [SMALL_STATE(3260)] = 92333, + [SMALL_STATE(3261)] = 92348, + [SMALL_STATE(3262)] = 92365, + [SMALL_STATE(3263)] = 92382, + [SMALL_STATE(3264)] = 92399, + [SMALL_STATE(3265)] = 92416, + [SMALL_STATE(3266)] = 92433, + [SMALL_STATE(3267)] = 92450, + [SMALL_STATE(3268)] = 92467, + [SMALL_STATE(3269)] = 92482, + [SMALL_STATE(3270)] = 92499, + [SMALL_STATE(3271)] = 92516, + [SMALL_STATE(3272)] = 92531, + [SMALL_STATE(3273)] = 92548, + [SMALL_STATE(3274)] = 92565, + [SMALL_STATE(3275)] = 92582, + [SMALL_STATE(3276)] = 92599, + [SMALL_STATE(3277)] = 92614, + [SMALL_STATE(3278)] = 92631, + [SMALL_STATE(3279)] = 92648, + [SMALL_STATE(3280)] = 92665, + [SMALL_STATE(3281)] = 92682, + [SMALL_STATE(3282)] = 92699, + [SMALL_STATE(3283)] = 92716, + [SMALL_STATE(3284)] = 92733, + [SMALL_STATE(3285)] = 92750, + [SMALL_STATE(3286)] = 92767, + [SMALL_STATE(3287)] = 92784, + [SMALL_STATE(3288)] = 92801, + [SMALL_STATE(3289)] = 92818, + [SMALL_STATE(3290)] = 92835, + [SMALL_STATE(3291)] = 92852, + [SMALL_STATE(3292)] = 92869, + [SMALL_STATE(3293)] = 92886, + [SMALL_STATE(3294)] = 92903, + [SMALL_STATE(3295)] = 92920, + [SMALL_STATE(3296)] = 92937, + [SMALL_STATE(3297)] = 92954, + [SMALL_STATE(3298)] = 92971, + [SMALL_STATE(3299)] = 92988, + [SMALL_STATE(3300)] = 93005, + [SMALL_STATE(3301)] = 93022, + [SMALL_STATE(3302)] = 93039, + [SMALL_STATE(3303)] = 93056, + [SMALL_STATE(3304)] = 93073, + [SMALL_STATE(3305)] = 93088, + [SMALL_STATE(3306)] = 93103, + [SMALL_STATE(3307)] = 93120, + [SMALL_STATE(3308)] = 93135, + [SMALL_STATE(3309)] = 93152, + [SMALL_STATE(3310)] = 93169, + [SMALL_STATE(3311)] = 93186, + [SMALL_STATE(3312)] = 93203, + [SMALL_STATE(3313)] = 93220, + [SMALL_STATE(3314)] = 93237, + [SMALL_STATE(3315)] = 93252, + [SMALL_STATE(3316)] = 93269, + [SMALL_STATE(3317)] = 93284, + [SMALL_STATE(3318)] = 93301, + [SMALL_STATE(3319)] = 93318, + [SMALL_STATE(3320)] = 93335, + [SMALL_STATE(3321)] = 93352, + [SMALL_STATE(3322)] = 93369, + [SMALL_STATE(3323)] = 93384, + [SMALL_STATE(3324)] = 93401, + [SMALL_STATE(3325)] = 93418, + [SMALL_STATE(3326)] = 93433, + [SMALL_STATE(3327)] = 93450, + [SMALL_STATE(3328)] = 93467, + [SMALL_STATE(3329)] = 93484, + [SMALL_STATE(3330)] = 93501, + [SMALL_STATE(3331)] = 93518, + [SMALL_STATE(3332)] = 93535, + [SMALL_STATE(3333)] = 93550, + [SMALL_STATE(3334)] = 93565, + [SMALL_STATE(3335)] = 93580, + [SMALL_STATE(3336)] = 93597, + [SMALL_STATE(3337)] = 93612, + [SMALL_STATE(3338)] = 93629, + [SMALL_STATE(3339)] = 93646, + [SMALL_STATE(3340)] = 93663, + [SMALL_STATE(3341)] = 93680, + [SMALL_STATE(3342)] = 93697, + [SMALL_STATE(3343)] = 93714, + [SMALL_STATE(3344)] = 93731, + [SMALL_STATE(3345)] = 93748, + [SMALL_STATE(3346)] = 93765, + [SMALL_STATE(3347)] = 93782, + [SMALL_STATE(3348)] = 93799, + [SMALL_STATE(3349)] = 93814, + [SMALL_STATE(3350)] = 93829, + [SMALL_STATE(3351)] = 93846, + [SMALL_STATE(3352)] = 93863, + [SMALL_STATE(3353)] = 93880, + [SMALL_STATE(3354)] = 93897, + [SMALL_STATE(3355)] = 93914, + [SMALL_STATE(3356)] = 93929, + [SMALL_STATE(3357)] = 93946, + [SMALL_STATE(3358)] = 93963, + [SMALL_STATE(3359)] = 93980, + [SMALL_STATE(3360)] = 93997, + [SMALL_STATE(3361)] = 94014, + [SMALL_STATE(3362)] = 94031, + [SMALL_STATE(3363)] = 94048, + [SMALL_STATE(3364)] = 94065, + [SMALL_STATE(3365)] = 94082, + [SMALL_STATE(3366)] = 94099, + [SMALL_STATE(3367)] = 94116, + [SMALL_STATE(3368)] = 94131, + [SMALL_STATE(3369)] = 94146, + [SMALL_STATE(3370)] = 94163, + [SMALL_STATE(3371)] = 94178, + [SMALL_STATE(3372)] = 94195, + [SMALL_STATE(3373)] = 94212, + [SMALL_STATE(3374)] = 94229, + [SMALL_STATE(3375)] = 94246, + [SMALL_STATE(3376)] = 94263, + [SMALL_STATE(3377)] = 94280, + [SMALL_STATE(3378)] = 94297, + [SMALL_STATE(3379)] = 94314, + [SMALL_STATE(3380)] = 94331, + [SMALL_STATE(3381)] = 94348, + [SMALL_STATE(3382)] = 94365, + [SMALL_STATE(3383)] = 94382, + [SMALL_STATE(3384)] = 94399, + [SMALL_STATE(3385)] = 94416, + [SMALL_STATE(3386)] = 94433, + [SMALL_STATE(3387)] = 94450, + [SMALL_STATE(3388)] = 94467, + [SMALL_STATE(3389)] = 94482, + [SMALL_STATE(3390)] = 94499, + [SMALL_STATE(3391)] = 94516, + [SMALL_STATE(3392)] = 94531, + [SMALL_STATE(3393)] = 94546, + [SMALL_STATE(3394)] = 94563, + [SMALL_STATE(3395)] = 94580, + [SMALL_STATE(3396)] = 94597, + [SMALL_STATE(3397)] = 94614, + [SMALL_STATE(3398)] = 94631, + [SMALL_STATE(3399)] = 94648, + [SMALL_STATE(3400)] = 94665, + [SMALL_STATE(3401)] = 94682, + [SMALL_STATE(3402)] = 94699, + [SMALL_STATE(3403)] = 94716, + [SMALL_STATE(3404)] = 94731, + [SMALL_STATE(3405)] = 94748, + [SMALL_STATE(3406)] = 94765, + [SMALL_STATE(3407)] = 94780, + [SMALL_STATE(3408)] = 94797, + [SMALL_STATE(3409)] = 94814, + [SMALL_STATE(3410)] = 94831, + [SMALL_STATE(3411)] = 94846, + [SMALL_STATE(3412)] = 94863, + [SMALL_STATE(3413)] = 94880, + [SMALL_STATE(3414)] = 94897, + [SMALL_STATE(3415)] = 94914, + [SMALL_STATE(3416)] = 94931, + [SMALL_STATE(3417)] = 94948, + [SMALL_STATE(3418)] = 94965, + [SMALL_STATE(3419)] = 94982, + [SMALL_STATE(3420)] = 94999, + [SMALL_STATE(3421)] = 95016, + [SMALL_STATE(3422)] = 95031, + [SMALL_STATE(3423)] = 95048, + [SMALL_STATE(3424)] = 95065, + [SMALL_STATE(3425)] = 95080, + [SMALL_STATE(3426)] = 95097, + [SMALL_STATE(3427)] = 95114, + [SMALL_STATE(3428)] = 95131, + [SMALL_STATE(3429)] = 95148, + [SMALL_STATE(3430)] = 95165, + [SMALL_STATE(3431)] = 95182, + [SMALL_STATE(3432)] = 95197, + [SMALL_STATE(3433)] = 95214, + [SMALL_STATE(3434)] = 95231, + [SMALL_STATE(3435)] = 95248, + [SMALL_STATE(3436)] = 95265, + [SMALL_STATE(3437)] = 95282, + [SMALL_STATE(3438)] = 95299, + [SMALL_STATE(3439)] = 95316, + [SMALL_STATE(3440)] = 95333, + [SMALL_STATE(3441)] = 95350, + [SMALL_STATE(3442)] = 95365, + [SMALL_STATE(3443)] = 95382, + [SMALL_STATE(3444)] = 95399, + [SMALL_STATE(3445)] = 95416, + [SMALL_STATE(3446)] = 95433, + [SMALL_STATE(3447)] = 95450, + [SMALL_STATE(3448)] = 95467, + [SMALL_STATE(3449)] = 95484, + [SMALL_STATE(3450)] = 95499, + [SMALL_STATE(3451)] = 95516, + [SMALL_STATE(3452)] = 95533, + [SMALL_STATE(3453)] = 95550, + [SMALL_STATE(3454)] = 95567, + [SMALL_STATE(3455)] = 95584, + [SMALL_STATE(3456)] = 95599, + [SMALL_STATE(3457)] = 95616, + [SMALL_STATE(3458)] = 95633, + [SMALL_STATE(3459)] = 95650, + [SMALL_STATE(3460)] = 95667, + [SMALL_STATE(3461)] = 95684, + [SMALL_STATE(3462)] = 95699, + [SMALL_STATE(3463)] = 95716, + [SMALL_STATE(3464)] = 95730, + [SMALL_STATE(3465)] = 95744, + [SMALL_STATE(3466)] = 95758, + [SMALL_STATE(3467)] = 95772, + [SMALL_STATE(3468)] = 95786, + [SMALL_STATE(3469)] = 95800, + [SMALL_STATE(3470)] = 95814, + [SMALL_STATE(3471)] = 95828, + [SMALL_STATE(3472)] = 95842, + [SMALL_STATE(3473)] = 95856, + [SMALL_STATE(3474)] = 95870, + [SMALL_STATE(3475)] = 95884, + [SMALL_STATE(3476)] = 95898, + [SMALL_STATE(3477)] = 95912, + [SMALL_STATE(3478)] = 95926, + [SMALL_STATE(3479)] = 95940, + [SMALL_STATE(3480)] = 95954, + [SMALL_STATE(3481)] = 95968, + [SMALL_STATE(3482)] = 95982, + [SMALL_STATE(3483)] = 95996, + [SMALL_STATE(3484)] = 96010, + [SMALL_STATE(3485)] = 96024, + [SMALL_STATE(3486)] = 96038, + [SMALL_STATE(3487)] = 96052, + [SMALL_STATE(3488)] = 96066, + [SMALL_STATE(3489)] = 96080, + [SMALL_STATE(3490)] = 96094, + [SMALL_STATE(3491)] = 96108, + [SMALL_STATE(3492)] = 96122, + [SMALL_STATE(3493)] = 96136, + [SMALL_STATE(3494)] = 96150, + [SMALL_STATE(3495)] = 96164, + [SMALL_STATE(3496)] = 96178, + [SMALL_STATE(3497)] = 96192, + [SMALL_STATE(3498)] = 96206, + [SMALL_STATE(3499)] = 96220, + [SMALL_STATE(3500)] = 96234, + [SMALL_STATE(3501)] = 96248, + [SMALL_STATE(3502)] = 96262, + [SMALL_STATE(3503)] = 96276, + [SMALL_STATE(3504)] = 96290, + [SMALL_STATE(3505)] = 96304, + [SMALL_STATE(3506)] = 96318, + [SMALL_STATE(3507)] = 96332, + [SMALL_STATE(3508)] = 96346, + [SMALL_STATE(3509)] = 96360, + [SMALL_STATE(3510)] = 96374, + [SMALL_STATE(3511)] = 96388, + [SMALL_STATE(3512)] = 96402, + [SMALL_STATE(3513)] = 96416, + [SMALL_STATE(3514)] = 96430, + [SMALL_STATE(3515)] = 96444, + [SMALL_STATE(3516)] = 96458, + [SMALL_STATE(3517)] = 96472, + [SMALL_STATE(3518)] = 96486, + [SMALL_STATE(3519)] = 96500, + [SMALL_STATE(3520)] = 96514, + [SMALL_STATE(3521)] = 96528, + [SMALL_STATE(3522)] = 96542, + [SMALL_STATE(3523)] = 96556, + [SMALL_STATE(3524)] = 96570, + [SMALL_STATE(3525)] = 96584, + [SMALL_STATE(3526)] = 96598, + [SMALL_STATE(3527)] = 96612, + [SMALL_STATE(3528)] = 96626, + [SMALL_STATE(3529)] = 96640, + [SMALL_STATE(3530)] = 96654, + [SMALL_STATE(3531)] = 96668, + [SMALL_STATE(3532)] = 96682, + [SMALL_STATE(3533)] = 96696, + [SMALL_STATE(3534)] = 96710, + [SMALL_STATE(3535)] = 96724, + [SMALL_STATE(3536)] = 96738, + [SMALL_STATE(3537)] = 96752, + [SMALL_STATE(3538)] = 96766, + [SMALL_STATE(3539)] = 96780, + [SMALL_STATE(3540)] = 96794, + [SMALL_STATE(3541)] = 96808, + [SMALL_STATE(3542)] = 96822, + [SMALL_STATE(3543)] = 96836, + [SMALL_STATE(3544)] = 96850, + [SMALL_STATE(3545)] = 96864, + [SMALL_STATE(3546)] = 96878, + [SMALL_STATE(3547)] = 96892, + [SMALL_STATE(3548)] = 96906, + [SMALL_STATE(3549)] = 96920, + [SMALL_STATE(3550)] = 96934, + [SMALL_STATE(3551)] = 96948, + [SMALL_STATE(3552)] = 96962, + [SMALL_STATE(3553)] = 96976, + [SMALL_STATE(3554)] = 96990, + [SMALL_STATE(3555)] = 97004, + [SMALL_STATE(3556)] = 97018, + [SMALL_STATE(3557)] = 97032, + [SMALL_STATE(3558)] = 97046, + [SMALL_STATE(3559)] = 97060, + [SMALL_STATE(3560)] = 97074, + [SMALL_STATE(3561)] = 97088, + [SMALL_STATE(3562)] = 97102, + [SMALL_STATE(3563)] = 97116, + [SMALL_STATE(3564)] = 97130, + [SMALL_STATE(3565)] = 97144, + [SMALL_STATE(3566)] = 97158, + [SMALL_STATE(3567)] = 97172, + [SMALL_STATE(3568)] = 97186, + [SMALL_STATE(3569)] = 97200, + [SMALL_STATE(3570)] = 97214, + [SMALL_STATE(3571)] = 97228, + [SMALL_STATE(3572)] = 97242, + [SMALL_STATE(3573)] = 97256, + [SMALL_STATE(3574)] = 97270, + [SMALL_STATE(3575)] = 97284, + [SMALL_STATE(3576)] = 97298, + [SMALL_STATE(3577)] = 97312, + [SMALL_STATE(3578)] = 97326, + [SMALL_STATE(3579)] = 97340, + [SMALL_STATE(3580)] = 97354, + [SMALL_STATE(3581)] = 97368, + [SMALL_STATE(3582)] = 97382, + [SMALL_STATE(3583)] = 97396, + [SMALL_STATE(3584)] = 97410, + [SMALL_STATE(3585)] = 97424, + [SMALL_STATE(3586)] = 97438, + [SMALL_STATE(3587)] = 97452, + [SMALL_STATE(3588)] = 97466, + [SMALL_STATE(3589)] = 97480, + [SMALL_STATE(3590)] = 97494, + [SMALL_STATE(3591)] = 97508, + [SMALL_STATE(3592)] = 97522, + [SMALL_STATE(3593)] = 97536, + [SMALL_STATE(3594)] = 97550, + [SMALL_STATE(3595)] = 97564, + [SMALL_STATE(3596)] = 97578, + [SMALL_STATE(3597)] = 97592, + [SMALL_STATE(3598)] = 97606, + [SMALL_STATE(3599)] = 97620, + [SMALL_STATE(3600)] = 97634, + [SMALL_STATE(3601)] = 97648, + [SMALL_STATE(3602)] = 97662, + [SMALL_STATE(3603)] = 97676, + [SMALL_STATE(3604)] = 97690, + [SMALL_STATE(3605)] = 97704, + [SMALL_STATE(3606)] = 97718, + [SMALL_STATE(3607)] = 97732, + [SMALL_STATE(3608)] = 97746, + [SMALL_STATE(3609)] = 97760, + [SMALL_STATE(3610)] = 97774, + [SMALL_STATE(3611)] = 97788, + [SMALL_STATE(3612)] = 97802, + [SMALL_STATE(3613)] = 97816, + [SMALL_STATE(3614)] = 97830, + [SMALL_STATE(3615)] = 97844, + [SMALL_STATE(3616)] = 97858, + [SMALL_STATE(3617)] = 97872, + [SMALL_STATE(3618)] = 97886, + [SMALL_STATE(3619)] = 97900, + [SMALL_STATE(3620)] = 97914, + [SMALL_STATE(3621)] = 97928, + [SMALL_STATE(3622)] = 97942, + [SMALL_STATE(3623)] = 97956, + [SMALL_STATE(3624)] = 97970, + [SMALL_STATE(3625)] = 97984, + [SMALL_STATE(3626)] = 97998, + [SMALL_STATE(3627)] = 98012, + [SMALL_STATE(3628)] = 98026, + [SMALL_STATE(3629)] = 98040, + [SMALL_STATE(3630)] = 98054, + [SMALL_STATE(3631)] = 98068, + [SMALL_STATE(3632)] = 98082, + [SMALL_STATE(3633)] = 98096, + [SMALL_STATE(3634)] = 98110, + [SMALL_STATE(3635)] = 98124, + [SMALL_STATE(3636)] = 98138, + [SMALL_STATE(3637)] = 98152, + [SMALL_STATE(3638)] = 98166, + [SMALL_STATE(3639)] = 98180, + [SMALL_STATE(3640)] = 98194, + [SMALL_STATE(3641)] = 98208, + [SMALL_STATE(3642)] = 98222, + [SMALL_STATE(3643)] = 98236, + [SMALL_STATE(3644)] = 98250, + [SMALL_STATE(3645)] = 98264, + [SMALL_STATE(3646)] = 98278, + [SMALL_STATE(3647)] = 98292, + [SMALL_STATE(3648)] = 98306, + [SMALL_STATE(3649)] = 98320, + [SMALL_STATE(3650)] = 98334, + [SMALL_STATE(3651)] = 98348, + [SMALL_STATE(3652)] = 98362, + [SMALL_STATE(3653)] = 98376, + [SMALL_STATE(3654)] = 98390, + [SMALL_STATE(3655)] = 98404, + [SMALL_STATE(3656)] = 98418, + [SMALL_STATE(3657)] = 98432, + [SMALL_STATE(3658)] = 98446, + [SMALL_STATE(3659)] = 98460, + [SMALL_STATE(3660)] = 98474, + [SMALL_STATE(3661)] = 98488, + [SMALL_STATE(3662)] = 98502, + [SMALL_STATE(3663)] = 98516, + [SMALL_STATE(3664)] = 98530, + [SMALL_STATE(3665)] = 98544, + [SMALL_STATE(3666)] = 98558, + [SMALL_STATE(3667)] = 98572, + [SMALL_STATE(3668)] = 98586, + [SMALL_STATE(3669)] = 98600, + [SMALL_STATE(3670)] = 98614, + [SMALL_STATE(3671)] = 98628, + [SMALL_STATE(3672)] = 98642, + [SMALL_STATE(3673)] = 98656, + [SMALL_STATE(3674)] = 98670, + [SMALL_STATE(3675)] = 98684, + [SMALL_STATE(3676)] = 98698, + [SMALL_STATE(3677)] = 98712, + [SMALL_STATE(3678)] = 98726, + [SMALL_STATE(3679)] = 98740, + [SMALL_STATE(3680)] = 98754, + [SMALL_STATE(3681)] = 98768, + [SMALL_STATE(3682)] = 98782, + [SMALL_STATE(3683)] = 98796, + [SMALL_STATE(3684)] = 98810, + [SMALL_STATE(3685)] = 98824, + [SMALL_STATE(3686)] = 98838, + [SMALL_STATE(3687)] = 98852, + [SMALL_STATE(3688)] = 98866, + [SMALL_STATE(3689)] = 98880, + [SMALL_STATE(3690)] = 98894, + [SMALL_STATE(3691)] = 98908, + [SMALL_STATE(3692)] = 98922, + [SMALL_STATE(3693)] = 98936, + [SMALL_STATE(3694)] = 98950, + [SMALL_STATE(3695)] = 98964, + [SMALL_STATE(3696)] = 98978, + [SMALL_STATE(3697)] = 98992, + [SMALL_STATE(3698)] = 99006, + [SMALL_STATE(3699)] = 99020, + [SMALL_STATE(3700)] = 99034, + [SMALL_STATE(3701)] = 99048, + [SMALL_STATE(3702)] = 99062, + [SMALL_STATE(3703)] = 99076, + [SMALL_STATE(3704)] = 99090, + [SMALL_STATE(3705)] = 99104, + [SMALL_STATE(3706)] = 99118, + [SMALL_STATE(3707)] = 99132, + [SMALL_STATE(3708)] = 99146, + [SMALL_STATE(3709)] = 99160, + [SMALL_STATE(3710)] = 99174, + [SMALL_STATE(3711)] = 99188, + [SMALL_STATE(3712)] = 99202, + [SMALL_STATE(3713)] = 99216, + [SMALL_STATE(3714)] = 99230, + [SMALL_STATE(3715)] = 99244, + [SMALL_STATE(3716)] = 99258, + [SMALL_STATE(3717)] = 99272, + [SMALL_STATE(3718)] = 99286, + [SMALL_STATE(3719)] = 99300, + [SMALL_STATE(3720)] = 99314, + [SMALL_STATE(3721)] = 99328, + [SMALL_STATE(3722)] = 99342, + [SMALL_STATE(3723)] = 99356, + [SMALL_STATE(3724)] = 99370, + [SMALL_STATE(3725)] = 99384, + [SMALL_STATE(3726)] = 99398, + [SMALL_STATE(3727)] = 99412, + [SMALL_STATE(3728)] = 99426, + [SMALL_STATE(3729)] = 99440, + [SMALL_STATE(3730)] = 99454, + [SMALL_STATE(3731)] = 99468, + [SMALL_STATE(3732)] = 99482, + [SMALL_STATE(3733)] = 99496, + [SMALL_STATE(3734)] = 99510, + [SMALL_STATE(3735)] = 99524, + [SMALL_STATE(3736)] = 99538, + [SMALL_STATE(3737)] = 99552, + [SMALL_STATE(3738)] = 99566, + [SMALL_STATE(3739)] = 99580, + [SMALL_STATE(3740)] = 99594, + [SMALL_STATE(3741)] = 99608, + [SMALL_STATE(3742)] = 99622, + [SMALL_STATE(3743)] = 99636, + [SMALL_STATE(3744)] = 99650, + [SMALL_STATE(3745)] = 99664, + [SMALL_STATE(3746)] = 99678, + [SMALL_STATE(3747)] = 99692, + [SMALL_STATE(3748)] = 99706, + [SMALL_STATE(3749)] = 99720, + [SMALL_STATE(3750)] = 99734, + [SMALL_STATE(3751)] = 99748, + [SMALL_STATE(3752)] = 99762, + [SMALL_STATE(3753)] = 99776, + [SMALL_STATE(3754)] = 99790, + [SMALL_STATE(3755)] = 99804, + [SMALL_STATE(3756)] = 99818, + [SMALL_STATE(3757)] = 99832, + [SMALL_STATE(3758)] = 99846, + [SMALL_STATE(3759)] = 99860, + [SMALL_STATE(3760)] = 99874, + [SMALL_STATE(3761)] = 99888, + [SMALL_STATE(3762)] = 99902, + [SMALL_STATE(3763)] = 99916, + [SMALL_STATE(3764)] = 99930, + [SMALL_STATE(3765)] = 99944, + [SMALL_STATE(3766)] = 99958, + [SMALL_STATE(3767)] = 99972, + [SMALL_STATE(3768)] = 99986, + [SMALL_STATE(3769)] = 100000, + [SMALL_STATE(3770)] = 100014, + [SMALL_STATE(3771)] = 100028, + [SMALL_STATE(3772)] = 100042, + [SMALL_STATE(3773)] = 100056, + [SMALL_STATE(3774)] = 100070, + [SMALL_STATE(3775)] = 100084, + [SMALL_STATE(3776)] = 100098, + [SMALL_STATE(3777)] = 100112, + [SMALL_STATE(3778)] = 100126, + [SMALL_STATE(3779)] = 100140, + [SMALL_STATE(3780)] = 100154, + [SMALL_STATE(3781)] = 100168, + [SMALL_STATE(3782)] = 100182, + [SMALL_STATE(3783)] = 100196, + [SMALL_STATE(3784)] = 100210, + [SMALL_STATE(3785)] = 100214, + [SMALL_STATE(3786)] = 100218, + [SMALL_STATE(3787)] = 100222, + [SMALL_STATE(3788)] = 100226, + [SMALL_STATE(3789)] = 100230, + [SMALL_STATE(3790)] = 100234, }; 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(2327), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [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(1564), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [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(290), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [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(817), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(610), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2417), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2140), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2830), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3556), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 0), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2740), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3593), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2740), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2677), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3590), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1100), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(158), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(12), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(290), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(249), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(810), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(877), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3375), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3592), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2574), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2603), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1409), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1508), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(843), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1060), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2598), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(365), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3001), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2842), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3160), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2599), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1491), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2731), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1424), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3460), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3543), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [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(177), - [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(177), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2743), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1099), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(141), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(13), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(350), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1548), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(251), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(808), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(872), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3344), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3748), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3638), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2584), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2827), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1421), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1504), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(847), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1064), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(192), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2660), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(361), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2933), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2786), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(193), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(45), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3380), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2663), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1506), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2830), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1434), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1547), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3492), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1547), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3556), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [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}}, SHIFT(2080), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2933), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2830), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3556), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2099), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3109), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2679), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2210), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2722), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2828), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3647), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), + [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2016), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3134), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2043), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 194), [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 194), [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 202), [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 202), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frontmatter, 3, 0, 0), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frontmatter, 3, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2789), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3246), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2768), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3320), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [5077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2025), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(257), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(791), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2031), + [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(261), + [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2971), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2274), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 160), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), + [6389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(802), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1929), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2279), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 160), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7126] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), }; enum ts_external_scanner_symbol_identifiers { @@ -202032,7 +202649,10 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__inner_block_doc_comment_marker = 6, ts_external_token__block_comment_content = 7, ts_external_token__line_doc_content = 8, - ts_external_token__error_sentinel = 9, + ts_external_token__frontmatter_start = 9, + ts_external_token_frontmatter_content = 10, + ts_external_token__frontmatter_end = 11, + ts_external_token__error_sentinel = 12, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -202045,10 +202665,13 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inner_block_doc_comment_marker] = sym__inner_block_doc_comment_marker, [ts_external_token__block_comment_content] = sym__block_comment_content, [ts_external_token__line_doc_content] = sym__line_doc_content, + [ts_external_token__frontmatter_start] = sym__frontmatter_start, + [ts_external_token_frontmatter_content] = sym_frontmatter_content, + [ts_external_token__frontmatter_end] = sym__frontmatter_end, [ts_external_token__error_sentinel] = sym__error_sentinel, }; -static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_string_content] = true, [ts_external_token__raw_string_literal_start] = true, @@ -202059,35 +202682,49 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inner_block_doc_comment_marker] = true, [ts_external_token__block_comment_content] = true, [ts_external_token__line_doc_content] = true, + [ts_external_token__frontmatter_start] = true, + [ts_external_token_frontmatter_content] = true, + [ts_external_token__frontmatter_end] = true, [ts_external_token__error_sentinel] = true, }, [2] = { [ts_external_token__raw_string_literal_start] = true, [ts_external_token_float_literal] = true, + [ts_external_token__frontmatter_start] = true, }, [3] = { + [ts_external_token__raw_string_literal_start] = true, + [ts_external_token_float_literal] = true, + }, + [4] = { [ts_external_token__outer_block_doc_comment_marker] = true, [ts_external_token__inner_block_doc_comment_marker] = true, [ts_external_token__block_comment_content] = true, }, - [4] = { - [ts_external_token_string_content] = true, - }, [5] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_string_content] = true, }, [6] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__block_comment_content] = true, }, [8] = { [ts_external_token__raw_string_literal_end] = true, }, [9] = { + [ts_external_token__line_doc_content] = true, + }, + [10] = { [ts_external_token_raw_string_literal_content] = true, }, + [11] = { + [ts_external_token__frontmatter_end] = true, + }, + [12] = { + [ts_external_token_frontmatter_content] = true, + }, }; #ifdef __cplusplus diff --git a/src/scanner.c b/src/scanner.c index 269f6b2a..75fac52a 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -13,11 +13,15 @@ enum TokenType { BLOCK_INNER_DOC_MARKER, BLOCK_COMMENT_CONTENT, LINE_DOC_CONTENT, + FRONTMATTER_START, + FRONTMATTER_CONTENT, + FRONTMATTER_END, ERROR_SENTINEL }; typedef struct { uint8_t opening_hash_count; + uint8_t frontmatter_dashes; } Scanner; void *tree_sitter_rust_external_scanner_create() { return ts_calloc(1, sizeof(Scanner)); } @@ -27,15 +31,16 @@ void tree_sitter_rust_external_scanner_destroy(void *payload) { ts_free((Scanner unsigned tree_sitter_rust_external_scanner_serialize(void *payload, char *buffer) { Scanner *scanner = (Scanner *)payload; buffer[0] = (char)scanner->opening_hash_count; - return 1; + buffer[1] = (char)scanner->frontmatter_dashes; + return 2; } void tree_sitter_rust_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { Scanner *scanner = (Scanner *)payload; scanner->opening_hash_count = 0; - if (length == 1) { - Scanner *scanner = (Scanner *)payload; + if (length == 2) { scanner->opening_hash_count = buffer[0]; + scanner->frontmatter_dashes = buffer[1]; } } @@ -331,6 +336,79 @@ static inline bool process_block_comment(TSLexer *lexer, const bool *valid_symbo return false; } +static inline bool process_frontmatter_start(TSLexer *lexer, Scanner *scanner) { + uint8_t amount = 0; + while (lexer->lookahead == '-') { + amount++; + advance(lexer); + } + + if (amount < 3) { + return false; + } else { + scanner->frontmatter_dashes = amount; + lexer->result_symbol = FRONTMATTER_START; + + // parse optional info string after the initial fence + while (lexer->lookahead != '\n' && !lexer->eof(lexer)) { + advance(lexer); + } + advance(lexer); + + return true; + } +} + +static inline bool process_frontmatter(TSLexer *lexer, Scanner *scanner) { + // seperately parse empty frontmatter, as tree-sitter strips all whitespace, + // including newlines, so i can't rely on parsing only after a newline in this case. + lexer->mark_end(lexer); + uint8_t amount = 0; + while (lexer->lookahead == '-' && amount < scanner->frontmatter_dashes) { + amount++; + advance(lexer); + } + + if (amount == scanner->frontmatter_dashes) { + lexer->result_symbol = FRONTMATTER_CONTENT; + return true; + } + + for (;;) { + if (lexer->eof(lexer)) { + return false; + } + + if (lexer->lookahead == '\n') { + lexer->mark_end(lexer); + advance(lexer); + + uint8_t amount = 0; + while (lexer->lookahead == '-' && amount < scanner->frontmatter_dashes) { + amount++; + advance(lexer); + } + + if (amount == scanner->frontmatter_dashes) { + lexer->result_symbol = FRONTMATTER_CONTENT; + return true; + } + } else { + advance(lexer); + } + } +} + +static inline bool process_frontmatter_end(TSLexer *lexer, Scanner *scanner) { + advance(lexer); + for (unsigned int amount = 0; amount < scanner->frontmatter_dashes; amount++) { + advance(lexer); + } + + lexer->result_symbol = FRONTMATTER_END; + return true; +} + bool tree_sitter_rust_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { // The documentation states that if the lexical analysis fails for some reason // they will mark every state as valid and pass it to the external scanner @@ -389,5 +467,17 @@ bool tree_sitter_rust_external_scanner_scan(void *payload, TSLexer *lexer, const return process_float_literal(lexer); } + if (valid_symbols[FRONTMATTER_START]) { + return process_frontmatter_start(lexer, scanner); + } + + if (valid_symbols[FRONTMATTER_CONTENT]) { + return process_frontmatter(lexer, scanner); + } + + if (valid_symbols[FRONTMATTER_END]) { + return process_frontmatter_end(lexer, scanner); + } + return false; } diff --git a/test/corpus/source_files.txt b/test/corpus/source_files.txt index a7a000e2..666ebc5f 100644 --- a/test/corpus/source_files.txt +++ b/test/corpus/source_files.txt @@ -219,6 +219,80 @@ const ψ_2 : Ψ = 1; (type_identifier) (integer_literal))) +================================================================================ +Frontmatter +================================================================================ + +#!/usr/bin/env cargo + +--- +[package] +edition = "2024" +--- + +-------------------------------------------------------------------------------- + +(source_file + (shebang) + (frontmatter + (frontmatter_content))) + +================================================================================ +Frontmatter with escaping +================================================================================ + +----- +[package] +description = """ +--- +--- +""" +----- + +-------------------------------------------------------------------------------- + +(source_file + (frontmatter + (frontmatter_content))) + +================================================================================ +Empty frontmatter +================================================================================ + +--- +--- + +fn main() {} + +-------------------------------------------------------------------------------- + +(source_file + (frontmatter + (frontmatter_content)) + (function_item + (identifier) + (parameters) + (block))) + +================================================================================ +Empty frontmatter with info string +================================================================================ + +--- info string +--- + +fn main() {} + +-------------------------------------------------------------------------------- + +(source_file + (frontmatter + (frontmatter_content)) + (function_item + (identifier) + (parameters) + (block))) + ================================================================================ Shebang line containing spaces ================================================================================